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
/
interfaces
/
search
/
SearchCollectionsResponse.d.ts
13 lines
(12 loc)
•
288 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
export
interface
SearchCollection
{
id
:
number
;
backdrop_path
:
string
|
null
;
name
:
string
;
poster_path
:
string
|
null
; }
export
interface
SearchCollectionsResponse
{
page
:
number
;
results
: [
SearchCollection
];
total_pages
:
number
;
total_results
:
number
; }