UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

13 lines (12 loc) 239 B
export interface TVReview { author: string; content: string; id: string; url: string; } export interface TVReviewsResponse { page: number; results: [TVReview]; total_pages: number; total_response: number; }