@types/node 18.6.2 → 18.6.5
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/README.md +1 -1
- node/buffer.d.ts +1 -1
- node/events.d.ts +3 -3
- node/fs.d.ts +1 -1
- node/http2.d.ts +1 -1
- node/net.d.ts +2 -2
- node/package.json +2 -2
- node/path.d.ts +30 -19
- node/process.d.ts +1 -1
- node/vm.d.ts +1 -1
- node/worker_threads.d.ts +2 -2
node/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Mon, 08 Aug 2022 17:02:19 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
|
|
14
14
|
|
node/buffer.d.ts
CHANGED
|
@@ -480,7 +480,7 @@ declare module 'buffer' {
|
|
|
480
480
|
* if `size` is 0.
|
|
481
481
|
*
|
|
482
482
|
* The underlying memory for `Buffer` instances created in this way is _not_
|
|
483
|
-
* _initialized_. The contents of the newly created `Buffer` are unknown
|
|
483
|
+
* _initialized_. The contents of the newly created `Buffer` are unknown and _may contain sensitive data_. Use `buf.fill(0)` to initialize
|
|
484
484
|
* such `Buffer` instances with zeroes.
|
|
485
485
|
*
|
|
486
486
|
* When using `Buffer.allocUnsafe()` to allocate new `Buffer` instances,
|
node/events.d.ts
CHANGED
|
@@ -393,8 +393,8 @@ declare module 'events' {
|
|
|
393
393
|
* called multiple times to remove each instance.
|
|
394
394
|
*
|
|
395
395
|
* Once an event is emitted, all listeners attached to it at the
|
|
396
|
-
* time of emitting are called in order. This implies that any`removeListener()` or `removeAllListeners()` calls _after_ emitting
|
|
397
|
-
* not remove them from`emit()` in progress. Subsequent events behave as expected.
|
|
396
|
+
* time of emitting are called in order. This implies that any`removeListener()` or `removeAllListeners()` calls _after_ emitting and _before_ the last listener finishes execution
|
|
397
|
+
* will not remove them from`emit()` in progress. Subsequent events behave as expected.
|
|
398
398
|
*
|
|
399
399
|
* ```js
|
|
400
400
|
* const myEmitter = new MyEmitter();
|
|
@@ -596,7 +596,7 @@ declare module 'events' {
|
|
|
596
596
|
*/
|
|
597
597
|
prependListener(eventName: string | symbol, listener: (...args: any[]) => void): this;
|
|
598
598
|
/**
|
|
599
|
-
* Adds a **one-time**`listener` function for the event named `eventName` to
|
|
599
|
+
* Adds a **one-time**`listener` function for the event named `eventName` to the _beginning_ of the listeners array. The next time `eventName` is triggered, this
|
|
600
600
|
* listener is removed, and then invoked.
|
|
601
601
|
*
|
|
602
602
|
* ```js
|
node/fs.d.ts
CHANGED
|
@@ -1395,7 +1395,7 @@ declare module 'fs' {
|
|
|
1395
1395
|
* Use `fs.rm(path, { recursive: true, force: true })` instead.
|
|
1396
1396
|
*
|
|
1397
1397
|
* If `true`, perform a recursive directory removal. In
|
|
1398
|
-
* recursive mode
|
|
1398
|
+
* recursive mode, operations are retried on failure.
|
|
1399
1399
|
* @default false
|
|
1400
1400
|
*/
|
|
1401
1401
|
recursive?: boolean | undefined;
|
node/http2.d.ts
CHANGED
|
@@ -1642,7 +1642,7 @@ declare module 'http2' {
|
|
|
1642
1642
|
* be called multiple times to provide successive parts of the body.
|
|
1643
1643
|
*
|
|
1644
1644
|
* In the `http` module, the response body is omitted when the
|
|
1645
|
-
* request is a HEAD request. Similarly, the `204` and `304`
|
|
1645
|
+
* request is a HEAD request. Similarly, the `204` and `304` responses _must not_ include a message body.
|
|
1646
1646
|
*
|
|
1647
1647
|
* `chunk` can be a string or a buffer. If `chunk` is a string,
|
|
1648
1648
|
* the second parameter specifies how to encode it into a byte stream.
|
node/net.d.ts
CHANGED
|
@@ -205,7 +205,7 @@ declare module 'net' {
|
|
|
205
205
|
*/
|
|
206
206
|
unref(): this;
|
|
207
207
|
/**
|
|
208
|
-
* Opposite of `unref()`, calling `ref()` on a previously `unref`ed socket
|
|
208
|
+
* Opposite of `unref()`, calling `ref()` on a previously `unref`ed socket will _not_ let the program exit if it's the only socket left (the default behavior).
|
|
209
209
|
* If the socket is `ref`ed calling `ref` again will have no effect.
|
|
210
210
|
* @since v0.9.1
|
|
211
211
|
* @return The socket itself.
|
|
@@ -504,7 +504,7 @@ declare module 'net' {
|
|
|
504
504
|
*/
|
|
505
505
|
getConnections(cb: (error: Error | null, count: number) => void): void;
|
|
506
506
|
/**
|
|
507
|
-
* Opposite of `unref()`, calling `ref()` on a previously `unref`ed server
|
|
507
|
+
* Opposite of `unref()`, calling `ref()` on a previously `unref`ed server will _not_ let the program exit if it's the only server left (the default behavior).
|
|
508
508
|
* If the server is `ref`ed calling `ref()` again will have no effect.
|
|
509
509
|
* @since v0.9.1
|
|
510
510
|
*/
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.6.
|
|
3
|
+
"version": "18.6.5",
|
|
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": "4d8149f864b93846526dbd58e91ce534c655f81b4e3a0c22cd7d03534790d99d",
|
|
224
224
|
"typeScriptVersion": "4.0"
|
|
225
225
|
}
|
node/path.d.ts
CHANGED
|
@@ -69,18 +69,19 @@ declare module 'path' {
|
|
|
69
69
|
* Normalize a string path, reducing '..' and '.' parts.
|
|
70
70
|
* When multiple slashes are found, they're replaced by a single one; when the path contains a trailing slash, it is preserved. On Windows backslashes are used.
|
|
71
71
|
*
|
|
72
|
-
* @param
|
|
72
|
+
* @param path string path to normalize.
|
|
73
|
+
* @throws {TypeError} if `path` is not a string.
|
|
73
74
|
*/
|
|
74
|
-
normalize(
|
|
75
|
+
normalize(path: string): string;
|
|
75
76
|
/**
|
|
76
77
|
* Join all arguments together and normalize the resulting path.
|
|
77
|
-
* Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown.
|
|
78
78
|
*
|
|
79
79
|
* @param paths paths to join.
|
|
80
|
+
* @throws {TypeError} if any of the path segments is not a string.
|
|
80
81
|
*/
|
|
81
82
|
join(...paths: string[]): string;
|
|
82
83
|
/**
|
|
83
|
-
* The right-most parameter is considered {to}.
|
|
84
|
+
* The right-most parameter is considered {to}. Other parameters are considered an array of {from}.
|
|
84
85
|
*
|
|
85
86
|
* Starting from leftmost {from} parameter, resolves {to} to an absolute path.
|
|
86
87
|
*
|
|
@@ -89,41 +90,50 @@ declare module 'path' {
|
|
|
89
90
|
* the current working directory is used as well. The resulting path is normalized,
|
|
90
91
|
* and trailing slashes are removed unless the path gets resolved to the root directory.
|
|
91
92
|
*
|
|
92
|
-
* @param
|
|
93
|
+
* @param paths A sequence of paths or path segments.
|
|
94
|
+
* @throws {TypeError} if any of the arguments is not a string.
|
|
93
95
|
*/
|
|
94
|
-
resolve(...
|
|
96
|
+
resolve(...paths: string[]): string;
|
|
95
97
|
/**
|
|
96
98
|
* Determines whether {path} is an absolute path. An absolute path will always resolve to the same location, regardless of the working directory.
|
|
97
99
|
*
|
|
100
|
+
* If the given {path} is a zero-length string, `false` will be returned.
|
|
101
|
+
*
|
|
98
102
|
* @param path path to test.
|
|
103
|
+
* @throws {TypeError} if `path` is not a string.
|
|
99
104
|
*/
|
|
100
|
-
isAbsolute(
|
|
105
|
+
isAbsolute(path: string): boolean;
|
|
101
106
|
/**
|
|
102
|
-
* Solve the relative path from {from} to {to}.
|
|
107
|
+
* Solve the relative path from {from} to {to} based on the current working directory.
|
|
103
108
|
* At times we have two absolute paths, and we need to derive the relative path from one to the other. This is actually the reverse transform of path.resolve.
|
|
109
|
+
*
|
|
110
|
+
* @throws {TypeError} if either `from` or `to` is not a string.
|
|
104
111
|
*/
|
|
105
112
|
relative(from: string, to: string): string;
|
|
106
113
|
/**
|
|
107
114
|
* Return the directory name of a path. Similar to the Unix dirname command.
|
|
108
115
|
*
|
|
109
|
-
* @param
|
|
116
|
+
* @param path the path to evaluate.
|
|
117
|
+
* @throws {TypeError} if `path` is not a string.
|
|
110
118
|
*/
|
|
111
|
-
dirname(
|
|
119
|
+
dirname(path: string): string;
|
|
112
120
|
/**
|
|
113
121
|
* Return the last portion of a path. Similar to the Unix basename command.
|
|
114
122
|
* Often used to extract the file name from a fully qualified path.
|
|
115
123
|
*
|
|
116
|
-
* @param
|
|
124
|
+
* @param path the path to evaluate.
|
|
117
125
|
* @param ext optionally, an extension to remove from the result.
|
|
126
|
+
* @throws {TypeError} if `path` is not a string or if `ext` is given and is not a string.
|
|
118
127
|
*/
|
|
119
|
-
basename(
|
|
128
|
+
basename(path: string, ext?: string): string;
|
|
120
129
|
/**
|
|
121
130
|
* Return the extension of the path, from the last '.' to end of string in the last portion of the path.
|
|
122
|
-
* If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string
|
|
131
|
+
* If there is no '.' in the last portion of the path or the first character of it is '.', then it returns an empty string.
|
|
123
132
|
*
|
|
124
|
-
* @param
|
|
133
|
+
* @param path the path to evaluate.
|
|
134
|
+
* @throws {TypeError} if `path` is not a string.
|
|
125
135
|
*/
|
|
126
|
-
extname(
|
|
136
|
+
extname(path: string): string;
|
|
127
137
|
/**
|
|
128
138
|
* The platform-specific file separator. '\\' or '/'.
|
|
129
139
|
*/
|
|
@@ -135,15 +145,16 @@ declare module 'path' {
|
|
|
135
145
|
/**
|
|
136
146
|
* Returns an object from a path string - the opposite of format().
|
|
137
147
|
*
|
|
138
|
-
* @param
|
|
148
|
+
* @param path path to evaluate.
|
|
149
|
+
* @throws {TypeError} if `path` is not a string.
|
|
139
150
|
*/
|
|
140
|
-
parse(
|
|
151
|
+
parse(path: string): ParsedPath;
|
|
141
152
|
/**
|
|
142
153
|
* Returns a path string from an object - the opposite of parse().
|
|
143
154
|
*
|
|
144
|
-
* @param
|
|
155
|
+
* @param pathObject path to evaluate.
|
|
145
156
|
*/
|
|
146
|
-
format(
|
|
157
|
+
format(pathObject: FormatInputPathObject): string;
|
|
147
158
|
/**
|
|
148
159
|
* On Windows systems only, returns an equivalent namespace-prefixed path for the given path.
|
|
149
160
|
* If path is not a string, path will be returned without modifications.
|
node/process.d.ts
CHANGED
|
@@ -590,7 +590,7 @@ declare module 'process' {
|
|
|
590
590
|
*
|
|
591
591
|
* The reason this is problematic is because writes to `process.stdout` in Node.js
|
|
592
592
|
* are sometimes _asynchronous_ and may occur over multiple ticks of the Node.js
|
|
593
|
-
* event loop. Calling `process.exit()`, however, forces the process to
|
|
593
|
+
* event loop. Calling `process.exit()`, however, forces the process to exit _before_ those additional writes to `stdout` can be performed.
|
|
594
594
|
*
|
|
595
595
|
* Rather than calling `process.exit()` directly, the code _should_ set the`process.exitCode` and allow the process to exit naturally by avoiding
|
|
596
596
|
* scheduling any additional work for the event loop:
|
node/vm.d.ts
CHANGED
|
@@ -223,7 +223,7 @@ declare module 'vm' {
|
|
|
223
223
|
runInNewContext(contextObject?: Context, options?: RunningScriptOptions): any;
|
|
224
224
|
/**
|
|
225
225
|
* Runs the compiled code contained by the `vm.Script` within the context of the
|
|
226
|
-
* current `global` object. Running code does not have access to local scope,
|
|
226
|
+
* current `global` object. Running code does not have access to local scope, but _does_ have access to the current `global` object.
|
|
227
227
|
*
|
|
228
228
|
* The following example compiles code that increments a `global` variable then
|
|
229
229
|
* executes that code multiple times:
|
node/worker_threads.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ declare module 'worker_threads' {
|
|
|
175
175
|
*/
|
|
176
176
|
postMessage(value: any, transferList?: ReadonlyArray<TransferListItem>): void;
|
|
177
177
|
/**
|
|
178
|
-
* Opposite of `unref()`. Calling `ref()` on a previously `unref()`ed port
|
|
178
|
+
* Opposite of `unref()`. Calling `ref()` on a previously `unref()`ed port does _not_ let the program exit if it's the only active handle left (the default
|
|
179
179
|
* behavior). If the port is `ref()`ed, calling `ref()` again has no effect.
|
|
180
180
|
*
|
|
181
181
|
* If listeners are attached or removed using `.on('message')`, the port
|
|
@@ -400,7 +400,7 @@ declare module 'worker_threads' {
|
|
|
400
400
|
*/
|
|
401
401
|
postMessage(value: any, transferList?: ReadonlyArray<TransferListItem>): void;
|
|
402
402
|
/**
|
|
403
|
-
* Opposite of `unref()`, calling `ref()` on a previously `unref()`ed worker
|
|
403
|
+
* Opposite of `unref()`, calling `ref()` on a previously `unref()`ed worker does _not_ let the program exit if it's the only active handle left (the default
|
|
404
404
|
* behavior). If the worker is `ref()`ed, calling `ref()` again has
|
|
405
405
|
* no effect.
|
|
406
406
|
* @since v10.5.0
|