diff options
Diffstat (limited to 'cli/dts/lib.deno.shared_globals.d.ts')
-rw-r--r-- | cli/dts/lib.deno.shared_globals.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.shared_globals.d.ts b/cli/dts/lib.deno.shared_globals.d.ts index efd59ca2e..fc40bb54e 100644 --- a/cli/dts/lib.deno.shared_globals.d.ts +++ b/cli/dts/lib.deno.shared_globals.d.ts @@ -21,7 +21,7 @@ declare namespace WebAssembly { */ export class CompileError extends Error { /** Creates a new `WebAssembly.CompileError` object. */ - constructor(); + constructor(message?: string, options?: ErrorOptions); } /** @@ -72,7 +72,7 @@ declare namespace WebAssembly { */ export class LinkError extends Error { /** Creates a new WebAssembly.LinkError object. */ - constructor(); + constructor(message?: string, options?: ErrorOptions); } /** @@ -132,7 +132,7 @@ declare namespace WebAssembly { */ export class RuntimeError extends Error { /** Creates a new `WebAssembly.RuntimeError` object. */ - constructor(); + constructor(message?: string, options?: ErrorOptions); } /** |