diff options
| author | Fuwn <[email protected]> | 2023-12-18 15:43:44 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-18 15:43:44 -0800 |
| commit | dc5dddaf87df1c9ef22601da3cadcf10e4101220 (patch) | |
| tree | 675d422482472dcb7a250dfe839b9ec58d79a413 /src/lib | |
| parent | fix(schedule): dynamic width (diff) | |
| download | due.moe-dc5dddaf87df1c9ef22601da3cadcf10e4101220.tar.xz due.moe-dc5dddaf87df1c9ef22601da3cadcf10e4101220.zip | |
feat(schedule): hoverable cover
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/subsPlease.ts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/subsPlease.ts b/src/lib/subsPlease.ts index b2bcb30e..3815259d 100644 --- a/src/lib/subsPlease.ts +++ b/src/lib/subsPlease.ts @@ -1,11 +1,13 @@ export interface SubsPlease { tz: string; schedule: { - [key in string]: { - title: string; - page: string; - image_url: string; - time: string; - }[]; + [key in string]: SubsPleaseEpisode; }[]; } + +export interface SubsPleaseEpisode { + title: string; + page: string; + image_url: string; + time: string; +} |