mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 04:23: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 {
|
export interface MessageReference {
|
||||||
channelId: Snowflake;
|
channelId: Snowflake;
|
||||||
guildId: Snowflake;
|
guildId: Snowflake | undefined;
|
||||||
messageId: Snowflake | null;
|
messageId: Snowflake | undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type MessageResolvable = Message | Snowflake;
|
export type MessageResolvable = Message | Snowflake;
|
||||||
|
|||||||
Reference in New Issue
Block a user