mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-03-29 12:52:08 -04:00
26 lines
465 B
TypeScript
26 lines
465 B
TypeScript
import { Season } from "./season";
|
|
import { Genre } from "./genre";
|
|
import { People } from "./people";
|
|
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;
|
|
isMovie: boolean;
|
|
|
|
startYear: number;
|
|
endYear : number;
|
|
|
|
externalIDs: [string, string][];
|
|
}
|