feat(animeEpisodeSrcs): added animeEpisodeSrcs parser return type

This commit is contained in:
Ritesh Ghosh
2023-08-17 23:48:35 +05:30
parent 3715fdd81a
commit c0ce89a828
+12
View File
@@ -0,0 +1,12 @@
import { Intro, Subtitle, Video } from "../extractor";
export interface ScrapedAnimeEpisodesSources {
headers?: {
[k: string]: string;
};
intro?: Intro;
subtitles?: Subtitle[];
sources: Video[];
download?: string;
embedURL?: string;
}