Merge updated master branch into discover-endpoint

This commit is contained in:
DerPenz
2023-02-21 11:24:48 +01:00
5 changed files with 232 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import {
TvShowsEndpoint,
ConfigurationEndpoint,
DiscoverEndpoint,
PeopleEndpoint,
} from './endpoints';
export default class TMDB {
@@ -57,4 +58,8 @@ export default class TMDB {
get discover(): DiscoverEndpoint{
return new DiscoverEndpoint(this.accessToken);
}
get people(): PeopleEndpoint{
return new PeopleEndpoint(this.accessToken);
}
}