diff --git a/src/types/discordeno/edit_webhook_message.ts b/src/types/discordeno/edit_webhook_message.ts index 97ee0af14..f0cc429f2 100644 --- a/src/types/discordeno/edit_webhook_message.ts +++ b/src/types/discordeno/edit_webhook_message.ts @@ -1,6 +1,6 @@ import { EditWebhookMessage } from "../webhooks/edit_webhook_message.ts"; export interface DiscordenoEditWebhookMessage extends EditWebhookMessage { - /** Id of the message you want to edit */ - messageId: string; + /** Id of the message you want to edit if undefined the initial response message will be edited */ + messageId?: string; }