UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

12 lines (11 loc) 244 B
export interface SearchCompany { id: number; logo_path: null | string; name: string; } export interface SearchCompaniesResponse { page: number; results: [SearchCompany]; total_pages: number; total_results: number; }