diff options
Diffstat (limited to 'cli/dts/lib.esnext.error.d.ts')
-rw-r--r-- | cli/dts/lib.esnext.error.d.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/dts/lib.esnext.error.d.ts b/cli/dts/lib.esnext.error.d.ts deleted file mode 100644 index 90f2fcb09..000000000 --- a/cli/dts/lib.esnext.error.d.ts +++ /dev/null @@ -1,16 +0,0 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. - -/// <reference no-default-lib="true"/> - -interface Error { - cause?: any; -} - -interface ErrorInit { - cause?: any; -} - -interface ErrorConstructor { - new (message?: string, init?: ErrorInit): Error; - (message?: string, init?: ErrorInit): Error; -} |