mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(cli/dts): fix missing error class (NotSupported) in types (#10713)
This commit is contained in:
parent
c94c2c0911
commit
bdee065d42
1 changed files with 1 additions and 0 deletions
1
cli/dts/lib.deno.ns.d.ts
vendored
1
cli/dts/lib.deno.ns.d.ts
vendored
|
@ -84,6 +84,7 @@ declare namespace Deno {
|
|||
BadResource: ErrorConstructor;
|
||||
Http: ErrorConstructor;
|
||||
Busy: ErrorConstructor;
|
||||
NotSupported: ErrorConstructor;
|
||||
};
|
||||
|
||||
/** The current process id of the runtime. */
|
||||
|
|
Loading…
Reference in a new issue