aboutsummaryrefslogtreecommitdiff
path: root/webAO/dom/window.ts
blob: 59ad57525382d4964e3b975cb92389fc471dae5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
declare global {
    interface Window {
        toggleShout: (shout: number) => void;
        toggleMenu: (menu: number) => void;
        updateBackgroundPreview: () => void;
        redHPP: () => void;
        addHPP: () => void;
        redHPD: () => void;
        addHPD: () => void;
        guilty: () => void;
        notguilty: () => void;
        initCE: () => void;
        initWT: () => void;
        callMod: () => void;
        randomCharacterOOC: () => void;
        changeRoleOOC: () => void;
        changeBackgroundOOC: () => void;
        updateActionCommands: (side: string) => void;
        updateEvidenceIcon: () => void;
        updateIniswap: () => void;
        resizeChatbox: () => void;
        setChatbox: (style: string) => void;
        getIndexFromSelect: (select_box: string, value: string) => number;
        cancelEvidence: () => void;
        deleteEvidence: () => void;
        editEvidence: () => void;
        addEvidence: () => void;
        pickEvidence: (evidence: any) => void;
        pickEmotion: (emo: number) => void;
        pickChar: (ccharacter: any) => void;
        chartable_filter: (_event: any) => void;
        ReconnectButton: (_event: any) => void;
        opusCheck: (channel: HTMLAudioElement) => OnErrorEventHandlerNonNull;
        imgError: (image: any) => void;
        charError: (image: any) => void;
        changeCharacter: (_event: any) => void;
        switchChatOffset: () => void;
        switchAspectRatio: () => void;
        switchPanTilt: (addcheck: number) => void;
        iniedit: () => void;
        modcall_test: () => void;
        reloadTheme: () => void;
        changeCallwords: () => void;
        changeBlipVolume: () => void;
        changeMusicVolume: () => void;
        area_click: (el: any) => void;
        showname_click: (_event: any) => void;
        mutelist_click: (_event: any) => void;
        musiclist_click: (_event: any) => void;
        musiclist_filter: (_event: any) => void;
        resetOffset: (_event: any) => void;
        onEnter: (event: any) => void;
        onReplayGo: (_event: any) => void;
        onOOCEnter: (_event: any) => void;
        kickPlayer: (id: number) => void;
        banPlayer: (id: number) => void;
        hcallback: (_event: any) => void;
    }
}
export { }