UNPKG
moviedatabase-client
Version:
latest (1.0.1)
1.0.1
1.0.0
TheMovieDatabase Node.js client implementation
github.com/darki73/tmdb-client
darki73/tmdb-client
moviedatabase-client
/
dist
/
endpoints
/
genre.d.ts
7 lines
(6 loc)
•
227 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
BaseEndpoint
}
from
'./baseEndpoint'
;
import
{
GenresResponse
}
from
'../interfaces/genres'
;
export
declare
class
Genre
extends
BaseEndpoint
{
movie
():
Promise
<
GenresResponse
>;
tv
():
Promise
<
GenresResponse
>; }