aboutsummaryrefslogtreecommitdiff
path: root/src/models/extractor.ts
blob: 71c6be15b69aaabe4feb474dfe3253773bd2670f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}