owo-vencord/src/globals.d.ts

20 lines
470 B
TypeScript
Raw Normal View History

2022-08-29 03:25:27 +03:00
declare global {
export var IS_WEB: boolean;
2022-08-29 19:45:58 +03:00
export var VencordNative: typeof import("./VencordNative").default;
2022-08-29 21:27:47 +03:00
export var Vencord: typeof import("./Vencord");
2022-08-29 19:11:44 +03:00
export var appSettings: {
set(setting: string, v: any): void;
};
2022-10-09 20:48:42 +03:00
export var DiscordNative: any;
2022-08-29 19:11:44 +03:00
2022-08-29 03:25:27 +03:00
interface Window {
2022-08-29 19:11:44 +03:00
webpackChunkdiscord_app: {
push(chunk: any): any;
2022-08-29 21:27:47 +03:00
pop(): any;
2022-08-29 19:11:44 +03:00
};
2022-08-29 23:05:22 +03:00
[k: PropertyKey]: any;
2022-08-29 03:25:27 +03:00
}
}
2022-08-29 19:45:58 +03:00
2022-09-16 23:59:34 +03:00
export { };