UNPKG

moviedatabase-client

Version:

TheMovieDatabase Node.js client implementation

12 lines (11 loc) 287 B
export interface RequestErrorInterface { code: number; message: string; url: string; } export declare class RequestError implements RequestErrorInterface { code: number; message: string; url: string; constructor(code: number, message: string, url: string); }