@types/node 8.10.5 → 8.10.6
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 v8/README.md +1 -1
- node v8/index.d.ts +3 -3
- node v8/package.json +2 -2
node v8/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://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v8
|
|
9
9
|
|
|
10
10
|
Additional Details
|
|
11
|
-
* Last updated: Tue, 10 Apr 2018 17:
|
|
11
|
+
* Last updated: Tue, 10 Apr 2018 17:32:37 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 v8/index.d.ts
CHANGED
|
@@ -1992,10 +1992,10 @@ declare module "vm" {
|
|
|
1992
1992
|
}
|
|
1993
1993
|
export function createContext(sandbox?: Context): Context;
|
|
1994
1994
|
export function isContext(sandbox: Context): boolean;
|
|
1995
|
-
export function runInContext(code: string, contextifiedSandbox: Context, options?: RunningScriptOptions): any;
|
|
1995
|
+
export function runInContext(code: string, contextifiedSandbox: Context, options?: RunningScriptOptions | string): any;
|
|
1996
1996
|
export function runInDebugContext(code: string): any;
|
|
1997
|
-
export function runInNewContext(code: string, sandbox?: Context, options?: RunningScriptOptions): any;
|
|
1998
|
-
export function runInThisContext(code: string, options?: RunningScriptOptions): any;
|
|
1997
|
+
export function runInNewContext(code: string, sandbox?: Context, options?: RunningScriptOptions | string): any;
|
|
1998
|
+
export function runInThisContext(code: string, options?: RunningScriptOptions | string): any;
|
|
1999
1999
|
}
|
|
2000
2000
|
|
|
2001
2001
|
declare module "child_process" {
|
node v8/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "8.10.
|
|
3
|
+
"version": "8.10.6",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"contributors": [
|
|
@@ -110,6 +110,6 @@
|
|
|
110
110
|
},
|
|
111
111
|
"scripts": {},
|
|
112
112
|
"dependencies": {},
|
|
113
|
-
"typesPublisherContentHash": "
|
|
113
|
+
"typesPublisherContentHash": "af19437943163eed0efc36bb3e942ebc887d4a521ef933615af19cb16919fc1d",
|
|
114
114
|
"typeScriptVersion": "2.1"
|
|
115
115
|
}
|