From a96b294a8a421570f6b29b5df6fbeaf2d9658047 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Sat, 22 Jan 2022 09:12:18 +0530 Subject: [PATCH] fix(ext/crypto): duplicate RsaHashedImportParams types (#13466) --- ext/crypto/lib.deno_crypto.d.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index 4eace1c54c..3ab6bda360 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -116,10 +116,6 @@ interface HmacImportParams extends Algorithm { length?: number; } -interface RsaHashedImportParams extends Algorithm { - hash: HashAlgorithmIdentifier; -} - interface EcKeyAlgorithm extends KeyAlgorithm { namedCurve: NamedCurve; }