mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 11:13:25 +00:00
Fix prettier errors
This commit is contained in:
@@ -1,3 +1,8 @@
|
|||||||
|
export interface Subtitle {
|
||||||
|
url: string;
|
||||||
|
name: string;
|
||||||
|
}
|
||||||
|
|
||||||
export interface Episode {
|
export interface Episode {
|
||||||
episode: string;
|
episode: string;
|
||||||
id: number;
|
id: number;
|
||||||
@@ -6,25 +11,20 @@ export interface Episode {
|
|||||||
audio: {
|
audio: {
|
||||||
names: string[];
|
names: string[];
|
||||||
order: number[];
|
order: number[];
|
||||||
}
|
};
|
||||||
cc: Subtitle[];
|
cc: Subtitle[];
|
||||||
duration: number;
|
duration: number;
|
||||||
title: string;
|
title: string;
|
||||||
download: string;
|
download: string;
|
||||||
sections: string[]
|
sections: string[];
|
||||||
poster: string;
|
poster: string;
|
||||||
preview: {
|
preview: {
|
||||||
src: string;
|
src: string;
|
||||||
}
|
};
|
||||||
}
|
|
||||||
|
|
||||||
export interface Subtitle {
|
|
||||||
url: string;
|
|
||||||
name: 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