add.[ALL]

This commit is contained in:
|| Prof. - Xadk3!#0000 || @naryal2580 2023-05-21 16:28:12 +05:30
parent 5ac24c8cea
commit 780ad9a200
54 changed files with 3733 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import type NodeModule from 'module';
import type {DiscordNativeType} from '@discordapp/discord-native-types';
declare module 'module' {
var globalPaths: string[];
var _resolveLookupPaths: (request: string, parent: NodeModule) => string[];
}
declare global {
var moduleDataPath: string | undefined;
var modulePath: string | undefined;
var DiscordNative: DiscordNativeType;
var popouts: Map<string, Window>;
}