moviedatabase-client
Version:
TheMovieDatabase Node.js client implementation
21 lines (20 loc) • 499 B
TypeScript
export interface TVSeasonCreditBase {
credit_id: string;
gender: number | null;
id: number;
name: string;
profile_path: string | null;
}
export interface TVSeasonCreditCast extends TVSeasonCreditBase {
character: string;
order: number;
}
export interface TVSeasonCreditCrew extends TVSeasonCreditBase {
department: string;
job: string;
}
export interface TVSeasonCreditsResponse {
id: number;
cast: [TVSeasonCreditCast];
crew: [TVSeasonCreditCrew];
}