@types/node 10.14.16 → 10.14.17
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 v10/README.md +1 -1
- node v10/crypto.d.ts +4 -4
- node v10/package.json +2 -2
node v10/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/v10
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Fri, 30 Aug 2019 05:19:14 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node v10/crypto.d.ts
CHANGED
|
@@ -34,13 +34,13 @@ declare module "crypto" {
|
|
|
34
34
|
type HexBase64BinaryEncoding = "binary" | "base64" | "hex";
|
|
35
35
|
type ECDHKeyFormat = "compressed" | "uncompressed" | "hybrid";
|
|
36
36
|
|
|
37
|
-
interface Hash extends
|
|
37
|
+
interface Hash extends stream.Transform {
|
|
38
38
|
update(data: string | Buffer | NodeJS.TypedArray | DataView): Hash;
|
|
39
39
|
update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hash;
|
|
40
40
|
digest(): Buffer;
|
|
41
41
|
digest(encoding: HexBase64Latin1Encoding): string;
|
|
42
42
|
}
|
|
43
|
-
interface Hmac extends
|
|
43
|
+
interface Hmac extends stream.Transform {
|
|
44
44
|
update(data: string | Buffer | NodeJS.TypedArray | DataView): Hmac;
|
|
45
45
|
update(data: string, input_encoding: Utf8AsciiLatin1Encoding): Hmac;
|
|
46
46
|
digest(): Buffer;
|
|
@@ -65,7 +65,7 @@ declare module "crypto" {
|
|
|
65
65
|
function createCipheriv(algorithm: CipherGCMTypes, key: string | Buffer | NodeJS.TypedArray | DataView, iv: string | Buffer | NodeJS.TypedArray | DataView, options?: CipherGCMOptions): CipherGCM;
|
|
66
66
|
function createCipheriv(algorithm: string, key: string | Buffer | NodeJS.TypedArray | DataView, iv: string | Buffer | NodeJS.TypedArray | DataView, options?: stream.TransformOptions): Cipher;
|
|
67
67
|
|
|
68
|
-
interface Cipher extends
|
|
68
|
+
interface Cipher extends stream.Transform {
|
|
69
69
|
update(data: string | Buffer | NodeJS.TypedArray | DataView): Buffer;
|
|
70
70
|
update(data: string, input_encoding: Utf8AsciiBinaryEncoding): Buffer;
|
|
71
71
|
update(data: Buffer | NodeJS.TypedArray | DataView, output_encoding: HexBase64BinaryEncoding): string;
|
|
@@ -107,7 +107,7 @@ declare module "crypto" {
|
|
|
107
107
|
): DecipherGCM;
|
|
108
108
|
function createDecipheriv(algorithm: string, key: string | Buffer | NodeJS.TypedArray | DataView, iv: string | Buffer | NodeJS.TypedArray | DataView, options?: stream.TransformOptions): Decipher;
|
|
109
109
|
|
|
110
|
-
interface Decipher extends
|
|
110
|
+
interface Decipher extends stream.Transform {
|
|
111
111
|
update(data: Buffer | NodeJS.TypedArray | DataView): Buffer;
|
|
112
112
|
update(data: string, input_encoding: HexBase64BinaryEncoding): Buffer;
|
|
113
113
|
update(data: Buffer | NodeJS.TypedArray | DataView, input_encoding: any, output_encoding: Utf8AsciiBinaryEncoding): string;
|
node v10/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "10.14.
|
|
3
|
+
"version": "10.14.17",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -196,6 +196,6 @@
|
|
|
196
196
|
},
|
|
197
197
|
"scripts": {},
|
|
198
198
|
"dependencies": {},
|
|
199
|
-
"typesPublisherContentHash": "
|
|
199
|
+
"typesPublisherContentHash": "d3e95553355dfc82d32ed68791ee688eeb3df00775159bb930355642147587b1",
|
|
200
200
|
"typeScriptVersion": "2.0"
|
|
201
201
|
}
|