kinoklub-api
Version:
Support library for KinoKlub
44 lines • 1.11 kB
TypeScript
//#region src/interfaces/global.d.ts
interface KinoklubProgram {
id: number;
date: string;
title: string;
price: string;
ticketUrl?: string;
cinema: string;
hall: string;
tags: string[];
hour: string;
isRunning: boolean;
}
type KinoklubCinema = 'biooko' | 'aero' | 'svetozor' | 'lucerna' | 'pritomnost' | 'biocentral' | 'scala';
type KinoklubLanguage = 'en' | 'cs';
declare enum KinoklubCinemaChoices {
Aero = 1,
Oko = 2,
Svetozor = 3,
Scala = 5,
BioCentral = 6,
Pritomnost = 7,
Lucerna = 9
}
declare enum KinoklubHallSvetozorChoices {
SvetozorLarge = 1,
SvetozorSmall = 2,
SvetozorThird = 3,
SvetozorOther = 24
}
declare enum KinoklubHallLucernaChoices {
LucernaLarge = 34,
LucernaSmall = 35
}
declare enum KinoklubHallOkoChoices {
OkoLarge = 10,
OkoSmall = 23
}
interface KinoklubProgramOptions {
allDays?: boolean;
}
//#endregion
export { KinoklubCinema, KinoklubCinemaChoices, KinoklubHallLucernaChoices, KinoklubHallOkoChoices, KinoklubHallSvetozorChoices, KinoklubLanguage, KinoklubProgram, KinoklubProgramOptions };
//# sourceMappingURL=global.d.ts.map