@types/node 12.7.2 → 12.7.3
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 +1 -1
- node/crypto.d.ts +4 -4
- node/package.json +2 -2
node/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (http://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:
|
|
11
|
+
* Last updated: Fri, 30 Aug 2019 05:19:10 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, queueMicrotask, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node/crypto.d.ts
CHANGED
|
@@ -118,14 +118,14 @@ declare module "crypto" {
|
|
|
118
118
|
type HexBase64BinaryEncoding = "binary" | "base64" | "hex";
|
|
119
119
|
type ECDHKeyFormat = "compressed" | "uncompressed" | "hybrid";
|
|
120
120
|
|
|
121
|
-
class Hash extends stream.
|
|
121
|
+
class Hash extends stream.Transform {
|
|
122
122
|
private constructor();
|
|
123
123
|
update(data: BinaryLike): Hash;
|
|
124
124
|
update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hash;
|
|
125
125
|
digest(): Buffer;
|
|
126
126
|
digest(encoding: HexBase64Latin1Encoding): string;
|
|
127
127
|
}
|
|
128
|
-
class Hmac extends stream.
|
|
128
|
+
class Hmac extends stream.Transform {
|
|
129
129
|
private constructor();
|
|
130
130
|
update(data: BinaryLike): Hmac;
|
|
131
131
|
update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hmac;
|
|
@@ -193,7 +193,7 @@ declare module "crypto" {
|
|
|
193
193
|
algorithm: string, key: CipherKey, iv: BinaryLike | null, options?: stream.TransformOptions
|
|
194
194
|
): Cipher;
|
|
195
195
|
|
|
196
|
-
class Cipher extends stream.
|
|
196
|
+
class Cipher extends stream.Transform {
|
|
197
197
|
private constructor();
|
|
198
198
|
update(data: BinaryLike): Buffer;
|
|
199
199
|
update(data: string, input_encoding: Utf8AsciiBinaryEncoding): Buffer;
|
|
@@ -234,7 +234,7 @@ declare module "crypto" {
|
|
|
234
234
|
): DecipherGCM;
|
|
235
235
|
function createDecipheriv(algorithm: string, key: BinaryLike, iv: BinaryLike | null, options?: stream.TransformOptions): Decipher;
|
|
236
236
|
|
|
237
|
-
class Decipher extends stream.
|
|
237
|
+
class Decipher extends stream.Transform {
|
|
238
238
|
private constructor();
|
|
239
239
|
update(data: Binary): Buffer;
|
|
240
240
|
update(data: string, input_encoding: HexBase64BinaryEncoding): Buffer;
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "12.7.
|
|
3
|
+
"version": "12.7.3",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -206,6 +206,6 @@
|
|
|
206
206
|
},
|
|
207
207
|
"scripts": {},
|
|
208
208
|
"dependencies": {},
|
|
209
|
-
"typesPublisherContentHash": "
|
|
209
|
+
"typesPublisherContentHash": "83b87121fc821ea62b5994fd27d6edd4007fcac0ad35716f9b0e488ad2855462",
|
|
210
210
|
"typeScriptVersion": "2.0"
|
|
211
211
|
}
|