mirror of
https://github.com/AndrioCelos/TableturfBattleApp.git
synced 2026-07-09 21:57:43 -05:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
interface Config {
|
|
apiBaseUrl: string,
|
|
qrCodeGameUrl: string | null | undefined,
|
|
qrCodeCorrectionLevel: QRCode.CorrectLevel | keyof typeof QRCode.CorrectLevel | undefined,
|
|
discordUrl?: string,
|
|
discordTitle?: string
|
|
}
|
|
|
|
declare var config: Config;
|
|
declare var polyfillActive: boolean;
|