Interface ImportRoomKeyProgressData

Room key import progress report. Used when calling CryptoApi#importRoomKeys, CryptoApi#importRoomKeysAsJson or CryptoApi#restoreKeyBackup as the parameter of the progressCallback. Used to display feedback.

interface ImportRoomKeyProgressData {
    failures?: number;
    stage: string;
    successes?: number;
    total?: number;
}

Properties

failures?: number
stage: string
successes?: number
total?: number