@types/node 6.0.56 → 6.0.60

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.
@@ -5,12 +5,11 @@
5
5
  This package contains type definitions for Node.js (http://nodejs.org/).
6
6
 
7
7
  # Details
8
- Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/node
8
+ Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/node/v6
9
9
 
10
10
  Additional Details
11
- * Last updated: Tue, 03 Jan 2017 18:25:05 GMT
12
- * Library Dependencies: none
13
- * Module Dependencies: child_process, crypto, events, http, net, readline, stream, tls
11
+ * Last updated: Wed, 11 Jan 2017 02:14:38 GMT
12
+ * Dependencies: events, net, stream, child_process, tls, http, readline, crypto
14
13
  * Global values: Buffer, NodeJS, SlowBuffer, __dirname, __filename, clearImmediate, clearInterval, clearTimeout, console, exports, global, module, process, require, setImmediate, setInterval, setTimeout
15
14
 
16
15
  # Credits
@@ -284,6 +284,7 @@ declare namespace NodeJS {
284
284
  setEncoding(encoding: string | null): void;
285
285
  pause(): ReadableStream;
286
286
  resume(): ReadableStream;
287
+ isPaused(): boolean;
287
288
  pipe<T extends WritableStream>(destination: T, options?: { end?: boolean; }): T;
288
289
  unpipe<T extends WritableStream>(destination?: T): void;
289
290
  unshift(chunk: string): void;
@@ -2661,14 +2662,7 @@ declare module "path" {
2661
2662
  * Join all arguments together and normalize the resulting path.
2662
2663
  * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown.
2663
2664
  *
2664
- * @param paths string paths to join.
2665
- */
2666
- export function join(...paths: any[]): string;
2667
- /**
2668
- * Join all arguments together and normalize the resulting path.
2669
- * Arguments must be strings. In v0.8, non-string arguments were silently ignored. In v0.10 and up, an exception is thrown.
2670
- *
2671
- * @param paths string paths to join.
2665
+ * @param paths paths to join.
2672
2666
  */
2673
2667
  export function join(...paths: string[]): string;
2674
2668
  /**
@@ -3349,6 +3343,7 @@ declare module "stream" {
3349
3343
  setEncoding(encoding: string): void;
3350
3344
  pause(): Readable;
3351
3345
  resume(): Readable;
3346
+ isPaused(): boolean;
3352
3347
  pipe<T extends NodeJS.WritableStream>(destination: T, options?: { end?: boolean; }): T;
3353
3348
  unpipe<T extends NodeJS.WritableStream>(destination?: T): void;
3354
3349
  unshift(chunk: any): void;
@@ -3538,6 +3533,7 @@ declare module "stream" {
3538
3533
  setEncoding(encoding: string): void;
3539
3534
  pause(): Transform;
3540
3535
  resume(): Transform;
3536
+ isPaused(): boolean;
3541
3537
  pipe<T extends NodeJS.WritableStream>(destination: T, options?: { end?: boolean; }): T;
3542
3538
  unpipe<T extends NodeJS.WritableStream>(destination?: T): void;
3543
3539
  unshift(chunk: any): void;
@@ -3967,7 +3963,7 @@ declare module "v8" {
3967
3963
  Enabled = 1
3968
3964
  }
3969
3965
 
3970
- interface HeapInfo {
3966
+ interface HeapInfo {
3971
3967
  total_heap_size: number;
3972
3968
  total_heap_size_executable: number;
3973
3969
  total_physical_size: number;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/node",
3
- "version": "6.0.56",
3
+ "version": "6.0.60",
4
4
  "description": "TypeScript definitions for Node.js",
5
5
  "license": "MIT",
6
6
  "author": "Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>",
@@ -12,6 +12,6 @@
12
12
  "scripts": {},
13
13
  "dependencies": {},
14
14
  "peerDependencies": {},
15
- "typesPublisherContentHash": "3553779758ee6d342e9153a8479bee63b5b815140da641ab6a9bee690bbea463",
15
+ "typesPublisherContentHash": "9594ab58c66715bbfaed7ef0fc87042d17a4fe5eadafcec98bb3cbbcbb4f7efa",
16
16
  "typeScriptVersion": "2.0"
17
17
  }
@@ -0,0 +1,85 @@
1
+ {
2
+ "name": "node",
3
+ "libraryName": "Node.js",
4
+ "sourceRepoURL": "https://www.github.com/DefinitelyTyped/DefinitelyTyped",
5
+ "data": {
6
+ "authors": "Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>",
7
+ "dependencies": {
8
+ "events": "*",
9
+ "net": "*",
10
+ "stream": "*",
11
+ "child_process": "*",
12
+ "tls": "*",
13
+ "http": "*",
14
+ "readline": "*",
15
+ "crypto": "*"
16
+ },
17
+ "libraryMajorVersion": 6,
18
+ "libraryMinorVersion": 0,
19
+ "typeScriptVersion": "2.0",
20
+ "libraryName": "Node.js",
21
+ "typingsPackageName": "node",
22
+ "projectName": "http://nodejs.org/",
23
+ "sourceRepoURL": "https://www.github.com/DefinitelyTyped/DefinitelyTyped",
24
+ "globals": [
25
+ "Buffer",
26
+ "NodeJS",
27
+ "SlowBuffer",
28
+ "__dirname",
29
+ "__filename",
30
+ "clearImmediate",
31
+ "clearInterval",
32
+ "clearTimeout",
33
+ "console",
34
+ "exports",
35
+ "global",
36
+ "module",
37
+ "process",
38
+ "require",
39
+ "setImmediate",
40
+ "setInterval",
41
+ "setTimeout"
42
+ ],
43
+ "declaredModules": [
44
+ "buffer",
45
+ "querystring",
46
+ "events",
47
+ "http",
48
+ "cluster",
49
+ "zlib",
50
+ "os",
51
+ "https",
52
+ "punycode",
53
+ "repl",
54
+ "readline",
55
+ "vm",
56
+ "child_process",
57
+ "url",
58
+ "dns",
59
+ "net",
60
+ "dgram",
61
+ "fs",
62
+ "path",
63
+ "string_decoder",
64
+ "tls",
65
+ "crypto",
66
+ "stream",
67
+ "util",
68
+ "assert",
69
+ "tty",
70
+ "domain",
71
+ "constants",
72
+ "process",
73
+ "v8",
74
+ "timers",
75
+ "console",
76
+ "_debugger"
77
+ ],
78
+ "files": [
79
+ "index.d.ts"
80
+ ],
81
+ "hasPackageJson": false,
82
+ "contentHash": "9594ab58c66715bbfaed7ef0fc87042d17a4fe5eadafcec98bb3cbbcbb4f7efa"
83
+ },
84
+ "isLatest": false
85
+ }
node/types-metadata.json DELETED
@@ -1,81 +0,0 @@
1
- {
2
- "authors": "Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>",
3
- "libraryDependencies": [],
4
- "moduleDependencies": [
5
- "child_process",
6
- "crypto",
7
- "events",
8
- "http",
9
- "net",
10
- "readline",
11
- "stream",
12
- "tls"
13
- ],
14
- "libraryMajorVersion": 6,
15
- "libraryMinorVersion": 0,
16
- "typeScriptVersion": "2.0",
17
- "libraryName": "Node.js",
18
- "typingsPackageName": "node",
19
- "projectName": "http://nodejs.org/",
20
- "sourceRepoURL": "https://www.github.com/DefinitelyTyped/DefinitelyTyped",
21
- "sourceBranch": "master",
22
- "globals": [
23
- "Buffer",
24
- "NodeJS",
25
- "SlowBuffer",
26
- "__dirname",
27
- "__filename",
28
- "clearImmediate",
29
- "clearInterval",
30
- "clearTimeout",
31
- "console",
32
- "exports",
33
- "global",
34
- "module",
35
- "process",
36
- "require",
37
- "setImmediate",
38
- "setInterval",
39
- "setTimeout"
40
- ],
41
- "declaredModules": [
42
- "buffer",
43
- "querystring",
44
- "events",
45
- "http",
46
- "cluster",
47
- "zlib",
48
- "os",
49
- "https",
50
- "punycode",
51
- "repl",
52
- "readline",
53
- "vm",
54
- "child_process",
55
- "url",
56
- "dns",
57
- "net",
58
- "dgram",
59
- "fs",
60
- "path",
61
- "string_decoder",
62
- "tls",
63
- "crypto",
64
- "stream",
65
- "util",
66
- "assert",
67
- "tty",
68
- "domain",
69
- "constants",
70
- "process",
71
- "v8",
72
- "timers",
73
- "console",
74
- "_debugger"
75
- ],
76
- "files": [
77
- "index.d.ts"
78
- ],
79
- "hasPackageJson": false,
80
- "contentHash": "3553779758ee6d342e9153a8479bee63b5b815140da641ab6a9bee690bbea463"
81
- }