1 files changed, 15 insertions, 0 deletions
diff --git a/src/util/interfaces/MessageOptions.ts b/src/util/interfaces/MessageOptions.ts
new file mode 100644
index 00000000..3705e668
--- /dev/null
+++ b/src/util/interfaces/MessageOptions.ts
@@ -0,0 +1,15 @@
+import { Attachment, Embed, MessageCreateSchema, MessageType } from "@fosscord/util*";
+
+export interface MessageOptions extends MessageCreateSchema {
+ id?: string;
+ type?: MessageType;
+ pinned?: boolean;
+ author_id?: string;
+ webhook_id?: string;
+ application_id?: string;
+ embeds?: Embed[];
+ channel_id?: string;
+ attachments?: Attachment[];
+ edited_timestamp?: Date;
+ timestamp?: Date;
+}
\ No newline at end of file
|