mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 09: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 {
|
||||
episode: string;
|
||||
id: number;
|
||||
@@ -6,25 +11,20 @@ export interface Episode {
|
||||
audio: {
|
||||
names: string[];
|
||||
order: number[];
|
||||
}
|
||||
};
|
||||
cc: Subtitle[];
|
||||
duration: number;
|
||||
title: string;
|
||||
download: string;
|
||||
sections: string[]
|
||||
sections: string[];
|
||||
poster: string;
|
||||
preview: {
|
||||
src: string;
|
||||
}
|
||||
}
|
||||
|
||||
export interface Subtitle {
|
||||
url: string;
|
||||
name: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface Season {
|
||||
season: number,
|
||||
blocked: boolean,
|
||||
episodes: Episode[]
|
||||
season: number;
|
||||
blocked: boolean;
|
||||
episodes: Episode[];
|
||||
}
|
Reference in New Issue
Block a user