summary refs log tree commit diff
path: root/src/schemas/api/bots/InteractionCallbackSchema.ts
blob: 9bc27217abd73a0a797988ccce4856b86204a821 (plain) (blame)
1
2
3
4
5
6
7
import { Message } from "@spacebar/util";
import { InteractionCallbackType } from "./InteractionCallbackType";

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