]> git.kaiwu.me - njs.git/commitdiff
Types: added missing var "console" into njs_shell.
authorJakub Jirutka <jakub@jirutka.cz>
Sat, 24 Oct 2020 21:59:18 +0000 (23:59 +0200)
committerJakub Jirutka <jakub@jirutka.cz>
Sat, 24 Oct 2020 21:59:18 +0000 (23:59 +0200)
ts/njs_shell.d.ts

index 3a6aa5ed6c605656ff01e2aeb6ebeda04c23b39f..ce3e3148305ebdc6a1f179d087e750a7f6e42fa0 100644 (file)
@@ -7,3 +7,5 @@ interface Console {
     time(label?: NjsStringLike): void;
     timeEnd(label?: NjsStringLike): void;
 }
+
+declare const console: Console;