@types/node 12.12.49 → 12.12.50
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 v12.12/README.md +1 -1
- node v12.12/globals.d.ts +6 -0
- node v12.12/package.json +2 -2
node v12.12/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/v12.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Fri, 10 Jul 2020
|
|
11
|
+
* Last updated: Fri, 10 Jul 2020 16:11:12 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `NodeJS`, `Symbol`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v12.12/globals.d.ts
CHANGED
|
@@ -1162,6 +1162,12 @@ declare namespace NodeJS {
|
|
|
1162
1162
|
loaded: boolean;
|
|
1163
1163
|
parent: Module | null;
|
|
1164
1164
|
children: Module[];
|
|
1165
|
+
/**
|
|
1166
|
+
* @since 11.14.0
|
|
1167
|
+
*
|
|
1168
|
+
* The directory name of the module. This is usually the same as the path.dirname() of the module.id.
|
|
1169
|
+
*/
|
|
1170
|
+
path: string;
|
|
1165
1171
|
paths: string[];
|
|
1166
1172
|
|
|
1167
1173
|
constructor(id: string, parent?: Module);
|
node v12.12/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.12.
|
|
3
|
+
"version": "12.12.50",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -241,6 +241,6 @@
|
|
|
241
241
|
},
|
|
242
242
|
"scripts": {},
|
|
243
243
|
"dependencies": {},
|
|
244
|
-
"typesPublisherContentHash": "
|
|
244
|
+
"typesPublisherContentHash": "9c2204b77cf612d057b6971cfbf8892b61d137dc013a2f0db5ed88acd2e0d75d",
|
|
245
245
|
"typeScriptVersion": "3.0"
|
|
246
246
|
}
|