afacinemas
Version:
> A web scraper library for [AFA Cinemas](http://www.afacinemas.com.br/)
15 lines (14 loc) • 464 B
TypeScript
import { AfaScraper } from './afa-scraper';
import { Movie, Release } from './types';
export declare class MovieScraper extends AfaScraper<Movie> {
private readonly movieId;
constructor(movieId: number);
extract(): Promise<Release>;
private getMoviePosterUrl;
private getMovieTitle;
private getMovieReleaseDate;
private getMovieDescription;
private getMovieClassification;
private getMovieDuration;
private getTrailerUrl;
}