Merge branch 'immediate-finds' into immediate-finds-modules-proxy

This commit is contained in:
Nuckyz 2024-06-01 00:06:34 -03:00
commit 5977ff8f6b
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

7
src/globals.d.ts vendored
View file

@ -64,8 +64,13 @@ declare global {
export var Vesktop: any;
export var VesktopNative: any;
interface Window extends Record<PropertyKey, any> {
interface Window {
webpackChunkdiscord_app: {
push(chunk: any): any;
pop(): any;
};
_: LoDashStatic;
[k: string]: any;
}
}