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