blob: 5eb3f2964d6ced1df6876443203ddedc57aef73f (
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;
}
|