aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/models/parsers/animeCategory.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models/parsers/animeCategory.ts b/src/models/parsers/animeCategory.ts
index db748da..7402e59 100644
--- a/src/models/parsers/animeCategory.ts
+++ b/src/models/parsers/animeCategory.ts
@@ -1,5 +1,5 @@
import { HttpError } from "http-errors";
-import { Anime, Top10Anime, AnimeCategories } from "../anime";
+import { Anime, Top10Anime } from "../anime";
export interface ScrapedAnimeCategory {
animes: Array<Anime> | HttpError;
@@ -9,7 +9,7 @@ export interface ScrapedAnimeCategory {
week: Array<Top10Anime> | HttpError;
month: Array<Top10Anime> | HttpError;
};
- category: AnimeCategories;
+ category: string;
totalPages: number;
currentPage: number;
hasNextPage: boolean;