@types/node 18.11.7 → 18.11.8

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 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, 26 Oct 2022 20:32:58 GMT
11
+ * Last updated: Sun, 30 Oct 2022 19:32:58 GMT
12
12
  * Dependencies: none
13
13
  * Global values: `AbortController`, `AbortSignal`, `__dirname`, `__filename`, `console`, `exports`, `gc`, `global`, `module`, `process`, `require`, `structuredClone`
14
14
 
node/crypto.d.ts CHANGED
@@ -3417,7 +3417,7 @@ declare module 'crypto' {
3417
3417
  interface CheckPrimeOptions {
3418
3418
  /**
3419
3419
  * The number of Miller-Rabin probabilistic primality iterations to perform.
3420
- * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most 2-64 for random input.
3420
+ * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most `2**-64` for random input.
3421
3421
  * Care must be used when selecting a number of checks.
3422
3422
  * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details.
3423
3423
  *
node/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "18.11.7",
3
+ "version": "18.11.8",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
6
6
  "license": "MIT",
@@ -227,6 +227,6 @@
227
227
  },
228
228
  "scripts": {},
229
229
  "dependencies": {},
230
- "typesPublisherContentHash": "e64a34cfa8ad95a9b0e877bc576e260483e6152920c5641be7813e087342864a",
230
+ "typesPublisherContentHash": "a23a6d5ceb48ac0215ccd7cba47e75f2a3ae678b228d576c89294138777a2847",
231
231
  "typeScriptVersion": "4.1"
232
232
  }
node/ts4.8/crypto.d.ts CHANGED
@@ -3417,7 +3417,7 @@ declare module 'crypto' {
3417
3417
  interface CheckPrimeOptions {
3418
3418
  /**
3419
3419
  * The number of Miller-Rabin probabilistic primality iterations to perform.
3420
- * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most 2-64 for random input.
3420
+ * When the value is 0 (zero), a number of checks is used that yields a false positive rate of at most `2**-64` for random input.
3421
3421
  * Care must be used when selecting a number of checks.
3422
3422
  * Refer to the OpenSSL documentation for the BN_is_prime_ex function nchecks options for more details.
3423
3423
  *