@types/node 14.18.39 → 14.18.41
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 v14.18/README.md +1 -1
- node v14.18/crypto.d.ts +2 -2
- node v14.18/http2.d.ts +0 -1
- node v14.18/package.json +2 -2
- node v14.18/ts4.8/http2.d.ts +0 -1
node v14.18/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/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Sat, 25 Mar 2023 22:33:08 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `AbortController`, `AbortSignal`, `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.18/crypto.d.ts
CHANGED
|
@@ -518,8 +518,8 @@ declare module 'crypto' {
|
|
|
518
518
|
*/
|
|
519
519
|
disableEntropyCache?: boolean | undefined;
|
|
520
520
|
}
|
|
521
|
-
|
|
522
|
-
function randomUUID(options?: RandomUUIDOptions):
|
|
521
|
+
type UUID = `${string}-${string}-${string}-${string}-${string}`;
|
|
522
|
+
function randomUUID(options?: RandomUUIDOptions): UUID;
|
|
523
523
|
|
|
524
524
|
interface ScryptOptions {
|
|
525
525
|
cost?: number | undefined;
|
node v14.18/http2.d.ts
CHANGED
|
@@ -441,7 +441,6 @@ declare module 'http2' {
|
|
|
441
441
|
settings?: Settings | undefined;
|
|
442
442
|
|
|
443
443
|
selectPadding?(frameLen: number, maxFrameLen: number): number;
|
|
444
|
-
createConnection?(authority: url.URL, option: SessionOptions): stream.Duplex;
|
|
445
444
|
}
|
|
446
445
|
|
|
447
446
|
export interface ClientSessionOptions extends SessionOptions {
|
node v14.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.18.
|
|
3
|
+
"version": "14.18.41",
|
|
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": "
|
|
230
|
+
"typesPublisherContentHash": "4bbd367d005dfb1adc290aaa160c13e4ba939f435a9f182aae52222a71ab0ca4",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|
node v14.18/ts4.8/http2.d.ts
CHANGED
|
@@ -441,7 +441,6 @@ declare module 'http2' {
|
|
|
441
441
|
settings?: Settings | undefined;
|
|
442
442
|
|
|
443
443
|
selectPadding?(frameLen: number, maxFrameLen: number): number;
|
|
444
|
-
createConnection?(authority: url.URL, option: SessionOptions): stream.Duplex;
|
|
445
444
|
}
|
|
446
445
|
|
|
447
446
|
export interface ClientSessionOptions extends SessionOptions {
|