@nice-code/util 0.20.0 → 0.22.0
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/build/index.d.cts +2 -2
- package/build/index.d.mts +2 -2
- package/package.json +1 -1
package/build/index.d.cts
CHANGED
|
@@ -523,8 +523,8 @@ declare const importEd25519Key: {
|
|
|
523
523
|
readonly nonExtractable: (input: `ed25519::raw_base64::${string}` | `ed25519::jwk::${string}`) => Promise<CryptoKey>;
|
|
524
524
|
};
|
|
525
525
|
fromSerializedObject: {
|
|
526
|
-
readonly extractable: (input:
|
|
527
|
-
readonly nonExtractable: (input:
|
|
526
|
+
readonly extractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
527
|
+
readonly nonExtractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
528
528
|
};
|
|
529
529
|
fromJwk: {
|
|
530
530
|
readonly extractable: (input: JsonWebKey) => Promise<CryptoKey>;
|
package/build/index.d.mts
CHANGED
|
@@ -523,8 +523,8 @@ declare const importEd25519Key: {
|
|
|
523
523
|
readonly nonExtractable: (input: `ed25519::raw_base64::${string}` | `ed25519::jwk::${string}`) => Promise<CryptoKey>;
|
|
524
524
|
};
|
|
525
525
|
fromSerializedObject: {
|
|
526
|
-
readonly extractable: (input:
|
|
527
|
-
readonly nonExtractable: (input:
|
|
526
|
+
readonly extractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
527
|
+
readonly nonExtractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
528
528
|
};
|
|
529
529
|
fromJwk: {
|
|
530
530
|
readonly extractable: (input: JsonWebKey) => Promise<CryptoKey>;
|