@types/node 14.18.28 → 14.18.29
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 v14.18/README.md +1 -1
- node v14.18/package.json +2 -2
- node v14.18/path.d.ts +2 -2
node v14.18/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/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Tue, 13 Sep 2022 22:32:57 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.29",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "89b1de87f12f717730d9d3f5e4aca6ac94e8894ba526f24e95a9c1da91c1179d",
|
|
224
224
|
"typeScriptVersion": "4.1"
|
|
225
225
|
}
|
node v14.18/path.d.ts
CHANGED
|
@@ -122,11 +122,11 @@ declare module 'path' {
|
|
|
122
122
|
/**
|
|
123
123
|
* The platform-specific file separator. '\\' or '/'.
|
|
124
124
|
*/
|
|
125
|
-
readonly sep:
|
|
125
|
+
readonly sep: '\\' | '/';
|
|
126
126
|
/**
|
|
127
127
|
* The platform-specific file delimiter. ';' or ':'.
|
|
128
128
|
*/
|
|
129
|
-
readonly delimiter:
|
|
129
|
+
readonly delimiter: ';' | ':';
|
|
130
130
|
/**
|
|
131
131
|
* Returns an object from a path string - the opposite of format().
|
|
132
132
|
*
|