summaryrefslogtreecommitdiff
path: root/cli/js/web/console.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-04-28 20:11:50 +0200
committerGitHub <noreply@github.com>2020-04-28 20:11:50 +0200
commit6ee00e4da31ba040d63c756d9354391310d6f1a7 (patch)
treefc91e097f8da4270dcd734c9aa9a792c4a4d5628 /cli/js/web/console.ts
parent678313b17677e012ba9a07aeca58af1aafbf4e8c (diff)
refactor: change InspectOptions, make Deno.inspect stable (#4967)
Diffstat (limited to 'cli/js/web/console.ts')
-rw-r--r--cli/js/web/console.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/js/web/console.ts b/cli/js/web/console.ts
index 4709697d2..1a0202ab8 100644
--- a/cli/js/web/console.ts
+++ b/cli/js/web/console.ts
@@ -6,9 +6,7 @@ import { PromiseState } from "./promise.ts";
type ConsoleContext = Set<unknown>;
type InspectOptions = Partial<{
- showHidden: boolean;
depth: number;
- colors: boolean;
indentLevel: number;
}>;