diff --git a/types/node/index.d.ts b/types/node/index.d.ts index 5220eb8f5f..2296d085b9 100644 --- a/types/node/index.d.ts +++ b/types/node/index.d.ts @@ -108,6 +108,10 @@ interface Console { * Stops a timer that was previously started by calling {@link console.time()} and prints the result to `stdout`. */ timeEnd(label?: string): void; + /** + * For a timer that was previously started by calling {@link console.time()}, prints the elapsed time and other `data` arguments to `stdout`. + */ + timeLog(label: string, ...data: any[]): void; /** * Prints to `stderr` the string 'Trace :', followed by the {@link util.format()} formatted message and stack trace to the current position in the code. */