UNPKG

njs-types

Version:

TypeScript definitions for njs scripting language and nginx js modules.

12 lines (8 loc) 223 B
/// <reference path="index.d.ts" /> interface Console { log(...args: any[]): void; dump(...args: any[]): void; time(label?: string): void; timeEnd(label?: string): void; } declare const console: Console;