diff --git a/typings/index.d.ts b/typings/index.d.ts index 3a3a5ac3466b..ae706a75a94d 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1913,7 +1913,7 @@ export class ModalSubmitFieldsResolver { export interface ModalMessageModalSubmitInteraction extends ModalSubmitInteraction { - message: GuildCacheMessage | null; + message: GuildCacheMessage; update(options: InteractionUpdateOptions & { fetchReply: true }): Promise>; update(options: string | MessagePayload | InteractionUpdateOptions): Promise; deferUpdate(options: InteractionDeferUpdateOptions & { fetchReply: true }): Promise>; @@ -1929,6 +1929,7 @@ export class ModalSubmitInteraction extend public components: PartialModalActionRow[]; public deferred: boolean; public ephemeral: boolean | null; + public message: GuildCacheMessage | null; public fields: ModalSubmitFieldsResolver; public replied: false; public webhook: InteractionWebhook;