diff options
| author | Fuwn <[email protected]> | 2023-12-20 04:50:34 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-20 04:50:34 -0800 |
| commit | 9fa26f6c6f4e22db44578fd26d5c01c96277d45f (patch) | |
| tree | 5c95a9c8e961e551278df556497e05a5c40016cb /src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts | |
| parent | refactor(airing): move to module (diff) | |
| download | due.moe-9fa26f6c6f4e22db44578fd26d5c01c96277d45f.tar.xz due.moe-9fa26f6c6f4e22db44578fd26d5c01c96277d45f.zip | |
refactor(airing): subtitled module
Diffstat (limited to 'src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts')
| -rw-r--r-- | src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts b/src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts new file mode 100644 index 00000000..3815259d --- /dev/null +++ b/src/lib/Media/Anime/Airing/Subtitled/subsPlease.ts @@ -0,0 +1,13 @@ +export interface SubsPlease { + tz: string; + schedule: { + [key in string]: SubsPleaseEpisode; + }[]; +} + +export interface SubsPleaseEpisode { + title: string; + page: string; + image_url: string; + time: string; +} |