diff options
author | Ben Heidemann <56122437+bcheidemann@users.noreply.github.com> | 2022-04-25 12:59:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-25 13:59:15 +0200 |
commit | ddbfa1418c5ec2805a565caa07f7eec6af1deb39 (patch) | |
tree | 26daa26b991a0e3a465205380af22b73cb89c973 /cli/dts/lib.deno.ns.d.ts | |
parent | 6dcf3a447c688130d79751ad7e6e508631f7032d (diff) |
feat(ext/console): Add string abbreviation size option for "Deno.inspect" (#14384)
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 485b3d490..2caf05085 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -2491,6 +2491,8 @@ declare namespace Deno { getters?: boolean; /** Show an object's non-enumerable properties. Defaults to false. */ showHidden?: boolean; + /** The maximum length of a string before it is truncated with an ellipsis */ + strAbbreviateSize?: number; } /** Converts the input into a string that has the same format as printed by |