diff options
| author | Ritesh Ghosh <[email protected]> | 2023-12-17 19:39:46 +0530 |
|---|---|---|
| committer | Ritesh Ghosh <[email protected]> | 2023-12-17 19:39:46 +0530 |
| commit | 3531e7299896a48a66bdeac0bf858a081f70d129 (patch) | |
| tree | 8e2f523dc7da9593185ffc555a61b9b6e3d011a2 | |
| parent | 24c2520151b880095ff7966c353793f2cd83024e (diff) | |
| download | aniwatch-api-3531e7299896a48a66bdeac0bf858a081f70d129.tar.xz aniwatch-api-3531e7299896a48a66bdeac0bf858a081f70d129.zip | |
refactor: parser models import export
| -rw-r--r-- | src/models/parsers/index.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/models/parsers/index.ts b/src/models/parsers/index.ts index 2fb15af..057e2fc 100644 --- a/src/models/parsers/index.ts +++ b/src/models/parsers/index.ts @@ -6,6 +6,7 @@ import type { ScrapedProducerAnime } from "./animeProducer.js"; import type { ScrapedEpisodeServers } from "./episodeServers.js"; import type { ScrapedAnimeAboutInfo } from "./animeAboutInfo.js"; import type { ScrapedAnimeSearchResult } from "./animeSearch.js"; +import type { ScrapedEstimatedSchedule } from "./estimatedSchedule.js"; import type { ScrapedAnimeEpisodesSources } from "./animeEpisodeSrcs.js"; import type { ScrapedAnimeSearchSuggestion } from "./animeSearchSuggestion.js"; @@ -18,6 +19,7 @@ export type { ScrapedEpisodeServers, ScrapedAnimeAboutInfo, ScrapedAnimeSearchResult, + ScrapedEstimatedSchedule, ScrapedAnimeEpisodesSources, ScrapedAnimeSearchSuggestion, }; |
