Internal module. Definitions for storage for the crypto module

interface SecretStorePrivateKeys {
    dehydration: null | {
        deviceDisplayName: string;
        key: AESEncryptedSecretStoragePayload;
        keyInfo: undefined | {
            [props: string]: any;
        };
        time: number;
    };
    m.megolm_backup.v1: AESEncryptedSecretStoragePayload;
}

Properties

dehydration: null | {
    deviceDisplayName: string;
    key: AESEncryptedSecretStoragePayload;
    keyInfo: undefined | {
        [props: string]: any;
    };
    time: number;
}