@types/node 18.18.13 → 18.18.14
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 v18.18/README.md +1 -1
- node v18.18/package.json +3 -3
- node v18.18/process.d.ts +7 -0
- node v18.18/ts4.8/process.d.ts +7 -0
node v18.18/README.md
CHANGED
|
@@ -8,7 +8,7 @@ This package contains type definitions for node (https://nodejs.org/).
|
|
|
8
8
|
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v18.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Wed, 29 Nov 2023 19:35:57 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node v18.18/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "18.18.
|
|
3
|
+
"version": "18.18.14",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
"dependencies": {
|
|
230
230
|
"undici-types": "~5.26.4"
|
|
231
231
|
},
|
|
232
|
-
"typesPublisherContentHash": "
|
|
233
|
-
"typeScriptVersion": "4.
|
|
232
|
+
"typesPublisherContentHash": "d5af3cf2d005a6d2962993f11359c75f5fd371f76d1dce518e1fba4d8ee748e6",
|
|
233
|
+
"typeScriptVersion": "4.6",
|
|
234
234
|
"nonNpm": true
|
|
235
235
|
}
|
node v18.18/process.d.ts
CHANGED
|
@@ -894,6 +894,13 @@ declare module "process" {
|
|
|
894
894
|
* @since v9.3.0
|
|
895
895
|
*/
|
|
896
896
|
hasUncaughtExceptionCaptureCallback(): boolean;
|
|
897
|
+
/**
|
|
898
|
+
* This function enables or disables the Source Map v3 support for stack traces.
|
|
899
|
+
* It provides same features as launching Node.js process with commandline options --enable-source-maps.
|
|
900
|
+
* @since v16.6.0
|
|
901
|
+
* @experimental
|
|
902
|
+
*/
|
|
903
|
+
setSourceMapsEnabled(value: boolean): void;
|
|
897
904
|
/**
|
|
898
905
|
* The `process.version` property contains the Node.js version string.
|
|
899
906
|
*
|
node v18.18/ts4.8/process.d.ts
CHANGED
|
@@ -894,6 +894,13 @@ declare module "process" {
|
|
|
894
894
|
* @since v9.3.0
|
|
895
895
|
*/
|
|
896
896
|
hasUncaughtExceptionCaptureCallback(): boolean;
|
|
897
|
+
/**
|
|
898
|
+
* This function enables or disables the Source Map v3 support for stack traces.
|
|
899
|
+
* It provides same features as launching Node.js process with commandline options --enable-source-maps.
|
|
900
|
+
* @since v16.6.0
|
|
901
|
+
* @experimental
|
|
902
|
+
*/
|
|
903
|
+
setSourceMapsEnabled(value: boolean): void;
|
|
897
904
|
/**
|
|
898
905
|
* The `process.version` property contains the Node.js version string.
|
|
899
906
|
*
|