summary refs log tree commit diff
path: root/src/schemas/api/bots/SendableModalSubmitDataSchema.ts
blob: 33c4b00a7edf5210663914f2ae427e865b34ec77 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { UploadAttachmentRequestSchema } from "@spacebar/schemas";
import { Attachment, Snowflake } from "@spacebar/util";

export interface SendableModalSubmitDataSchema {
	id: Snowflake;
	custom_id: string;
	// components: ModalSubmitComponentData[]; // TODO: do this
	attachments?: UploadAttachmentRequestSchema[];
}