Interface GetReactionsOptions

interface GetReactionsOptions {
    after?: string;
    limit?: number;
    type?: ReactionType;
}

Properties

Properties

after?: string

The ID of the user to get reactions after.

limit?: number

The maximum amount of reactions to get. Defaults to 100. Use Infinity if you wish to get as many reactions as possible.

The type of reactions to get. Defaults to normal.