From 7a306e433e343818e259eaf757e5c63af3d1c93b Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sat, 17 Feb 2024 16:32:59 -0800 Subject: refactor(hololive): move lives to component --- src/lib/Hololive/hololive.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/lib/Hololive/hololive.ts (limited to 'src/lib/Hololive/hololive.ts') 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; +} -- cgit v1.2.3