mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 11:33:25 +00:00
Fix prettier errors
This commit is contained in:
@@ -1,30 +1,30 @@
|
|||||||
export interface Episode {
|
export interface Subtitle {
|
||||||
episode: string;
|
url: string;
|
||||||
id: number;
|
name: string;
|
||||||
videoKey: string;
|
|
||||||
hls: string;
|
|
||||||
audio: {
|
|
||||||
names: string[];
|
|
||||||
order: number[];
|
|
||||||
}
|
|
||||||
cc: Subtitle[];
|
|
||||||
duration: number;
|
|
||||||
title: string;
|
|
||||||
download: string;
|
|
||||||
sections: string[]
|
|
||||||
poster: string;
|
|
||||||
preview: {
|
|
||||||
src: string;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Subtitle {
|
export interface Episode {
|
||||||
url: string;
|
episode: string;
|
||||||
name: string;
|
id: number;
|
||||||
|
videoKey: string;
|
||||||
|
hls: string;
|
||||||
|
audio: {
|
||||||
|
names: string[];
|
||||||
|
order: number[];
|
||||||
|
};
|
||||||
|
cc: Subtitle[];
|
||||||
|
duration: number;
|
||||||
|
title: string;
|
||||||
|
download: string;
|
||||||
|
sections: string[];
|
||||||
|
poster: string;
|
||||||
|
preview: {
|
||||||
|
src: string;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Season {
|
export interface Season {
|
||||||
season: number,
|
season: number;
|
||||||
blocked: boolean,
|
blocked: boolean;
|
||||||
episodes: Episode[]
|
episodes: Episode[];
|
||||||
}
|
}
|
Reference in New Issue
Block a user