@types/node 16.7.2 → 16.7.3
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/fs.d.ts +2 -2
- node/package.json +2 -2
node/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 27 Aug 2021 15:01:22 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`
|
|
14
14
|
|
node/fs.d.ts
CHANGED
|
@@ -188,7 +188,7 @@ declare module 'fs' {
|
|
|
188
188
|
/**
|
|
189
189
|
* A class representing a directory stream.
|
|
190
190
|
*
|
|
191
|
-
* Created by {@link opendir}, {@link opendirSync}, or {@link
|
|
191
|
+
* Created by {@link opendir}, {@link opendirSync}, or {@link promises.opendir}.
|
|
192
192
|
*
|
|
193
193
|
* ```js
|
|
194
194
|
* import { opendir } from 'fs/promises';
|
|
@@ -208,7 +208,7 @@ declare module 'fs' {
|
|
|
208
208
|
*/
|
|
209
209
|
export class Dir implements AsyncIterable<Dirent> {
|
|
210
210
|
/**
|
|
211
|
-
* The read-only path of this directory as was provided to {@link opendir},{@link opendirSync}, or {@link
|
|
211
|
+
* The read-only path of this directory as was provided to {@link opendir}, {@link opendirSync}, or {@link promises.opendir}.
|
|
212
212
|
* @since v12.12.0
|
|
213
213
|
*/
|
|
214
214
|
readonly path: string;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "16.7.
|
|
3
|
+
"version": "16.7.3",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -230,6 +230,6 @@
|
|
|
230
230
|
},
|
|
231
231
|
"scripts": {},
|
|
232
232
|
"dependencies": {},
|
|
233
|
-
"typesPublisherContentHash": "
|
|
233
|
+
"typesPublisherContentHash": "c649f6c0ebc29b7202ead86b327969377b2869ebb8c47a3ba764e5dc0cd00bdc",
|
|
234
234
|
"typeScriptVersion": "3.7"
|
|
235
235
|
}
|