1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-11 08:33:43 -05:00

fix(ext/crypto): duplicate RsaHashedImportParams types (#13466)

This commit is contained in:
Divy Srivastava 2022-01-22 09:12:18 +05:30 committed by Bartek Iwańczuk
parent 912356784a
commit 8bbcede22b
No known key found for this signature in database
GPG key ID: 0C6BCDDC3B3AD750

View file

@ -116,10 +116,6 @@ interface HmacImportParams extends Algorithm {
length?: number;
}
interface RsaHashedImportParams extends Algorithm {
hash: HashAlgorithmIdentifier;
}
interface EcKeyAlgorithm extends KeyAlgorithm {
namedCurve: NamedCurve;
}