@rocket.chat/apps-engine
Version:
The engine code for the Rocket.Chat Apps which manages, runs, translates, coordinates and all of that.
16 lines (14 loc) • 388 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.UIExtend = void 0;
class UIExtend {
constructor(manager, appId) {
this.manager = manager;
this.appId = appId;
}
registerButton(button) {
this.manager.registerActionButton(this.appId, button);
}
}
exports.UIExtend = UIExtend;
//# sourceMappingURL=UIExtend.js.map
;