Fix prettier errors

This commit is contained in:
teddyHV11
2024-04-11 17:49:32 +03:00
parent 8281c3141a
commit 6a0ac52908

View File

@@ -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[];
} }