interface InteractionCollectorOptions
extends
CollectorOptions<[Interaction, Collection<Snowflake, Interaction>]>export interface InteractionCollectorOptions<Interaction extends CollectedInteraction, Cached extends CacheType = CacheType,> extends CollectorOptions<[Interaction, Collection<Snowflake, Interaction>]>
Type Parameters
CollectedInteraction Interaction extends
optionalTextBasedChannelResolvable channel? :
The channel to listen to interactions from
optionalComponentType componentType? :
The type of component to listen for
optionalboolean dispose? :
Whether to dispose data when it's deleted
Inherited from: CollectorOptions
optionalCollectorFilter<FilterArguments> filter? :
The filter applied to this collector
Inherited from: CollectorOptions
optionalGuildResolvable guild? :
The guild to listen to interactions from
optionalnumber idle? :
How long to stop the collector after inactivity in milliseconds
Inherited from: CollectorOptions
optionalInteractionResponse<BooleanCache<Cached>> interactionResponse? :
The interaction response to listen to message component interactions from
optionalInteractionType interactionType? :
The type of interaction to listen for
optionalnumber max? :
The maximum total amount of interactions to collect
optionalnumber maxComponents? :
The maximum number of components to collect
optionalnumber maxUsers? :
The maximum number of users to interact
optionalCacheTypeReducer<Cached, Message, APIMessage> message? :
The message to listen to interactions from
optionalnumber time? :
How long to run the collector for in milliseconds
Inherited from: CollectorOptions