@types/node 16.10.4 → 16.10.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.
Files changed (3) hide show
  1. node/README.md +1 -1
  2. node/fs.d.ts +2 -0
  3. node/package.json +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: Tue, 12 Oct 2021 17:31:32 GMT
11
+ * Last updated: Wed, 13 Oct 2021 06:31:21 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
@@ -768,6 +768,7 @@ declare module 'fs' {
768
768
  * @deprecated Since v0.4.7
769
769
  */
770
770
  export function lchmod(path: PathLike, mode: Mode, callback: NoParamCallback): void;
771
+ /** @deprecated */
771
772
  export namespace lchmod {
772
773
  /**
773
774
  * Asynchronous lchmod(2) - Change permissions of a file. Does not dereference symbolic links.
@@ -3000,6 +3001,7 @@ declare module 'fs' {
3000
3001
  * @deprecated Since v1.0.0 - Use {@link stat} or {@link access} instead.
3001
3002
  */
3002
3003
  export function exists(path: PathLike, callback: (exists: boolean) => void): void;
3004
+ /** @deprecated */
3003
3005
  export namespace exists {
3004
3006
  /**
3005
3007
  * @param path A path to a file or directory. If a URL is provided, it must use the `file:` protocol.
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "16.10.4",
3
+ "version": "16.10.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",
@@ -225,6 +225,6 @@
225
225
  },
226
226
  "scripts": {},
227
227
  "dependencies": {},
228
- "typesPublisherContentHash": "f426a2d453bb541f26a4c6bf90b1ba25594a6631b19e6f6adcf812e6794d4e24",
228
+ "typesPublisherContentHash": "fe541b923b64afaeab70fd1064a03bac71f204c391000ff177bcf6af175d390a",
229
229
  "typeScriptVersion": "3.7"
230
230
  }