1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-26 00:59:24 -05:00

fix(ext/crypto): remove duplicate Algorithm interface defination (#11807)

This commit is contained in:
Feng Yu 2021-08-23 11:54:39 +08:00 committed by GitHub
parent cb8f34c325
commit 856884b2df
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -146,10 +146,6 @@ declare interface Crypto {
randomUUID(): string; randomUUID(): string;
} }
interface Algorithm {
name: string;
}
declare var SubtleCrypto: { declare var SubtleCrypto: {
prototype: SubtleCrypto; prototype: SubtleCrypto;
new (): SubtleCrypto; new (): SubtleCrypto;