mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
10 lines
380 B
TypeScript
10 lines
380 B
TypeScript
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/discordeno/edit_webhook_message.ts
|
|
|
|
|
|
import { EditWebhookMessage } from "../webhooks/edit_webhook_message.ts";
|
|
|
|
export interface DiscordenoEditWebhookMessage extends EditWebhookMessage {
|
|
/** Id of the message you want to edit if undefined the initial response message will be edited */
|
|
messageId?: bigint;
|
|
}
|