UNPKG

@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) 549 B
import type { AppExternalComponentManager } from '../managers/AppExternalComponentManager'; import type { IExternalComponentsExtend } from '../../definition/accessors'; import type { IExternalComponent } from '../../definition/externalComponent/IExternalComponent'; export declare class ExternalComponentsExtend implements IExternalComponentsExtend { private readonly manager; private readonly appId; constructor(manager: AppExternalComponentManager, appId: string); register(externalComponent: IExternalComponent): Promise<void>; }