ITOH
2021-04-13 22:37:28 +02:00
parent acba65e25b
commit 2de4d127a7

View File

@@ -1,5 +1,6 @@
import { Embed } from "../embeds/embed.ts";
import { AllowedMentions } from "../messages/allowed_mentions.ts";
import { FileContent } from "../mod.ts";
import { SnakeCasedPropertiesDeep } from "../util.ts";
export interface EditWebhookMessage {
@@ -7,6 +8,8 @@ export interface EditWebhookMessage {
content?: string | null;
/** Embedded `rich` content */
embeds?: Embed[] | null;
/** The contents of the file being sent/edited */
file: FileContent | FileContent[];
/** Allowed mentions for the message */
allowedMentions?: AllowedMentions | null;
}