feat: added build dir

This commit is contained in:
Ritesh Ghosh
2023-08-02 13:46:34 +05:30
parent 59c7c23f09
commit e05b90c7a3
24 changed files with 507 additions and 10 deletions
+4
View File
@@ -0,0 +1,4 @@
import { HttpError } from "http-errors";
import { ScrapedAnimeCategory, AnimeCategories } from "../models";
declare function scrapeAnimeCategory(category: AnimeCategories, page?: number): Promise<ScrapedAnimeCategory | HttpError>;
export default scrapeAnimeCategory;