@types/node 6.14.1 → 6.14.2
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 v6/README.md +1 -1
- node v6/index.d.ts +2 -2
- node v6/package.json +3 -3
node v6/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/v6
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated: Thu,
|
|
11
|
+
* Last updated: Thu, 15 Nov 2018 00:13:01 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: Buffer, NodeJS, SlowBuffer, Symbol, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
|
|
14
14
|
|
node v6/index.d.ts
CHANGED
|
@@ -3617,8 +3617,8 @@ declare module "crypto" {
|
|
|
3617
3617
|
export interface Signer extends NodeJS.WritableStream {
|
|
3618
3618
|
update(data: string | Buffer): Signer;
|
|
3619
3619
|
update(data: string | Buffer, input_encoding: Utf8AsciiLatin1Encoding): Signer;
|
|
3620
|
-
sign(private_key: string | { key: string; passphrase
|
|
3621
|
-
sign(private_key: string | { key: string; passphrase
|
|
3620
|
+
sign(private_key: string | { key: string; passphrase?: string }): Buffer;
|
|
3621
|
+
sign(private_key: string | { key: string; passphrase?: string }, output_format: HexBase64Latin1Encoding): string;
|
|
3622
3622
|
}
|
|
3623
3623
|
export function createVerify(algorith: string): Verify;
|
|
3624
3624
|
export interface Verify extends NodeJS.WritableStream {
|
node v6/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "6.14.
|
|
3
|
+
"version": "6.14.2",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -46,13 +46,13 @@
|
|
|
46
46
|
}
|
|
47
47
|
],
|
|
48
48
|
"main": "",
|
|
49
|
-
"types": "",
|
|
49
|
+
"types": "index",
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|
|
52
52
|
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {},
|
|
55
55
|
"dependencies": {},
|
|
56
|
-
"typesPublisherContentHash": "
|
|
56
|
+
"typesPublisherContentHash": "6128f926e178180ba9dc374b651798efe38dd29ffbb800aa0e11761d8f3ca1ac",
|
|
57
57
|
"typeScriptVersion": "2.0"
|
|
58
58
|
}
|