summaryrefslogtreecommitdiff
path: root/cli/tsc/dts/lib.deno.ns.d.ts
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2023-06-05 12:25:47 +0200
committerGitHub <noreply@github.com>2023-06-05 12:25:47 +0200
commit08bd23970dbce4ccf8103abf27e4cfa1b747705b (patch)
tree77c84c3e3484c94eafa4f62a0d3dd822e5c703bc /cli/tsc/dts/lib.deno.ns.d.ts
parent77a950aac417ba5e9bf1a48b0ec8934291376a8c (diff)
feat: add more options to Deno.inspect (#19337)
For https://github.com/denoland/deno_std/issues/3404 --------- Co-authored-by: Yoshiya Hinosawa <stibium121@gmail.com>
Diffstat (limited to 'cli/tsc/dts/lib.deno.ns.d.ts')
-rw-r--r--cli/tsc/dts/lib.deno.ns.d.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts
index a7d6adab8..0247eda9c 100644
--- a/cli/tsc/dts/lib.deno.ns.d.ts
+++ b/cli/tsc/dts/lib.deno.ns.d.ts
@@ -4240,6 +4240,14 @@ declare namespace Deno {
*
* @default {4} */
depth?: number;
+ /** The maximum length for an inspection to take up a single line.
+ *
+ * @default {80} */
+ breakLength?: number;
+ /** Whether or not to escape sequences.
+ *
+ * @default {true} */
+ escapeSequences?: boolean;
/** The maximum number of iterable entries to print.
*
* @default {100} */