diff options
author | David DeSimone <lord.good.mail@gmail.com> | 2021-02-10 03:52:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-10 20:52:54 +0900 |
commit | 61108935f16bd2aa60d51525e3578719425eef03 (patch) | |
tree | 5bed537dca04d1a84dd8d59032cd67a45ee78645 /cli/dts/lib.deno.ns.d.ts | |
parent | 6752be05cda38dc6188bacc73fb8eb7c01560c97 (diff) |
fix(console): log function object properties / do not log non-enumerable props by default (#9363)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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 |