diff options
| author | Fuwn <[email protected]> | 2024-10-09 00:41:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-09 00:41:43 -0700 |
| commit | 998b63a35256ac985a5a2714dd1ca451af4dfd8a (patch) | |
| tree | 50796121a9d5ab0330fdc5d7e098bda2860d9726 /src/lib/Hololive/hololive.ts | |
| parent | feat(graphql): add badgeCount field (diff) | |
| download | due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.tar.xz due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.zip | |
chore(prettier): use spaces instead of tabs
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; |