1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-12-01 04:43:29 +03:00

Build pass 1

This commit is contained in:
Travis Ralston
2021-06-01 21:05:20 -06:00
parent 5c55dce13e
commit 263e55f25d
2 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ import {
IKeyBackupTrustInfo,
IKeyBackupVersion,
} from "./crypto/keybackup";
import { PkDecryption } from "olm";
import { PkDecryption } from "@matrix-org/olm";
import { IIdentityServerProvider } from "./@types/IIdentityServerProvider";
import type Request from "request";
import { MatrixScheduler } from "./scheduler";
@@ -398,7 +398,7 @@ export class MatrixClient extends EventEmitter {
private canSupportVoip = false;
private peekSync: SyncApi = null;
private isGuestAccount = false;
private ongoingScrollbacks: {[roomId: string]: {promise?: Promise<any>, errorTs: number}} = {}; // TODO: Types
private ongoingScrollbacks: {[roomId: string]: {promise?: Promise<any>, errorTs?: number}} = {}; // TODO: Types
private notifTimelineSet: EventTimelineSet = null;
private cryptoStore: CryptoStore;
private verificationMethods: string[];

View File

@@ -16,7 +16,7 @@ limitations under the License.
import EventEmitter from "events";
import { SDPStreamMetadataPurpose } from "./callEventTypes";
import MatrixClient from "../client"
import { MatrixClient } from "../client"
import { RoomMember } from "../models/room-member";
export enum CallFeedEvent {