UNPKG

kinoklub-api

Version:

Support library for KinoKlub

11 lines (10 loc) 596 B
import { HTMLElement } from 'node-html-parser'; import { KinoklubCinema } from '../interfaces/global'; export declare const getId: (el: HTMLElement) => number; export declare const getTitle: (el: HTMLElement) => string; export declare const getHour: (el: HTMLElement) => any; export declare const getRunning: (el: HTMLElement) => boolean; export declare const getTags: (el: HTMLElement) => string[]; export declare const getPrice: (el: HTMLElement) => string; export declare const getDay: (el: HTMLElement) => string; export declare const getCinema: (el: HTMLElement) => KinoklubCinema | string;