@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
17 lines (16 loc) • 846 B
TypeScript
import type { IHttp, IModify, IPersistence, IRead } from '../../accessors';
import { AppMethod } from '../../metadata';
import type { IUIKitResponse } from '../IUIKitInteractionType';
import type { UIKitLivechatBlockInteractionContext } from './UIKitLivechatInteractionContext';
/** Handler for UIKit interactions in the livechat widget. */
export interface IUIKitLivechatInteractionHandler {
/**
* Method called when a block action is invoked.
*
* @param context
* @param read An accessor to the environment
* @param http An accessor to the outside world
* @param persistence An accessor to the App's persistence
*/
[AppMethod.UIKIT_LIVECHAT_BLOCK_ACTION]?(context: UIKitLivechatBlockInteractionContext, read: IRead, http: IHttp, persistence: IPersistence, modify: IModify): Promise<IUIKitResponse>;
}