From b3a2b8b8c4f043858c20412a7e395d5022e479eb Mon Sep 17 00:00:00 2001 From: David Baker Date: Fri, 20 Oct 2023 17:47:57 +0100 Subject: [PATCH] Export base64 utils We use these from react-sdk (from crypto, when they were there, but I just moved them and inadvertantly broke react-sdk). --- src/matrix.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/matrix.ts b/src/matrix.ts index 20f894a2dc1..6be9350404a 100644 --- a/src/matrix.ts +++ b/src/matrix.ts @@ -29,6 +29,7 @@ export * from "./http-api"; export * from "./autodiscovery"; export * from "./sync-accumulator"; export * from "./errors"; +export * from "./base64"; export * from "./models/beacon"; export * from "./models/event"; export * from "./models/room";