Files
tmdb-ts/src/types/collections.ts
Tobias Karlsson 9a25d3bcf9 Formatting with eslint
Should probably be configured to run for every commit in the future
2023-04-13 09:05:44 +02:00

17 lines
307 B
TypeScript

import { Movie } from '.';
export interface Collection {
id: number;
backdrop_path: string;
name: string;
poster_path: string;
adult: boolean;
original_language: string;
original_name: string;
overview: string;
}
export interface DetailedCollection extends Collection {
parts: Movie[]
}