@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
9 lines (8 loc) • 475 B
TypeScript
import type { IUIKitInteraction } from '../../definition/uikit';
import type { IUser } from '../../definition/users';
import { BaseBridge } from './BaseBridge';
export declare abstract class UiInteractionBridge extends BaseBridge {
doNotifyUser(user: IUser, interaction: IUIKitInteraction, appId: string): Promise<void>;
protected abstract notifyUser(user: IUser, interaction: IUIKitInteraction, appId: string): Promise<void>;
private hasInteractionPermission;
}