diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-04-28 20:11:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 20:11:50 +0200 |
commit | 6ee00e4da31ba040d63c756d9354391310d6f1a7 (patch) | |
tree | fc91e097f8da4270dcd734c9aa9a792c4a4d5628 /cli/js/lib.deno.ns.d.ts | |
parent | 678313b17677e012ba9a07aeca58af1aafbf4e8c (diff) |
refactor: change InspectOptions, make Deno.inspect stable (#4967)
Diffstat (limited to 'cli/js/lib.deno.ns.d.ts')
-rw-r--r-- | cli/js/lib.deno.ns.d.ts | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cli/js/lib.deno.ns.d.ts b/cli/js/lib.deno.ns.d.ts index 5defc5732..b73ad4c20 100644 --- a/cli/js/lib.deno.ns.d.ts +++ b/cli/js/lib.deno.ns.d.ts @@ -2326,16 +2326,10 @@ declare namespace Deno { export const Signal: typeof MacOSSignal | typeof LinuxSignal; interface InspectOptions { - showHidden?: boolean; depth?: number; - colors?: boolean; - indentLevel?: number; } - /** **UNSTABLE**: The exact form of the string output is under consideration - * and may change. - * - * Converts the input into a string that has the same format as printed by + /** Converts the input into a string that has the same format as printed by * `console.log()`. * * const obj = {}; |