export interface IPerson { character_name: string; imdb_code: string; name: string; person_id?: string; order: 0; poster: { jpg: { full: string; thumb: string; }; webp: { full: string; thumb: string; }; }; } export interface ICrew extends Omit { }