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

Add missing options in ICreateClientOpts

This makes the examples in the README actually compile.

Signed-off-by: Dexter Chua <dec41@srcf.net>
This commit is contained in:
Dexter Chua
2020-08-29 14:37:11 +08:00
parent a51c0450c3
commit d42cdbbc5b

View File

@@ -120,6 +120,12 @@ interface ICreateClientOpts {
cryptoStore?: CryptoStore;
scheduler?: MatrixScheduler;
request?: Request;
userId?: string;
accessToken?: string;
identityServer?: any;
localTimeoutMs?: number;
useAuthorizationHeader?: boolean;
queryParams?: Record<string, unknown>;
}
/**