blakejoy / tmdb-ts

Typescript client wrapper for TheMovieDB (TMDB) v3
MIT License
37 stars 12 forks source link

Feat: Add error response. #48

Closed blakejoy closed 5 months ago

blakejoy commented 5 months ago

Add error response (and type) when an api error occurs;

{
  status_code: number;
  status_message: string;
  success: boolean;
}
blakejoy commented 5 months ago

Should handle #47