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 { createCryptoStoreCacheCallbacks, ICacheCallbacks } from "./CrossSigning";
|
||||||
import { IndexedDBCryptoStore } from './store/indexeddb-crypto-store';
|
import { IndexedDBCryptoStore } from './store/indexeddb-crypto-store';
|
||||||
import { PREFIX_UNSTABLE } from "../http-api";
|
import { PREFIX_UNSTABLE } from "../http-api";
|
||||||
import { Crypto } from "./index";
|
import { Crypto, IBootstrapCrossSigningOpts } from "./index";
|
||||||
import {
|
import {
|
||||||
CrossSigningKeys,
|
CrossSigningKeys,
|
||||||
ICrossSigningKey,
|
ICrossSigningKey,
|
||||||
@@ -16,7 +16,7 @@ import {
|
|||||||
import { IKeyBackupInfo } from "./keybackup";
|
import { IKeyBackupInfo } from "./keybackup";
|
||||||
|
|
||||||
interface ICrossSigningKeys {
|
interface ICrossSigningKeys {
|
||||||
authUpload(authData: any): Promise<{}>;
|
authUpload: IBootstrapCrossSigningOpts["authUploadDeviceSigningKeys"];
|
||||||
keys: Record<string, ICrossSigningKey>;
|
keys: Record<string, ICrossSigningKey>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -92,7 +92,7 @@ interface IInitOpts {
|
|||||||
|
|
||||||
export interface IBootstrapCrossSigningOpts {
|
export interface IBootstrapCrossSigningOpts {
|
||||||
setupNewCrossSigning?: boolean;
|
setupNewCrossSigning?: boolean;
|
||||||
authUploadDeviceSigningKeys?(makeRequest: (authData: any) => void): Promise<{}>;
|
authUploadDeviceSigningKeys?(makeRequest: (authData: any) => {}): Promise<void>;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface IBootstrapSecretStorageOpts {
|
interface IBootstrapSecretStorageOpts {
|
||||||
|
|||||||
Reference in New Issue
Block a user