diff options
author | Carter Snook <cartersnook04@gmail.com> | 2021-05-20 00:57:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 14:57:15 +0900 |
commit | bdee065d424f4dcc45c9137ccd1d0d9e581d20ae (patch) | |
tree | 859bded5384787fc49613689d321b083f0698500 | |
parent | c94c2c0911107d206006cb940ab761b4e0c231aa (diff) |
fix(cli/dts): fix missing error class (NotSupported) in types (#10713)
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index e3a59ac78..c56371a23 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -84,6 +84,7 @@ declare namespace Deno { BadResource: ErrorConstructor; Http: ErrorConstructor; Busy: ErrorConstructor; + NotSupported: ErrorConstructor; }; /** The current process id of the runtime. */ |