diff options
Diffstat (limited to 'extension/schema/SessionInfo.d.ts')
-rw-r--r-- | extension/schema/SessionInfo.d.ts | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/extension/schema/SessionInfo.d.ts b/extension/schema/SessionInfo.d.ts new file mode 100644 index 00000000..ac94e76d --- /dev/null +++ b/extension/schema/SessionInfo.d.ts @@ -0,0 +1,18 @@ +/* eslint-disable */ +/** + * This file was automatically generated by json-schema-to-typescript. + * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, + * and run json-schema-to-typescript to regenerate this file. + */ + +export type SessionInfo = SessionInfo1; +export type SessionId = string; +export type Title = string; +export type DateCreated = string; + +export interface SessionInfo1 { + session_id: SessionId; + title: Title; + date_created: DateCreated; + [k: string]: unknown; +} |