From c0928c75f833f11b57b4a5b5f329b751d28d5b79 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Mon, 5 Jun 2023 11:47:55 +0530 Subject: [PATCH] Export all classes from index.ts --- src/matrix/ssss/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/matrix/ssss/index.ts b/src/matrix/ssss/index.ts index 02f3290e..d6875542 100644 --- a/src/matrix/ssss/index.ts +++ b/src/matrix/ssss/index.ts @@ -24,6 +24,12 @@ import type {KeyDescriptionData} from "./common"; import type {Platform} from "../../platform/web/Platform.js"; import type * as OlmNamespace from "@matrix-org/olm" +// Add exports for other classes +export {SecretFetcher} from "./SecretFetcher"; +export {SharedSecret} from "./SharedSecret"; +export {SecretStorage} from "./SecretStorage"; + + type Olm = typeof OlmNamespace; const SSSS_KEY = `${SESSION_E2EE_KEY_PREFIX}ssssKey`;