From 1ca13f4ce970475d2ee816e4bdd4cac31da91451 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Thu, 24 Jun 2021 19:28:04 +0100 Subject: [PATCH] delint --- src/crypto/OutgoingRoomKeyRequestManager.ts | 6 +++--- src/crypto/deviceinfo.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/crypto/OutgoingRoomKeyRequestManager.ts b/src/crypto/OutgoingRoomKeyRequestManager.ts index 07426148a..a684b2c71 100644 --- a/src/crypto/OutgoingRoomKeyRequestManager.ts +++ b/src/crypto/OutgoingRoomKeyRequestManager.ts @@ -15,10 +15,10 @@ limitations under the License. */ import { logger } from '../logger'; -import {CryptoStore, MatrixClient} from "../client"; -import {IRoomKeyRequestBody, IRoomKeyRequestRecipient} from "./index"; +import { CryptoStore, MatrixClient } from "../client"; +import { IRoomKeyRequestBody, IRoomKeyRequestRecipient } from "./index"; import { OutgoingRoomKeyRequest } from './store/base'; -import {EventType} from "../@types/event"; +import { EventType } from "../@types/event"; /** * Internal module. Management of outgoing room key requests. diff --git a/src/crypto/deviceinfo.ts b/src/crypto/deviceinfo.ts index 3272e047e..870899349 100644 --- a/src/crypto/deviceinfo.ts +++ b/src/crypto/deviceinfo.ts @@ -26,7 +26,7 @@ export interface IDevice { verified: DeviceVerification; known: boolean; unsigned?: Record; - signatures?: Record; + signatures?: ISignatures; } enum DeviceVerification { @@ -92,7 +92,7 @@ export class DeviceInfo { public verified = DeviceVerification.Unverified; public known = false; public unsigned: Record = {}; - public signatures: Record = {}; + public signatures: ISignatures = {}; constructor(public readonly deviceId: string) {}