Files
tlsn-js/src/types.ts
2025-03-27 14:50:16 +01:00

15 lines
274 B
TypeScript

export type CommitData = {
start: number;
end: number;
};
export type PresentationJSON = {
version: '0.1.0-alpha.7' | '0.1.0-alpha.8' | '0.1.0-alpha.9';
data: string;
meta: {
notaryUrl?: string;
websocketProxyUrl?: string;
pluginUrl?: string;
};
};