You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-28 05:03:59 +03:00
fix the upset CI
This commit is contained in:
@@ -4,7 +4,7 @@ import { EventEmitter } from "events";
|
||||
import { createCryptoStoreCacheCallbacks, ICacheCallbacks } from "./CrossSigning";
|
||||
import { IndexedDBCryptoStore } from './store/indexeddb-crypto-store';
|
||||
import { PREFIX_UNSTABLE } from "../http-api";
|
||||
import { Crypto } from "./index";
|
||||
import { Crypto, IBootstrapCrossSigningOpts } from "./index";
|
||||
import {
|
||||
CrossSigningKeys,
|
||||
ICrossSigningKey,
|
||||
@@ -16,7 +16,7 @@ import {
|
||||
import { IKeyBackupInfo } from "./keybackup";
|
||||
|
||||
interface ICrossSigningKeys {
|
||||
authUpload(authData: any): Promise<{}>;
|
||||
authUpload: IBootstrapCrossSigningOpts["authUploadDeviceSigningKeys"];
|
||||
keys: Record<string, ICrossSigningKey>;
|
||||
}
|
||||
|
||||
|
||||
@@ -92,7 +92,7 @@ interface IInitOpts {
|
||||
|
||||
export interface IBootstrapCrossSigningOpts {
|
||||
setupNewCrossSigning?: boolean;
|
||||
authUploadDeviceSigningKeys?(makeRequest: (authData: any) => void): Promise<{}>;
|
||||
authUploadDeviceSigningKeys?(makeRequest: (authData: any) => {}): Promise<void>;
|
||||
}
|
||||
|
||||
interface IBootstrapSecretStorageOpts {
|
||||
|
||||
Reference in New Issue
Block a user