diff options
| author | Fuwn <[email protected]> | 2024-02-17 16:32:59 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-17 16:32:59 -0800 |
| commit | 7a306e433e343818e259eaf757e5c63af3d1c93b (patch) | |
| tree | 8541753b1e96bac5c29307f231d84f990db2dab4 /src/lib/Hololive/hololive.ts | |
| parent | fix(hololive): make space for pin icon (diff) | |
| download | due.moe-7a306e433e343818e259eaf757e5c63af3d1c93b.tar.xz due.moe-7a306e433e343818e259eaf757e5c63af3d1c93b.zip | |
refactor(hololive): move lives to component
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>; +} |