1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-23 17:02:25 +03:00

Pull out a public CryptoApi (#3211)

... so that we don't have to implement annoying shims in `MatrixClient`
This commit is contained in:
Richard van der Hoff
2023-03-13 12:02:49 +00:00
committed by GitHub
parent 913cd257f4
commit 333872e878
7 changed files with 159 additions and 65 deletions

View File

@@ -60,6 +60,7 @@ export { createNewMatrixCall } from "./webrtc/call";
export type { MatrixCall } from "./webrtc/call";
export { GroupCallEvent, GroupCallIntent, GroupCallState, GroupCallType } from "./webrtc/groupCall";
export type { GroupCall } from "./webrtc/groupCall";
export type { CryptoApi } from "./crypto-api";
let cryptoStoreFactory = (): CryptoStore => new MemoryCryptoStore();