mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 03:53:29 +01:00
fix(ReactionUserManager): remove before query option (#5281)
This commit is contained in:
6
typings/index.d.ts
vendored
6
typings/index.d.ts
vendored
@@ -2009,11 +2009,7 @@ declare module 'discord.js' {
|
||||
export class ReactionUserManager extends BaseManager<Snowflake, User, UserResolvable> {
|
||||
constructor(client: Client, iterable: Iterable<any> | undefined, reaction: MessageReaction);
|
||||
public reaction: MessageReaction;
|
||||
public fetch(options?: {
|
||||
limit?: number;
|
||||
after?: Snowflake;
|
||||
before?: Snowflake;
|
||||
}): Promise<Collection<Snowflake, User>>;
|
||||
public fetch(options?: { limit?: number; after?: Snowflake }): Promise<Collection<Snowflake, User>>;
|
||||
public remove(user?: UserResolvable): Promise<MessageReaction>;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user