mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 02:53:31 +01:00
feat(Collector): return a boolean on checkEnd (#6289)
This commit is contained in:
2
typings/index.d.ts
vendored
2
typings/index.d.ts
vendored
@@ -474,7 +474,7 @@ export abstract class Collector<K, V, F extends unknown[] = []> extends EventEmi
|
||||
public filter: CollectorFilter<[V, ...F]>;
|
||||
public readonly next: Promise<V>;
|
||||
public options: CollectorOptions<[V, ...F]>;
|
||||
public checkEnd(): void;
|
||||
public checkEnd(): boolean;
|
||||
public handleCollect(...args: unknown[]): Promise<void>;
|
||||
public handleDispose(...args: unknown[]): Promise<void>;
|
||||
public stop(reason?: string): void;
|
||||
|
||||
Reference in New Issue
Block a user