Newer
Older
percord / src / schemas / api / bots / SendableModalSubmitDataSchema.ts
@CyberL1 CyberL1 on 17 Oct 320 bytes feat: interactions (incomplete)
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[];
}