moviedatabase-client
Version:
TheMovieDatabase Node.js client implementation
15 lines (14 loc) • 332 B
TypeScript
export interface PersonTranslationData {
biography: string;
}
export interface PersonTranslation {
iso_639_1: string;
iso_3166_1: string;
name: string;
data: PersonTranslationData;
english_name: string;
}
export interface PersonTranslationsResponse {
id: number;
translations: [PersonTranslation];
}