Type Alias CryptoEventHandlerMap
CryptoEventHandlerMap: { "crossSigning.keysChanged": (data: {}) => void; "crypto.devicesUpdated": (users: string[], initialFetch: boolean) => void; "crypto.keyBackupDecryptionKeyCached": (version: string) => void; "crypto.legacyCryptoStoreMigrationProgress": ( progress: number, total: number, ) => void; "crypto.verificationRequestReceived": ( request: VerificationRequest, ) => void; "crypto.willUpdateDevices": ( users: string[], initialFetch: boolean, ) => void; userTrustStatusChanged: ( userId: string, userTrustLevel: UserVerificationStatus, ) => void;} & RustBackupCryptoEventMap
A map of the CryptoEvent fired by the CryptoApi and their payloads.