@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
18 lines (17 loc) • 713 B
TypeScript
export declare enum UIKitIncomingInteractionContainerType {
MESSAGE = "message",
VIEW = "view"
}
export interface IUIKitIncomingInteractionContainer {
type: UIKitIncomingInteractionContainerType;
id: string;
}
export interface IUIKitIncomingInteractionModalContainer extends IUIKitIncomingInteractionContainer {
type: UIKitIncomingInteractionContainerType.VIEW;
}
export interface IUIKitIncomingInteractionContextualBarContainer extends IUIKitIncomingInteractionContainer {
type: UIKitIncomingInteractionContainerType.VIEW;
}
export interface IUIKitIncomingInteractionMessageContainer extends IUIKitIncomingInteractionContainer {
type: UIKitIncomingInteractionContainerType.MESSAGE;
}