Interface MessageComponentInteractionResolvedData

interface MessageComponentInteractionResolvedData {
    channels: TypedCollection<RawInteractionResolvedChannel, InteractionResolvedChannel, []>;
    members: TypedCollection<RawMember, Member, [guildID: string]>;
    roles: TypedCollection<RawRole, Role, [guildID: string]>;
    users: TypedCollection<RawUser, User, []>;
}

Properties

members: TypedCollection<RawMember, Member, [guildID: string]>
roles: TypedCollection<RawRole, Role, [guildID: string]>