feat(extractor): added types related to anime extractors
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user