aboutsummaryrefslogtreecommitdiff
path: root/src/globals.d.ts
blob: 92ca95cc286cfa65b6f9df16786f31e11e294199 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
declare global {
    export var VencordNative: typeof import("./VencordNative").default;
    export var Vencord: typeof import("./Vencord");
    export var appSettings: {
        set(setting: string, v: any): void;
    };

    interface Window {
        webpackChunkdiscord_app: {
            push(chunk: any): any;
            pop(): any;
        };
        [k: PropertyKey]: any;
    }
}

export { };