@types/node 18.7.12 → 18.7.13

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/package.json +2 -2
  3. node/process.d.ts +1 -1
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: Wed, 24 Aug 2022 03:02:33 GMT
11
+ * Last updated: Wed, 24 Aug 2022 08:32:18 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
14
14
 
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "18.7.12",
3
+ "version": "18.7.13",
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": "9f3d791ffcdcd368ff62731a9a202e729c7045a2435b6a592d5925c90269dc47",
223
+ "typesPublisherContentHash": "25486c39271d0972bf5cd93fe21ef2423a533efc749c47d5f39973be04d2f89a",
224
224
  "typeScriptVersion": "4.0"
225
225
  }
node/process.d.ts CHANGED
@@ -97,7 +97,7 @@ declare module 'process' {
97
97
  type UncaughtExceptionListener = (error: Error, origin: UncaughtExceptionOrigin) => void;
98
98
  /**
99
99
  * Most of the time the unhandledRejection will be an Error, but this should not be relied upon
100
- * as *anything* can be thrown/rejected, it is therefore unsafe to assume the the value is an Error.
100
+ * as *anything* can be thrown/rejected, it is therefore unsafe to assume that the value is an Error.
101
101
  */
102
102
  type UnhandledRejectionListener = (reason: unknown, promise: Promise<unknown>) => void;
103
103
  type WarningListener = (warning: Error) => void;