Hhertz/node_modules/matrix-bot-sdk/lib/e2ee/InternalOlmMachineFactory.d.ts
2025-07-31 23:47:20 +03:00

14 lines
471 B
TypeScript

import { OlmEngine, OlmMachine } from "@turt2live/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;
}