This commit is contained in:
Vendicated 2022-08-29 18:11:44 +02:00
parent af498e7829
commit 876e622f4f
No known key found for this signature in database
GPG key ID: EC781ADFB93EFFA3
17 changed files with 289 additions and 34 deletions

13
src/globals.d.ts vendored
View file

@ -1,9 +1,14 @@
declare var appSettings: any;
import TVencordNative from "./VencordNative";
declare global {
export var VencordNative: typeof TVencordNative;
export var appSettings: {
set(setting: string, v: any): void;
};
interface Window {
webpackChunkdiscord_app: { push(chunk): any; };
webpackChunkdiscord_app: {
push(chunk: any): any;
};
}
}
export { };