afacinemas
Version:
> A web scraper library for [AFA Cinemas](http://www.afacinemas.com.br/)
33 lines (28 loc) • 502 B
text/typescript
export type Theater = {
id: number;
name: string;
imageLink: string;
city: string;
};
export type Movie = {
id: number;
title: string;
posterUrl: string;
description: string;
classification: string;
duration: string;
};
export type Release = Movie & {
releaseDate: string;
trailerUrl: string;
};
export type Session = {
room: string;
time: string;
audio: string;
image: string;
};
export type MovieWithSessions = Movie & {
genre: string;
sessions: Session[];
};