You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-28 05:03:59 +03:00
delint
This commit is contained in:
@@ -26,7 +26,7 @@ export interface IDevice {
|
|||||||
verified: DeviceVerification;
|
verified: DeviceVerification;
|
||||||
known: boolean;
|
known: boolean;
|
||||||
unsigned?: Record<string, any>;
|
unsigned?: Record<string, any>;
|
||||||
signatures?: Record<string, string>;
|
signatures?: ISignatures;
|
||||||
}
|
}
|
||||||
|
|
||||||
enum DeviceVerification {
|
enum DeviceVerification {
|
||||||
@@ -92,7 +92,7 @@ export class DeviceInfo {
|
|||||||
public verified = DeviceVerification.Unverified;
|
public verified = DeviceVerification.Unverified;
|
||||||
public known = false;
|
public known = false;
|
||||||
public unsigned: Record<string, any> = {};
|
public unsigned: Record<string, any> = {};
|
||||||
public signatures: Record<string, string> = {};
|
public signatures: ISignatures = {};
|
||||||
|
|
||||||
constructor(public readonly deviceId: string) {}
|
constructor(public readonly deviceId: string) {}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user