mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
typings(MessageReference): correctly add undefined type (#6563)
This commit is contained in:
4
typings/index.d.ts
vendored
4
typings/index.d.ts
vendored
@@ -4311,8 +4311,8 @@ export type MessageReactionResolvable =
|
||||
|
||||
export interface MessageReference {
|
||||
channelId: Snowflake;
|
||||
guildId: Snowflake;
|
||||
messageId: Snowflake | null;
|
||||
guildId: Snowflake | undefined;
|
||||
messageId: Snowflake | undefined;
|
||||
}
|
||||
|
||||
export type MessageResolvable = Message | Snowflake;
|
||||
|
||||
Reference in New Issue
Block a user