1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -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 GitHub
parent 56d0ca7f52
commit a96b294a8a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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