17 lines
299 B
TypeScript
17 lines
299 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[]
|
|
}
|