@myno_21/imdb-scraper
Version:
Get imdb information easily & quickly.
13 lines (12 loc) • 618 B
TypeScript
declare class Client {
static version?: "V.1";
getMovie(id: string): Promise<import("../index.js").IMovie>;
getMovieViaName(query: string): Promise<import("../index.js").ISearch[]>;
getPictures(id: string): Promise<import("../index.js").IPictures[]>;
getTrailer(id: string): Promise<any>;
getShow(id: string): Promise<import("../index.js").IShow>;
getShowViaName(query: string): Promise<import("../index.js").ISearch[]>;
getCast(id: string): Promise<import("../index.js").ICast[]>;
getSimilar(id: string): Promise<import("../index.js").ISimilar[]>;
}
export { Client };