From a87ae770cc1c647c6a62f45ea66ddb17efee5b23 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 25 Jun 2020 21:58:15 +0100 Subject: [PATCH] Fix ICreateClientOpts missing idBaseUrl Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/matrix.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matrix.ts b/src/matrix.ts index 7a60404d2a3..e3f22c4c060 100644 --- a/src/matrix.ts +++ b/src/matrix.ts @@ -113,9 +113,9 @@ export function setCryptoStoreFactory(fac) { cryptoStoreFactory = fac; } - interface ICreateClientOpts { baseUrl: string; + idBaseUrl?: string; store?: Store; cryptoStore?: CryptoStore; scheduler?: MatrixScheduler;