UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

11 lines (10 loc) 213 B
export interface SearchKeyword { id: number; name: string; } export interface SearchKeywordsResponse { page: number; results: [SearchKeyword]; total_pages: number; total_results: number; }