feat(extractor): added types related to anime extractors

This commit is contained in:
Ritesh Ghosh
2023-08-17 23:23:55 +05:30
parent d00da98fd9
commit 34efd85bc7
+18
View File
@@ -0,0 +1,18 @@
export interface Video {
url: string;
quality?: string;
isM3U8?: boolean;
size?: number;
[x: string]: unknown;
}
export interface Subtitle {
id?: string;
url: string;
lang: string;
}
export interface Intro {
start: number;
end: number;
}