UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

12 lines (11 loc) 266 B
export interface CertificationCountry { [key: string]: [Certification]; } export interface Certification { certification: string; meaning: string; order: number; } export interface CertificationsResponse { certifications: CertificationCountry; }