1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 18:06:22 +00:00
This commit is contained in:
Nuckyz 2024-05-26 19:38:25 -03:00
parent 4d27643d39
commit dae3841f10
No known key found for this signature in database
GPG key ID: 440BF8296E1C4AD9

View file

@ -19,7 +19,7 @@ export type WebpackQueues = unique symbol;
export type WebpackExports = unique symbol;
export type WebpackError = unique symbol;
type AsyncModulePromise = Promise<ModuleExports> & {
export type AsyncModulePromise = Promise<ModuleExports> & {
[WebpackQueues]: (fnQueue: ((queue: any[]) => any)) => any;
[WebpackExports]: ModuleExports;
[WebpackError]?: any;