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
/
credit.d.ts
6 lines
(5 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
BaseEndpoint
}
from
'./baseEndpoint'
;
import
{
CreditsResponse
}
from
'../interfaces/credits'
;
export
declare
class
Credit
extends
BaseEndpoint
{
details
(
creditID
:
string
):
Promise
<
CreditsResponse
>; }