afacinemas
Version:
> A web scraper library for [AFA Cinemas](http://www.afacinemas.com.br/)
6 lines (5 loc) • 477 B
TypeScript
export type { Movie, Release, Theater } from './afacinemas/types';
export declare const getTheaters: () => Promise<import("./afacinemas/types").Theater[]>;
export declare const getReleases: () => Promise<import("./afacinemas/types").Release[]>;
export declare const getSessions: (theaterId: number, sessionsDate: string) => Promise<import("./afacinemas/types").MovieWithSessions[]>;
export declare const getMovie: (id: number) => Promise<import("./afacinemas/types").Release>;