@types/node 14.17.21 → 14.17.22
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 v14.17/README.md +1 -1
- node v14.17/inspector.d.ts +8 -2
- node v14.17/package.json +2 -2
node v14.17/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for Node.js (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v14.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated: Tue,
|
|
11
|
+
* Last updated: Tue, 12 Oct 2021 17:31:34 GMT
|
|
12
12
|
* Dependencies: none
|
|
13
13
|
* Global values: `Buffer`, `__dirname`, `__filename`, `clearImmediate`, `clearInterval`, `clearTimeout`, `console`, `exports`, `global`, `module`, `process`, `queueMicrotask`, `require`, `setImmediate`, `setInterval`, `setTimeout`
|
|
14
14
|
|
node v14.17/inspector.d.ts
CHANGED
|
@@ -1910,11 +1910,17 @@ declare module 'inspector' {
|
|
|
1910
1910
|
|
|
1911
1911
|
/**
|
|
1912
1912
|
* Connects a session to the inspector back-end.
|
|
1913
|
-
* An exception will be thrown if there is already a connected session established either
|
|
1914
|
-
* through the API or by a front-end connected to the Inspector WebSocket port.
|
|
1915
1913
|
*/
|
|
1916
1914
|
connect(): void;
|
|
1917
1915
|
|
|
1916
|
+
/**
|
|
1917
|
+
* Connects a session to the main thread inspector back-end.
|
|
1918
|
+
* An exception will be thrown if this API was not called on a Worker
|
|
1919
|
+
* thread.
|
|
1920
|
+
* @since 12.11.0
|
|
1921
|
+
*/
|
|
1922
|
+
connectToMainThread(): void;
|
|
1923
|
+
|
|
1918
1924
|
/**
|
|
1919
1925
|
* Immediately close the session. All pending message callbacks will be called with an error.
|
|
1920
1926
|
* session.connect() will need to be called to be able to send messages again.
|
node v14.17/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "14.17.
|
|
3
|
+
"version": "14.17.22",
|
|
4
4
|
"description": "TypeScript definitions for Node.js",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -220,6 +220,6 @@
|
|
|
220
220
|
},
|
|
221
221
|
"scripts": {},
|
|
222
222
|
"dependencies": {},
|
|
223
|
-
"typesPublisherContentHash": "
|
|
223
|
+
"typesPublisherContentHash": "b1c48cbe49fcaee2fc94b06036c52a1afb306ed23937d651b45fbdb2d7288be7",
|
|
224
224
|
"typeScriptVersion": "3.7"
|
|
225
225
|
}
|