@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) • 450 B
TypeScript
import type { IContactRead } from '../../definition/accessors/IContactRead';
import type { ILivechatContact } from '../../definition/livechat';
import type { AppBridges } from '../bridges';
export declare class ContactRead implements IContactRead {
private readonly bridges;
private readonly appId;
constructor(bridges: AppBridges, appId: string);
getById(contactId: ILivechatContact['_id']): Promise<ILivechatContact | undefined>;
}