aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Hololive/hololive.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Hololive/hololive.ts')
-rw-r--r--src/lib/Hololive/hololive.ts12
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>;
+}