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;
}
|