From 9f23a9c5beff2e598bb8ff968925e5f0539462d4 Mon Sep 17 00:00:00 2001 From: Jakub Jirutka Date: Sat, 24 Oct 2020 23:59:18 +0200 Subject: [PATCH] Types: added missing var "console" into njs_shell. --- ts/njs_shell.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ts/njs_shell.d.ts b/ts/njs_shell.d.ts index 3a6aa5ed..ce3e3148 100644 --- a/ts/njs_shell.d.ts +++ b/ts/njs_shell.d.ts @@ -7,3 +7,5 @@ interface Console { time(label?: NjsStringLike): void; timeEnd(label?: NjsStringLike): void; } + +declare const console: Console; -- 2.47.3