From 61108935f16bd2aa60d51525e3578719425eef03 Mon Sep 17 00:00:00 2001 From: David DeSimone Date: Wed, 10 Feb 2021 03:52:54 -0800 Subject: fix(console): log function object properties / do not log non-enumerable props by default (#9363) --- cli/dts/lib.deno.ns.d.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/dts/lib.deno.ns.d.ts') diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index b607554e1..04bf8ad80 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -2034,6 +2034,8 @@ declare namespace Deno { trailingComma?: boolean; /*** Evaluate the result of calling getters. Defaults to false. */ getters?: boolean; + /** Show an object's non-enumerable properties. Defaults to false. */ + showHidden?: boolean; } /** Converts the input into a string that has the same format as printed by -- cgit v1.2.3