Upstream repo SYNCHRONISATION

This commit is contained in:
Hinell
2017-01-13 01:09:19 +03:00
526 changed files with 40058 additions and 23457 deletions
+4 -3
View File
@@ -1,11 +1,11 @@
// Type definitions for Node.js v6.x
// Type definitions for Node.js v7.x
// Project: http://nodejs.org/
// Definitions by: Microsoft TypeScript <http://typescriptlang.org>, DefinitelyTyped <https://github.com/DefinitelyTyped/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/************************************************
* *
* Node.js v6.x API *
* Node.js v7.x API *
* *
************************************************/
@@ -619,6 +619,7 @@ declare module "http" {
headers?: { [key: string]: any };
auth?: string;
agent?: Agent | boolean;
timeout?: number;
}
export interface Server extends net.Server {
@@ -3955,7 +3956,7 @@ declare module "v8" {
physical_space_size: number;
}
const enum DoesZapCodeSpaceFlag {
enum DoesZapCodeSpaceFlag {
Disabled = 0,
Enabled = 1
}
+4
View File
@@ -846,6 +846,10 @@ namespace http_tests {
request.setNoDelay(true);
request.abort();
}
const options: http.RequestOptions = {
timeout: 30000
};
}
//////////////////////////////////////////////////////
+2 -1
View File
@@ -15,6 +15,7 @@
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
"forceConsistentCasingInFileNames": true,
"isolatedModules": true
}
}
+4121
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": false,
"baseUrl": "../../",
"typeRoots": [
"../../"
],
"types": [],
"paths": {
"node": ["node/v6"]
},
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"node-tests.ts"
]
}