@types/node 8.10.38 → 8.10.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- node v8/README.md +1 -1
- node v8/index.d.ts +18 -1
- node v8/package.json +2 -2
node v8/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v8
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 18 Dec 2018 21:35:10 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, SlowBuffer, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node v8/index.d.ts
CHANGED
|
@@ -32,15 +32,32 @@
|
|
|
32
32
|
interface Console {
|
|
33
33
|
Console: NodeJS.ConsoleConstructor;
|
|
34
34
|
assert(value: any, message?: string, ...optionalParams: any[]): void;
|
|
35
|
-
|
|
35
|
+
clear(): void;
|
|
36
|
+
count(label?: string): void;
|
|
37
|
+
countReset(label?: string): void;
|
|
36
38
|
debug(message?: any, ...optionalParams: any[]): void;
|
|
39
|
+
dir(obj: any, options?: NodeJS.InspectOptions): void;
|
|
37
40
|
error(message?: any, ...optionalParams: any[]): void;
|
|
41
|
+
group(...label: any[]): void;
|
|
42
|
+
groupCollapsed(): void;
|
|
43
|
+
groupEnd(): void;
|
|
38
44
|
info(message?: any, ...optionalParams: any[]): void;
|
|
39
45
|
log(message?: any, ...optionalParams: any[]): void;
|
|
40
46
|
time(label: string): void;
|
|
41
47
|
timeEnd(label: string): void;
|
|
42
48
|
trace(message?: any, ...optionalParams: any[]): void;
|
|
43
49
|
warn(message?: any, ...optionalParams: any[]): void;
|
|
50
|
+
|
|
51
|
+
// --- Inspector mode only ---
|
|
52
|
+
/** @deprecated Use console.timeStamp() instead. */
|
|
53
|
+
markTimeline(label?: string): void;
|
|
54
|
+
profile(label?: string): void;
|
|
55
|
+
profileEnd(label?: string): void;
|
|
56
|
+
timeStamp(label?: string): void;
|
|
57
|
+
/** @deprecated Use console.time() instead. */
|
|
58
|
+
timeline(label?: string): void;
|
|
59
|
+
/** @deprecated Use console.timeEnd() instead. */
|
|
60
|
+
timelineEnd(label?: string): void;
|
|
44
61
|
}
|
|
45
62
|
|
|
46
63
|
interface Error {
|
node v8/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.39",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -123,6 +123,6 @@
|
|
|
123
123
|
},
|
|
124
124
|
"scripts": {},
|
|
125
125
|
"dependencies": {},
|
|
126
|
-
"typesPublisherContentHash": "
|
|
126
|
+
"typesPublisherContentHash": "d055b62a5bb5517a995893a449706ba24e92c4413d1a5d59c0a744c2bfb3d4de",
|
|
127
127
|
"typeScriptVersion": "2.1"
|
|
128
128
|
}
|