@types/node 16.11.15 → 16.11.16
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 v16.11/README.md +1 -1
- node v16.11/package.json +2 -2
- node v16.11/path.d.ts +8 -0
node v16.11/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v16.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Thu, 23 Dec 2021 04:01:24 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node v16.11/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.11.
|
|
3
|
+
"version": "16.11.16",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -225,6 +225,6 @@
|
|
|
225
225
|
},
|
|
226
226
|
"scripts": {},
|
|
227
227
|
"dependencies": {},
|
|
228
|
-
"typesPublisherContentHash": "
|
|
228
|
+
"typesPublisherContentHash": "e86b2a7107de88b91bff946703a28f4d2fd9dc56f59546517643d20973fd4496",
|
|
229
229
|
"typeScriptVersion": "3.8"
|
|
230
230
|
}
|
node v16.11/path.d.ts
CHANGED
|
@@ -170,3 +170,11 @@ declare module 'node:path' {
|
|
|
170
170
|
import path = require('path');
|
|
171
171
|
export = path;
|
|
172
172
|
}
|
|
173
|
+
declare module 'node:path/posix' {
|
|
174
|
+
import path = require('path/posix');
|
|
175
|
+
export = path;
|
|
176
|
+
}
|
|
177
|
+
declare module 'node:path/win32' {
|
|
178
|
+
import path = require('path/win32');
|
|
179
|
+
export = path;
|
|
180
|
+
}
|