UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

8 lines (7 loc) 118 B
export interface Genre { id: number; name: string; } export interface GenresResponse { genres: [Genre]; }