@nice-code/util 0.27.0 → 0.28.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
|
@@ -621,8 +621,8 @@ declare const importEd25519Key: {
|
|
|
621
621
|
readonly nonExtractable: (input: `ed25519::raw_base64::${string}` | `ed25519::jwk::${string}`) => Promise<CryptoKey>;
|
|
622
622
|
};
|
|
623
623
|
fromSerializedObject: {
|
|
624
|
-
readonly extractable: (input:
|
|
625
|
-
readonly nonExtractable: (input:
|
|
624
|
+
readonly extractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
625
|
+
readonly nonExtractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
626
626
|
};
|
|
627
627
|
fromJwk: {
|
|
628
628
|
readonly extractable: (input: JsonWebKey) => Promise<CryptoKey>;
|
package/build/index.d.mts
CHANGED
|
@@ -621,8 +621,8 @@ declare const importEd25519Key: {
|
|
|
621
621
|
readonly nonExtractable: (input: `ed25519::raw_base64::${string}` | `ed25519::jwk::${string}`) => Promise<CryptoKey>;
|
|
622
622
|
};
|
|
623
623
|
fromSerializedObject: {
|
|
624
|
-
readonly extractable: (input:
|
|
625
|
-
readonly nonExtractable: (input:
|
|
624
|
+
readonly extractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
625
|
+
readonly nonExtractable: (input: TSerializedCryptoKeyData_Ed25519_Raw_Transformed | TSerializedCryptoKeyData_Ed25519_Jwk_Transformed) => Promise<CryptoKey>;
|
|
626
626
|
};
|
|
627
627
|
fromJwk: {
|
|
628
628
|
readonly extractable: (input: JsonWebKey) => Promise<CryptoKey>;
|