mirror of
https://github.com/tlsnotary/tlsn-js.git
synced 2026-01-08 04:03:53 -05:00
15 lines
274 B
TypeScript
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;
|
|
};
|
|
};
|