summaryrefslogtreecommitdiff
path: root/cli/dts/lib.esnext.object.d.ts
diff options
context:
space:
mode:
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;
-}