1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-07-31 15:24:23 +03:00

Typescriptify crypto integration tests (#2508)

This commit is contained in:
Faye Duxovni
2022-07-12 12:18:39 -04:00
committed by GitHub
parent 8d7eaa769a
commit 6fb40d465e
3 changed files with 678 additions and 760 deletions

View File

@ -39,8 +39,8 @@ import { IKeysUploadResponse, IUploadKeysRequest } from '../src/client';
export class TestClient {
public readonly httpBackend: MockHttpBackend;
public readonly client: MatrixClient;
private deviceKeys: IDeviceKeys;
private oneTimeKeys: Record<string, IOneTimeKey>;
public deviceKeys: IDeviceKeys;
public oneTimeKeys: Record<string, IOneTimeKey>;
constructor(
public readonly userId?: string,