summaryrefslogtreecommitdiff
path: root/cli/dts/lib.esnext.error.d.ts
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2022-03-02 07:44:43 +1100
committerGitHub <noreply@github.com>2022-03-02 07:44:43 +1100
commit7fc5bfe51b7d405aaa5293ec6f1a8f1e9119aea2 (patch)
tree440bd7c939407adc69bedfb678ee16538353073e /cli/dts/lib.esnext.error.d.ts
parent4be0365fb8251a8614f16e6162f4f43c9885d2a3 (diff)
feat(cli): update to TypeScript 4.6.2 (#13474)
Diffstat (limited to 'cli/dts/lib.esnext.error.d.ts')
-rw-r--r--cli/dts/lib.esnext.error.d.ts16
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;
-}