diff options
Diffstat (limited to 'src/lib/Hololive/hololive.ts')
| -rw-r--r-- | src/lib/Hololive/hololive.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/Hololive/hololive.ts b/src/lib/Hololive/hololive.ts new file mode 100644 index 00000000..4ba7e46e --- /dev/null +++ b/src/lib/Hololive/hololive.ts @@ -0,0 +1,12 @@ +export interface ParseResult { + lives: { + time: Date; + link: string; + videoId: string; + streamer: string; + livePreviewImage: string; + guests: string[]; + streaming: boolean; + }[]; + dict: Record<string, string>; +} |