mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-16 23:10:29 +00:00
node: console.timeLog (#29600)
This commit is contained in:
Vendored
+4
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user