-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b515dbb
commit 70c8e90
Showing
5 changed files
with
10 additions
and
14 deletions.
There are no files selected for viewing
17 changes: 8 additions & 9 deletions
17
patches/discord.js+14.8.0.patch → patches/discord.js+14.13.0.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
diff --git a/node_modules/discord.js/typings/index.d.ts b/node_modules/discord.js/typings/index.d.ts | ||
index 7059ba0..d0158a3 100644 | ||
index fda9b4c..be34866 100644 | ||
--- a/node_modules/discord.js/typings/index.d.ts | ||
+++ b/node_modules/discord.js/typings/index.d.ts | ||
@@ -932,6 +932,13 @@ export class Client<Ready extends boolean = boolean> extends BaseClient { | ||
private _validateOptions(options: ClientOptions): void; | ||
private get _censoredToken(): string | null; | ||
|
||
@@ -982,6 +982,12 @@ export class Client<Ready extends boolean = boolean> extends BaseClient { | ||
public login(token?: string): Promise<string>; | ||
public isReady(): this is Client<true>; | ||
public toJSON(): unknown; | ||
+ log: (content: any, logType: any, client: any) => Promise<any>; | ||
+ config: { prefix: string; token: string; channels: { messageLog: string; mainLog: string; joinLog: string;}; colors: { join: string; leave: string; memberUpdate: string; roleCreate: string; roleDelete: string; roleUpdate: string; messages: { edit: string; delete: string; bulkDelete: string; reactionAdd: string; reactionRemove: string; }; }; events: { guildMemberAdd: boolean; guildMemberRemove: boolean; guildMemberUpdate: boolean; messageCreate: boolean; messageDelete: boolean; messageDeleteBulk: boolean; messageReactionAdd: boolean; messageReactionDelete: boolean; messageUpdate: boolean; ready: boolean; roleCreate: boolean; roleDelete: boolean; roleUpdate: boolean; }; }; | ||
+ hexToRGB: (hexCode: string) => readonly number; | ||
+ logger: any; | ||
+ db: any; | ||
+ logGuild: number | ||
+ | ||
public application: If<Ready, ClientApplication>; | ||
public channels: ChannelManager; | ||
public get emojis(): BaseGuildEmojiManager; | ||
|
||
public on<K extends keyof ClientEvents>(event: K, listener: (...args: ClientEvents[K]) => Awaitable<void>): this; | ||
public on<S extends string | symbol>( |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters