summary refs log tree commit diff
path: root/src/schemas/api/bots/SendableModalSubmitDataSchema.ts
blob: e2c64cdf4a239e5aca9d2a0517947d2b2b4736fe (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[];
}