@airgap/module-kit 0.13.11-beta.0 → 0.13.11-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +4 -4
- package/index.js.map +1 -1
- package/package.json +4 -4
- package/protocol/extensions/bip/Bip32Extension.d.ts +3 -3
- package/protocol/extensions/crypto/AESExtension.d.ts +1 -1
- package/protocol/extensions/crypto/AsymmetricEncryptionExtension.d.ts +1 -1
- package/protocol/extensions/crypto/SignMessageExtension.d.ts +1 -1
- package/protocol/protocol.d.ts +8 -5
- package/types/crypto.d.ts +29 -0
- package/types/{secret.js → crypto.js} +1 -1
- package/types/crypto.js.map +1 -0
- package/types/meta/utility-types.d.ts +2 -0
- package/types/protocol.d.ts +2 -2
- package/utils/protocol.js +2 -2
- package/utils/protocol.js.map +1 -1
- package/airgap-module-kit.min.js +0 -30037
- package/types/secret.d.ts +0 -12
- package/types/secret.js.map +0 -1
package/types/secret.d.ts
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Sealed } from './base/sealed';
|
|
2
|
-
export declare type SecretType = 'mnemonic' | 'hex';
|
|
3
|
-
interface BaseSecret<_Type extends SecretType> extends Sealed<_Type> {
|
|
4
|
-
value: string;
|
|
5
|
-
}
|
|
6
|
-
export interface MnemonicSecret extends BaseSecret<'mnemonic'> {
|
|
7
|
-
password?: string;
|
|
8
|
-
}
|
|
9
|
-
export interface HexSecret extends BaseSecret<'hex'> {
|
|
10
|
-
}
|
|
11
|
-
export declare type Secret = MnemonicSecret | HexSecret;
|
|
12
|
-
export {};
|
package/types/secret.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"secret.js","sourceRoot":"","sources":["../../src/types/secret.ts"],"names":[],"mappings":""}
|