UNPKG
@myno_21/imdb-scraper
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Get imdb information easily & quickly.
github.com/TrishCX/Imdb-Scraper
@myno_21/imdb-scraper
/
src
/
typings
/
Movie
/
Movie.d.ts
12 lines
(11 loc)
•
250 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
IMovie
{
title
?:
string
;
imageURL
?:
string
;
description
?:
string
;
releaseDate
?:
string
;
runtime
?:
string
;
imdbRating
:
number
;
popularity
?:
string
;
genres
?:
string
[];
reviews
?:
string
; }