owo-vencord/src/globals.d.ts

14 lines
295 B
TypeScript
Raw Normal View History

2022-08-29 03:25:27 +03:00
declare global {
2022-08-29 19:45:58 +03:00
export var VencordNative: typeof import("./VencordNative").default;
2022-08-29 19:11:44 +03:00
export var appSettings: {
set(setting: string, v: any): void;
};
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 03:25:27 +03:00
}
}
2022-08-29 19:45:58 +03:00
export { };