Newer
Older
percord / src / schemas / api / bots / InteractionCallbackSchema.ts
@CyberL1 CyberL1 on 19 Oct 207 bytes fix: interaction callback
import { Message } from "@spacebar/util";
import { InteractionCallbackType } from "./InteractionCallbackType";

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