Replacing spaces with tabs

This commit is contained in:
Zoe Roux
2020-02-11 23:17:23 +01:00
parent 03bf97dab6
commit a19bf9bce8
51 changed files with 1693 additions and 1697 deletions
+6 -6
View File
@@ -2,11 +2,11 @@ import { Show } from "./show";
export interface Collection
{
slug: string;
name: string;
poster: string;
overview: string;
startYear: number,
slug: string;
name: string;
poster: string;
overview: string;
startYear: number,
endYear: number,
shows: Show[];
shows: Show[];
}
+8 -8
View File
@@ -1,13 +1,13 @@
export interface Episode
{
seasonNumber: number;
episodeNumber: number;
title: string;
thumb: string;
link: string;
overview: string;
releaseDate;
runtime: number;
seasonNumber: number;
episodeNumber: number;
title: string;
thumb: string;
link: string;
overview: string;
releaseDate;
runtime: number;
externalIDs: string;
showTitle: string;
}
+2 -2
View File
@@ -1,5 +1,5 @@
export interface Genre
{
slug: string;
name: string;
slug: string;
name: string;
}
+5 -5
View File
@@ -1,9 +1,9 @@
export interface People
{
slug: string;
name: string;
role: string;
type: string;
slug: string;
name: string;
role: string;
type: string;
externalIDs: string;
externalIDs: string;
}
+4 -4
View File
@@ -2,8 +2,8 @@ import { Episode } from "./episode";
export interface Season
{
seasonNumber: number;
title: string;
overview: string;
episodes: Episode[];
seasonNumber: number;
title: string;
overview: string;
episodes: Episode[];
}
+14 -14
View File
@@ -5,20 +5,20 @@ import { Studio } from "./studio";
export interface Show
{
slug: string;
title: string;
Aliases: string[];
overview: string;
genres: Genre[];
status: string;
studio: Studio;
people: People[];
seasons: Season[];
trailerUrl: string;
isCollection: boolean;
slug: string;
title: string;
Aliases: string[];
overview: string;
genres: Genre[];
status: string;
studio: Studio;
people: People[];
seasons: Season[];
trailerUrl: string;
isCollection: boolean;
startYear: number;
endYear : number;
startYear: number;
endYear : number;
externalIDs: string;
externalIDs: string;
}
+2 -2
View File
@@ -1,5 +1,5 @@
export interface Studio
{
slug: string;
name: string;
slug: string;
name: string;
}
+19 -19
View File
@@ -2,31 +2,31 @@ import { Episode } from "./episode";
export interface WatchItem
{
showTitle: string;
showSlug: string;
seasonNumber: number;
episodeNumber: number;
title: string;
link: string;
duration: number;
releaseDate;
showTitle: string;
showSlug: string;
seasonNumber: number;
episodeNumber: number;
title: string;
link: string;
duration: number;
releaseDate;
previousEpisode: string;
nextEpisode: Episode;
previousEpisode: string;
nextEpisode: Episode;
container: string;
video: Track;
audios: Track[];
subtitles: Track[];
audios: Track[];
subtitles: Track[];
}
export interface Track
{
displayName: string;
title: string;
language: string;
isDefault: boolean;
isForced: boolean;
codec: string;
link: string;
displayName: string;
title: string;
language: string;
isDefault: boolean;
isForced: boolean;
codec: string;
link: string;
}