mirror of
https://github.com/danbulant/discord.js
synced 2026-05-29 20:30:38 +00:00
Fix #2924 with a bandage (Node typings not updated)
This commit is contained in:
parent
ab3a439198
commit
18f065867c
1 changed files with 2 additions and 2 deletions
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
|
|
@ -921,7 +921,7 @@ declare module 'discord.js' {
|
|||
public manager: ShardingManager;
|
||||
public process: ChildProcess;
|
||||
public ready: boolean;
|
||||
public worker: Worker;
|
||||
public worker: any;
|
||||
public eval(script: string): Promise<any>;
|
||||
public eval<T>(fn: (client: Client) => T): Promise<T[]>;
|
||||
public fetchClientValue(prop: string): Promise<any>;
|
||||
|
|
@ -954,7 +954,7 @@ declare module 'discord.js' {
|
|||
public readonly count: number;
|
||||
public readonly id: number;
|
||||
public mode: ShardingManagerMode;
|
||||
public parentPort: MessagePort;
|
||||
public parentPort: any;
|
||||
public broadcastEval(script: string): Promise<any[]>;
|
||||
public broadcastEval<T>(fn: (client: Client) => T): Promise<T[]>;
|
||||
public fetchClientValues(prop: string): Promise<any[]>;
|
||||
|
|
|
|||
Loading…
Reference in a new issue