diff options
author | Feng Yu <f3n67u@gmail.com> | 2021-08-23 11:54:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-23 13:54:39 +1000 |
commit | 856884b2df9708159f17eeb5a1abc60530979bb6 (patch) | |
tree | 07f42e8b795279505f7cdff463614b5c231fe64b /ext/crypto/lib.deno_crypto.d.ts | |
parent | cb8f34c325e66d1ed160d65e515f8afe3393cfaf (diff) |
fix(ext/crypto): remove duplicate Algorithm interface defination (#11807)
Diffstat (limited to 'ext/crypto/lib.deno_crypto.d.ts')
-rw-r--r-- | ext/crypto/lib.deno_crypto.d.ts | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index 09273e78a..c00978592 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -146,10 +146,6 @@ declare interface Crypto { randomUUID(): string; } -interface Algorithm { - name: string; -} - declare var SubtleCrypto: { prototype: SubtleCrypto; new (): SubtleCrypto; |