You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
Comply with new member-delimiter-style rule
Just `eslint --fix` with rule from https://github.com/matrix-org/eslint-plugin-matrix-org/pull/9 in place
This commit is contained in:
@@ -36,16 +36,16 @@ const KEY_BACKUP_KEYS_PER_REQUEST = 200;
|
||||
type AuthData = IKeyBackupInfo["auth_data"];
|
||||
|
||||
type SigInfo = {
|
||||
deviceId: string,
|
||||
valid?: boolean | null, // true: valid, false: invalid, null: cannot attempt validation
|
||||
device?: DeviceInfo | null,
|
||||
crossSigningId?: boolean,
|
||||
deviceTrust?: DeviceTrustLevel,
|
||||
deviceId: string;
|
||||
valid?: boolean | null; // true: valid, false: invalid, null: cannot attempt validation
|
||||
device?: DeviceInfo | null;
|
||||
crossSigningId?: boolean;
|
||||
deviceTrust?: DeviceTrustLevel;
|
||||
};
|
||||
|
||||
export type TrustInfo = {
|
||||
usable: boolean, // is the backup trusted, true iff there is a sig that is valid & from a trusted device
|
||||
sigs: SigInfo[],
|
||||
usable: boolean; // is the backup trusted, true iff there is a sig that is valid & from a trusted device
|
||||
sigs: SigInfo[];
|
||||
};
|
||||
|
||||
export interface IKeyBackupCheck {
|
||||
|
||||
Reference in New Issue
Block a user