@types/node 14.18.49 → 14.18.50
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 +4 -4
- node v14.18/package.json +2 -2
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: Sat, 10 Jun 2023
|
|
11
|
+
* Last updated: Sat, 10 Jun 2023 19:32:43 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
|
@@ -334,7 +334,7 @@ declare module 'crypto' {
|
|
|
334
334
|
function createPublicKey(key: PublicKeyInput | string | Buffer | KeyObject): KeyObject;
|
|
335
335
|
function createSecretKey(key: NodeJS.ArrayBufferView): KeyObject;
|
|
336
336
|
|
|
337
|
-
function createSign(algorithm: string, options?: stream.WritableOptions):
|
|
337
|
+
function createSign(algorithm: string, options?: stream.WritableOptions): Sign;
|
|
338
338
|
|
|
339
339
|
type DSAEncoding = 'der' | 'ieee-p1363';
|
|
340
340
|
|
|
@@ -358,11 +358,11 @@ declare module 'crypto' {
|
|
|
358
358
|
|
|
359
359
|
type KeyLike = string | Buffer | KeyObject;
|
|
360
360
|
|
|
361
|
-
class
|
|
361
|
+
class Sign extends stream.Writable {
|
|
362
362
|
private constructor();
|
|
363
363
|
|
|
364
|
-
update(data: BinaryLike):
|
|
365
|
-
update(data: string, input_encoding: Encoding):
|
|
364
|
+
update(data: BinaryLike): Sign;
|
|
365
|
+
update(data: string, input_encoding: Encoding): Sign;
|
|
366
366
|
sign(private_key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput): Buffer;
|
|
367
367
|
sign(
|
|
368
368
|
private_key: KeyLike | SignKeyObjectInput | SignPrivateKeyInput,
|
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.50",
|
|
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": "cf734852afa46af6833f8a06ccd5b00bd66d8f70ead26967cc5e99f8b1a1a4b1",
|
|
231
231
|
"typeScriptVersion": "4.3"
|
|
232
232
|
}
|