diff options
Diffstat (limited to 'src/lib/Hololive/hololive.ts')
| -rw-r--r-- | src/lib/Hololive/hololive.ts | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/lib/Hololive/hololive.ts b/src/lib/Hololive/hololive.ts index 4b9ed25e..f348567c 100644 --- a/src/lib/Hololive/hololive.ts +++ b/src/lib/Hololive/hololive.ts @@ -1,16 +1,16 @@ export interface Live { - time: Date; - link: string; - videoId: string; - streamer: string; - livePreviewImage: string; - guests: string[]; - streaming: boolean; + time: Date; + link: string; + videoId: string; + streamer: string; + livePreviewImage: string; + guests: string[]; + streaming: boolean; } export interface ParseResult { - lives: Live[]; - dict: Record<string, string>; + lives: Live[]; + dict: Record<string, string>; } export const typeSchedule = (schedule: object) => schedule as ParseResult; |