summary refs log tree commit diff
path: root/src/util/interfaces/MessageOptions.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/interfaces/MessageOptions.ts')
-rw-r--r--src/util/interfaces/MessageOptions.ts15
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