Newer
Older
percord / src / schemas / api / bots / InteractionCallbackSchema.ts
@CyberL1 CyberL1 on 17 Oct 234 bytes feat: interactions (incomplete)
import { MessageCreateSchema } from "@spacebar/schemas";
import { InteractionCallbackType } from "./InteractionCallbackType";

export interface InteractionCallbackSchema {
	type: InteractionCallbackType;
	data: MessageCreateSchema;
}