@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
10 lines (9 loc) • 449 B
TypeScript
import type { IUIExtend } from '../../definition/accessors';
import type { IUIActionButtonDescriptor } from '../../definition/ui';
import type { UIActionButtonManager } from '../managers/UIActionButtonManager';
export declare class UIExtend implements IUIExtend {
private readonly manager;
private readonly appId;
constructor(manager: UIActionButtonManager, appId: string);
registerButton(button: IUIActionButtonDescriptor): void;
}