From: Jakub Jirutka Date: Sat, 24 Oct 2020 21:59:18 +0000 (+0200) Subject: Types: added missing var "console" into njs_shell. X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=9f23a9c5beff2e598bb8ff968925e5f0539462d4;p=njs.git Types: added missing var "console" into njs_shell. --- 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;