File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,5 @@ export type CryptoEventHandlerMap = {
29
29
[ CryptoEvent . KeysChanged ] : ( data : { } ) => void ;
30
30
[ CryptoEvent . WillUpdateDevices ] : ( users : string [ ] , initialFetch : boolean ) => void ;
31
31
[ CryptoEvent . DevicesUpdated ] : ( users : string [ ] , initialFetch : boolean ) => void ;
32
+ [ CryptoEvent . LegacyCryptoStoreMigrationProgress ] : ( progress : number , total : number ) => void ;
32
33
} & RustBackupCryptoEventMap ;
Original file line number Diff line number Diff line change @@ -326,8 +326,6 @@ export type CryptoEventHandlerMap = CryptoApiCryptoEventHandlerMap & {
326
326
*/
327
327
[ CryptoEvent . Warning ] : ( type : string ) => void ;
328
328
[ CryptoEvent . UserCrossSigningUpdated ] : ( userId : string ) => void ;
329
-
330
- [ CryptoEvent . LegacyCryptoStoreMigrationProgress ] : ( progress : number , total : number ) => void ;
331
329
} ;
332
330
333
331
export class Crypto extends TypedEventEmitter < CryptoEvent , CryptoEventHandlerMap > implements CryptoBackend {
You can’t perform that action at this time.
0 commit comments