We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
GeneratedSecretStorageKey
1 parent c425945 commit 858061aCopy full SHA for 858061a
src/crypto/api.ts
@@ -19,7 +19,9 @@ import { IKeyBackupInfo } from "./keybackup";
19
import { GeneratedSecretStorageKey } from "../crypto-api";
20
21
/* re-exports for backwards compatibility. */
22
-export { CrossSigningKey, GeneratedSecretStorageKey as IRecoveryKey } from "../crypto-api";
+// CrossSigningKey is used as a value in `client.ts`, we can't export it as a type
23
+export { CrossSigningKey } from "../crypto-api";
24
+export type { GeneratedSecretStorageKey as IRecoveryKey } from "../crypto-api";
25
26
export type {
27
ImportRoomKeyProgressData as IImportOpts,
0 commit comments