UNPKG

@rocket.chat/forked-matrix-bot-sdk

Version:

TypeScript/JavaScript SDK for Matrix bots and appservices

14 lines (13 loc) 480 B
import { OlmEngine, OlmMachine } from "@rocket.chat/forked-matrix-sdk-crypto-nodejs"; /** * @internal */ export declare class InternalOlmMachineFactory { private userId; private deviceId; private engine; private storagePath; static FACTORY_OVERRIDE: (userId: string, deviceId: string, engine: OlmEngine, storagePath: string) => OlmMachine; constructor(userId: string, deviceId: string, engine: OlmEngine, storagePath: string); build(): OlmMachine; }