feat(estimatedSchedule): add EstimatedSchedule types

This commit is contained in:
Ritesh Ghosh
2023-12-17 19:40:40 +05:30
parent 083ccbfd72
commit 0ca9a82a2b
+10
View File
@@ -0,0 +1,10 @@
type EstimatedSchedule = {
id: string | null;
time: string | null;
name: string | null;
jname: string | null;
};
export type ScrapedEstimatedSchedule = {
scheduledAnimes: Array<EstimatedSchedule>;
};