From 953ddd82e48dd206cef5ac94456549aed13b3ad5 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 17 Nov 2023 23:25:29 +0100 Subject: Updated 30 files and deleted 2976 files (automated) --- .../matrix-js-sdk/lib/crypto/deviceinfo.d.ts | 102 --------------------- 1 file changed, 102 deletions(-) delete mode 100644 includes/external/matrix/node_modules/matrix-js-sdk/lib/crypto/deviceinfo.d.ts (limited to 'includes/external/matrix/node_modules/matrix-js-sdk/lib/crypto/deviceinfo.d.ts') diff --git a/includes/external/matrix/node_modules/matrix-js-sdk/lib/crypto/deviceinfo.d.ts b/includes/external/matrix/node_modules/matrix-js-sdk/lib/crypto/deviceinfo.d.ts deleted file mode 100644 index 2363761..0000000 --- a/includes/external/matrix/node_modules/matrix-js-sdk/lib/crypto/deviceinfo.d.ts +++ /dev/null @@ -1,102 +0,0 @@ -import { ISignatures } from "../@types/signed"; -export interface IDevice { - keys: Record; - algorithms: string[]; - verified: DeviceVerification; - known: boolean; - unsigned?: Record; - signatures?: ISignatures; -} -declare enum DeviceVerification { - Blocked = -1, - Unverified = 0, - Verified = 1 -} -/** - * Information about a user's device - */ -export declare class DeviceInfo { - readonly deviceId: string; - /** - * rehydrate a DeviceInfo from the session store - * - * @param obj - raw object from session store - * @param deviceId - id of the device - * - * @returns new DeviceInfo - */ - static fromStorage(obj: Partial, deviceId: string): DeviceInfo; - static DeviceVerification: { - VERIFIED: DeviceVerification; - UNVERIFIED: DeviceVerification; - BLOCKED: DeviceVerification; - }; - /** list of algorithms supported by this device */ - algorithms: string[]; - /** a map from `: -> ` */ - keys: Record; - /** whether the device has been verified/blocked by the user */ - verified: DeviceVerification; - /** - * whether the user knows of this device's existence - * (useful when warning the user that a user has added new devices) - */ - known: boolean; - /** additional data from the homeserver */ - unsigned: Record; - signatures: ISignatures; - /** - * @param deviceId - id of the device - */ - constructor(deviceId: string); - /** - * Prepare a DeviceInfo for JSON serialisation in the session store - * - * @returns deviceinfo with non-serialised members removed - */ - toStorage(): IDevice; - /** - * Get the fingerprint for this device (ie, the Ed25519 key) - * - * @returns base64-encoded fingerprint of this device - */ - getFingerprint(): string; - /** - * Get the identity key for this device (ie, the Curve25519 key) - * - * @returns base64-encoded identity key of this device - */ - getIdentityKey(): string; - /** - * Get the configured display name for this device, if any - * - * @returns displayname - */ - getDisplayName(): string | null; - /** - * Returns true if this device is blocked - * - * @returns true if blocked - */ - isBlocked(): boolean; - /** - * Returns true if this device is verified - * - * @returns true if verified - */ - isVerified(): boolean; - /** - * Returns true if this device is unverified - * - * @returns true if unverified - */ - isUnverified(): boolean; - /** - * Returns true if the user knows about this device's existence - * - * @returns true if known - */ - isKnown(): boolean; -} -export {}; -//# sourceMappingURL=deviceinfo.d.ts.map \ No newline at end of file -- cgit