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
/
tv
/
TVVideosResponse.d.ts
15 lines
(14 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
export
interface
TVVideo
{
id
:
string
;
iso_639_1
:
string
;
iso_3166_1
:
string
;
key
:
string
;
name
:
string
;
site
:
string
;
size
:
360
|
480
|
720
|
1080
;
type
:
string
; }
export
interface
TVVideosResponse
{
id
:
number
;
results
: [
TVVideo
]; }