summaryrefslogtreecommitdiff
path: root/cli/dts/lib.esnext.object.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.object.d.ts
parent4be0365fb8251a8614f16e6162f4f43c9885d2a3 (diff)
feat(cli): update to TypeScript 4.6.2 (#13474)
Diffstat (limited to 'cli/dts/lib.esnext.object.d.ts')
-rw-r--r--cli/dts/lib.esnext.object.d.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/cli/dts/lib.esnext.object.d.ts b/cli/dts/lib.esnext.object.d.ts
deleted file mode 100644
index ed9d0ee30..000000000
--- a/cli/dts/lib.esnext.object.d.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
-
-/// <reference no-default-lib="true"/>
-
-interface ObjectConstructor {
- /**
- * Determines whether an object has a property with the specified name.
- * @param o The target object.
- * @param v A property name.
- */
- hasOwn(o: object, v: PropertyKey): boolean;
-}