From 0ca9a82a2bd5b769e252424a78a08a17a62e9854 Mon Sep 17 00:00:00 2001 From: Ritesh Ghosh Date: Sun, 17 Dec 2023 19:40:40 +0530 Subject: [PATCH] feat(estimatedSchedule): add `EstimatedSchedule` types --- src/models/parsers/estimatedSchedule.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/models/parsers/estimatedSchedule.ts diff --git a/src/models/parsers/estimatedSchedule.ts b/src/models/parsers/estimatedSchedule.ts new file mode 100644 index 0000000..f62dd14 --- /dev/null +++ b/src/models/parsers/estimatedSchedule.ts @@ -0,0 +1,10 @@ +type EstimatedSchedule = { + id: string | null; + time: string | null; + name: string | null; + jname: string | null; +}; + +export type ScrapedEstimatedSchedule = { + scheduledAnimes: Array; +};