UNPKG

afacinemas

Version:

> A web scraper library for [AFA Cinemas](http://www.afacinemas.com.br/)

21 lines (20 loc) 662 B
import { AfaScraper } from './afa-scraper'; import { MovieWithSessions } from './types'; export declare class SessionsScraper extends AfaScraper<MovieWithSessions> { private readonly theaterId; private readonly sessionsDate; constructor(theaterId: number, sessionsDate: string); extract(): Promise<MovieWithSessions[]>; private getMovieId; private getMovieTitle; private getMoviePosterUrl; private getMovieClassification; private getMovieDuration; private getMovieGenre; private getMovieDescription; private getMovieSessions; private getRoom; private getTime; private getAudio; private getImage; }