@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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/fs.d.ts +2 -2
  3. 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: Thu, 26 Aug 2021 01:01:28 GMT
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 romises.opendir}.
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 romises.opendir}.
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.2",
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": "e69ff975ff05f7fa6ee5e27b53994fc27f754f5397951611c387e09a08af0ce1",
233
+ "typesPublisherContentHash": "c649f6c0ebc29b7202ead86b327969377b2869ebb8c47a3ba764e5dc0cd00bdc",
234
234
  "typeScriptVersion": "3.7"
235
235
  }