add linting and prettier

This commit is contained in:
Blake Joynes
2023-04-13 21:58:41 -04:00
parent 7cccdb9929
commit 06155bd323
38 changed files with 2514 additions and 2135 deletions

View File

@@ -6,10 +6,9 @@ export interface CreditSeason {
season_number?: number;
}
export interface Media{
export interface Media {
i?: number;
name?:string;
name?: string;
first_air_date?: string;
vote_count?: number;
overview?: string;
@@ -87,8 +86,6 @@ export interface ImageCollection {
backdrops: Image[];
posters: Image[];
}
export interface Video {
id: string;
iso_639_1: string;
@@ -103,4 +100,4 @@ export interface Video {
export interface Videos {
id: number;
results: Video[];
}
}