mirror of
https://github.com/discordjs/discord.js.git
synced 2026-06-15 10:58:18 +00:00
docs(CommandInteractionResolvedData): fix key type (#6729)
This commit is contained in:
Vendored
+5
-5
@@ -3510,11 +3510,11 @@ export interface CommandInteractionOption {
|
||||
}
|
||||
|
||||
export interface CommandInteractionResolvedData {
|
||||
users?: Collection<string, User>;
|
||||
members?: Collection<string, GuildMember | APIInteractionDataResolvedGuildMember>;
|
||||
roles?: Collection<string, Role | APIRole>;
|
||||
channels?: Collection<string, Channel | APIInteractionDataResolvedChannel>;
|
||||
messages?: Collection<string, Message | APIMessage>;
|
||||
users?: Collection<Snowflake, User>;
|
||||
members?: Collection<Snowflake, GuildMember | APIInteractionDataResolvedGuildMember>;
|
||||
roles?: Collection<Snowflake, Role | APIRole>;
|
||||
channels?: Collection<Snowflake, Channel | APIInteractionDataResolvedChannel>;
|
||||
messages?: Collection<Snowflake, Message | APIMessage>;
|
||||
}
|
||||
|
||||
export interface ConstantsClientApplicationAssetTypes {
|
||||
|
||||
Reference in New Issue
Block a user