Incorrect access of map values
[GitHub/WoltLab/WCF.git] / global.d.ts
CommitLineData
f73a2744 1import Devtools from './wcfsetup/install/files/ts/WoltLabSuite/Core/Devtools';
ac895ffb 2import DomUtil from './wcfsetup/install/files/ts/WoltLabSuite/Core/Dom/Util';
f10d9af6 3import * as ColorUtil from './wcfsetup/install/files/ts/WoltLabSuite/Core/ColorUtil';
f73a2744
AE
4
5declare global {
6 interface Window {
7 Devtools?: typeof Devtools;
8883ca84 8 ENABLE_DEBUG_MODE: boolean;
f73a2744 9 WCF_PATH: string;
8883ca84 10 WSC_API_URL: string;
f73a2744 11
ac895ffb 12 bc_wcfDomUtil: typeof DomUtil;
f73a2744
AE
13 __wcf_bc_colorUtil: typeof ColorUtil;
14 }
15
16 interface String {
17 hashCode: () => string;
18 }
19}