@types/node 20.9.4 → 20.9.5
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/README.md +1 -1
- node/package.json +2 -2
- node/ts4.8/wasi.d.ts +1 -1
- node/wasi.d.ts +1 -1
node/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.
|
|
9
9
|
|
|
10
10
|
### Additional Details
|
|
11
|
-
* Last updated:
|
|
11
|
+
* Last updated: Thu, 23 Nov 2023 21:35:40 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "20.9.
|
|
3
|
+
"version": "20.9.5",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -224,7 +224,7 @@
|
|
|
224
224
|
"dependencies": {
|
|
225
225
|
"undici-types": "~5.26.4"
|
|
226
226
|
},
|
|
227
|
-
"typesPublisherContentHash": "
|
|
227
|
+
"typesPublisherContentHash": "cd8a86c6bd22ad627d5e5634db95682b25018090a58b6227bd20bc170181834d",
|
|
228
228
|
"typeScriptVersion": "4.5",
|
|
229
229
|
"nonNpm": true
|
|
230
230
|
}
|
node/ts4.8/wasi.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ declare module "wasi" {
|
|
|
133
133
|
* If `start()` is called more than once, an exception is thrown.
|
|
134
134
|
* @since v13.3.0, v12.16.0
|
|
135
135
|
*/
|
|
136
|
-
start(instance: object):
|
|
136
|
+
start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.
|
|
137
137
|
/**
|
|
138
138
|
* Attempt to initialize `instance` as a WASI reactor by invoking its`_initialize()` export, if it is present. If `instance` contains a `_start()`export, then an exception is thrown.
|
|
139
139
|
*
|
node/wasi.d.ts
CHANGED
|
@@ -133,7 +133,7 @@ declare module "wasi" {
|
|
|
133
133
|
* If `start()` is called more than once, an exception is thrown.
|
|
134
134
|
* @since v13.3.0, v12.16.0
|
|
135
135
|
*/
|
|
136
|
-
start(instance: object):
|
|
136
|
+
start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.
|
|
137
137
|
/**
|
|
138
138
|
* Attempt to initialize `instance` as a WASI reactor by invoking its`_initialize()` export, if it is present. If `instance` contains a `_start()`export, then an exception is thrown.
|
|
139
139
|
*
|