mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 10:58:18 +00:00
feat(Collector): return a boolean on checkEnd (#6289)
This commit is contained in:
Vendored
+1
-1
@@ -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