@types/node 20.11.28 → 20.11.30
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/dns/promises.d.ts +70 -22
- node/dns.d.ts +106 -62
- node/package.json +2 -2
- node/wasi.d.ts +12 -10
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: Tue, 19 Mar 2024 12:41:20 GMT
|
|
12
12
|
* Dependencies: [undici-types](https://npmjs.com/package/undici-types)
|
|
13
13
|
|
|
14
14
|
# Credits
|
node/dns/promises.d.ts
CHANGED
|
@@ -43,18 +43,18 @@ declare module "dns/promises" {
|
|
|
43
43
|
* integer, then it must be `4` or `6` – if `options` is not provided, then IPv4
|
|
44
44
|
* and IPv6 addresses are both returned if found.
|
|
45
45
|
*
|
|
46
|
-
* With the `all` option set to `true`, the `Promise` is resolved with `addresses`being an array of objects with the properties `address` and `family`.
|
|
46
|
+
* With the `all` option set to `true`, the `Promise` is resolved with `addresses` being an array of objects with the properties `address` and `family`.
|
|
47
47
|
*
|
|
48
|
-
* On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code.
|
|
48
|
+
* On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is the error code.
|
|
49
49
|
* Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when
|
|
50
50
|
* the host name does not exist but also when the lookup fails in other ways
|
|
51
51
|
* such as no available file descriptors.
|
|
52
52
|
*
|
|
53
|
-
* `dnsPromises.lookup()` does not necessarily have anything to do with the DNS
|
|
53
|
+
* [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options) does not necessarily have anything to do with the DNS
|
|
54
54
|
* protocol. The implementation uses an operating system facility that can
|
|
55
55
|
* associate names with addresses and vice versa. This implementation can have
|
|
56
56
|
* subtle but important consequences on the behavior of any Node.js program. Please
|
|
57
|
-
* take some time to consult the
|
|
57
|
+
* take some time to consult the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations) before
|
|
58
58
|
* using `dnsPromises.lookup()`.
|
|
59
59
|
*
|
|
60
60
|
* Example usage:
|
|
@@ -91,9 +91,9 @@ declare module "dns/promises" {
|
|
|
91
91
|
* the operating system's underlying `getnameinfo` implementation.
|
|
92
92
|
*
|
|
93
93
|
* If `address` is not a valid IP address, a `TypeError` will be thrown.
|
|
94
|
-
* The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown.
|
|
94
|
+
* The `port` will be coerced to a number. If it is not a legal port, a `TypeError` will be thrown.
|
|
95
95
|
*
|
|
96
|
-
* On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code.
|
|
96
|
+
* On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is the error code.
|
|
97
97
|
*
|
|
98
98
|
* ```js
|
|
99
99
|
* const dnsPromises = require('node:dns').promises;
|
|
@@ -119,7 +119,8 @@ declare module "dns/promises" {
|
|
|
119
119
|
*
|
|
120
120
|
* <omitted>
|
|
121
121
|
*
|
|
122
|
-
* On error, the `Promise` is rejected with an `Error` object, where `err.code`
|
|
122
|
+
* On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code`
|
|
123
|
+
* is one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).
|
|
123
124
|
* @since v10.6.0
|
|
124
125
|
* @param hostname Host name to resolve.
|
|
125
126
|
* @param [rrtype='A'] Resource record type.
|
|
@@ -142,7 +143,7 @@ declare module "dns/promises" {
|
|
|
142
143
|
rrtype: string,
|
|
143
144
|
): Promise<string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]>;
|
|
144
145
|
/**
|
|
145
|
-
* Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv4
|
|
146
|
+
* Uses the DNS protocol to resolve IPv4 addresses (`A` records) for the `hostname`. On success, the `Promise` is resolved with an array of IPv4
|
|
146
147
|
* addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']`).
|
|
147
148
|
* @since v10.6.0
|
|
148
149
|
* @param hostname Host name to resolve.
|
|
@@ -151,7 +152,7 @@ declare module "dns/promises" {
|
|
|
151
152
|
function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;
|
|
152
153
|
function resolve4(hostname: string, options: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
|
|
153
154
|
/**
|
|
154
|
-
* Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the`hostname`. On success, the `Promise` is resolved with an array of IPv6
|
|
155
|
+
* Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. On success, the `Promise` is resolved with an array of IPv6
|
|
155
156
|
* addresses.
|
|
156
157
|
* @since v10.6.0
|
|
157
158
|
* @param hostname Host name to resolve.
|
|
@@ -191,7 +192,7 @@ declare module "dns/promises" {
|
|
|
191
192
|
/**
|
|
192
193
|
* Uses the DNS protocol to resolve `CAA` records for the `hostname`. On success,
|
|
193
194
|
* the `Promise` is resolved with an array of objects containing available
|
|
194
|
-
* certification authority authorization records available for the `hostname`(e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'},{critical: 128, issue: 'pki.example.com'}]`).
|
|
195
|
+
* certification authority authorization records available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'},{critical: 128, issue: 'pki.example.com'}]`).
|
|
195
196
|
* @since v15.0.0, v14.17.0
|
|
196
197
|
*/
|
|
197
198
|
function resolveCaa(hostname: string): Promise<CaaRecord[]>;
|
|
@@ -203,13 +204,13 @@ declare module "dns/promises" {
|
|
|
203
204
|
*/
|
|
204
205
|
function resolveCname(hostname: string): Promise<string[]>;
|
|
205
206
|
/**
|
|
206
|
-
* Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects
|
|
207
|
+
* Uses the DNS protocol to resolve mail exchange records (`MX` records) for the `hostname`. On success, the `Promise` is resolved with an array of objects
|
|
207
208
|
* containing both a `priority` and `exchange` property (e.g.`[{priority: 10, exchange: 'mx.example.com'}, ...]`).
|
|
208
209
|
* @since v10.6.0
|
|
209
210
|
*/
|
|
210
211
|
function resolveMx(hostname: string): Promise<MxRecord[]>;
|
|
211
212
|
/**
|
|
212
|
-
* Uses the DNS protocol to resolve regular expression-based records (`NAPTR`records) for the `hostname`. On success, the `Promise` is resolved with an array
|
|
213
|
+
* Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. On success, the `Promise` is resolved with an array
|
|
213
214
|
* of objects with the following properties:
|
|
214
215
|
*
|
|
215
216
|
* * `flags`
|
|
@@ -233,13 +234,13 @@ declare module "dns/promises" {
|
|
|
233
234
|
*/
|
|
234
235
|
function resolveNaptr(hostname: string): Promise<NaptrRecord[]>;
|
|
235
236
|
/**
|
|
236
|
-
* Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. On success, the `Promise` is resolved with an array of name server
|
|
237
|
+
* Uses the DNS protocol to resolve name server records (`NS` records) for the `hostname`. On success, the `Promise` is resolved with an array of name server
|
|
237
238
|
* records available for `hostname` (e.g.`['ns1.example.com', 'ns2.example.com']`).
|
|
238
239
|
* @since v10.6.0
|
|
239
240
|
*/
|
|
240
241
|
function resolveNs(hostname: string): Promise<string[]>;
|
|
241
242
|
/**
|
|
242
|
-
* Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. On success, the `Promise` is resolved with an array of strings
|
|
243
|
+
* Uses the DNS protocol to resolve pointer records (`PTR` records) for the `hostname`. On success, the `Promise` is resolved with an array of strings
|
|
243
244
|
* containing the reply records.
|
|
244
245
|
* @since v10.6.0
|
|
245
246
|
*/
|
|
@@ -272,7 +273,7 @@ declare module "dns/promises" {
|
|
|
272
273
|
*/
|
|
273
274
|
function resolveSoa(hostname: string): Promise<SoaRecord>;
|
|
274
275
|
/**
|
|
275
|
-
* Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. On success, the `Promise` is resolved with an array of objects with
|
|
276
|
+
* Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. On success, the `Promise` is resolved with an array of objects with
|
|
276
277
|
* the following properties:
|
|
277
278
|
*
|
|
278
279
|
* * `priority`
|
|
@@ -292,7 +293,7 @@ declare module "dns/promises" {
|
|
|
292
293
|
*/
|
|
293
294
|
function resolveSrv(hostname: string): Promise<SrvRecord[]>;
|
|
294
295
|
/**
|
|
295
|
-
* Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. On success, the `Promise` is resolved with a two-dimensional array
|
|
296
|
+
* Uses the DNS protocol to resolve text queries (`TXT` records) for the `hostname`. On success, the `Promise` is resolved with a two-dimensional array
|
|
296
297
|
* of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of
|
|
297
298
|
* one record. Depending on the use case, these could be either joined together or
|
|
298
299
|
* treated separately.
|
|
@@ -303,12 +304,14 @@ declare module "dns/promises" {
|
|
|
303
304
|
* Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
|
|
304
305
|
* array of host names.
|
|
305
306
|
*
|
|
306
|
-
* On error, the `Promise` is rejected with an `Error` object, where `err.code`
|
|
307
|
+
* On error, the `Promise` is rejected with an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code`
|
|
308
|
+
* is one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).
|
|
307
309
|
* @since v10.6.0
|
|
308
310
|
*/
|
|
309
311
|
function reverse(ip: string): Promise<string[]>;
|
|
310
312
|
/**
|
|
311
|
-
* Get the default value for `verbatim` in {@link lookup} and
|
|
313
|
+
* Get the default value for `verbatim` in {@link lookup} and [dnsPromises.lookup()](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).
|
|
314
|
+
* The value could be:
|
|
312
315
|
*
|
|
313
316
|
* * `ipv4first`: for `verbatim` defaulting to `false`.
|
|
314
317
|
* * `verbatim`: for `verbatim` defaulting to `true`.
|
|
@@ -348,18 +351,43 @@ declare module "dns/promises" {
|
|
|
348
351
|
* * `ipv4first`: sets default `verbatim` `false`.
|
|
349
352
|
* * `verbatim`: sets default `verbatim` `true`.
|
|
350
353
|
*
|
|
351
|
-
* The default is `verbatim` and
|
|
352
|
-
* higher priority than `--dns-result-order
|
|
353
|
-
*
|
|
354
|
+
* The default is `verbatim` and [dnsPromises.setDefaultResultOrder()](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetdefaultresultorderorder)
|
|
355
|
+
* have higher priority than [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder).
|
|
356
|
+
* When using [worker threads](https://nodejs.org/docs/latest-v20.x/api/worker_threads.html), [`dnsPromises.setDefaultResultOrder()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetdefaultresultorderorder)
|
|
357
|
+
* from the main thread won't affect the default dns orders in workers.
|
|
354
358
|
* @since v16.4.0, v14.18.0
|
|
355
359
|
* @param order must be `'ipv4first'` or `'verbatim'`.
|
|
356
360
|
*/
|
|
357
361
|
function setDefaultResultOrder(order: "ipv4first" | "verbatim"): void;
|
|
362
|
+
const NODATA: "NODATA";
|
|
363
|
+
const FORMERR: "FORMERR";
|
|
364
|
+
const SERVFAIL: "SERVFAIL";
|
|
365
|
+
const NOTFOUND: "NOTFOUND";
|
|
366
|
+
const NOTIMP: "NOTIMP";
|
|
367
|
+
const REFUSED: "REFUSED";
|
|
368
|
+
const BADQUERY: "BADQUERY";
|
|
369
|
+
const BADNAME: "BADNAME";
|
|
370
|
+
const BADFAMILY: "BADFAMILY";
|
|
371
|
+
const BADRESP: "BADRESP";
|
|
372
|
+
const CONNREFUSED: "TIMEOUT";
|
|
373
|
+
const TIMEOUT: "TIMEOUT";
|
|
374
|
+
const EOF: "EOF";
|
|
375
|
+
const FILE: "FILE";
|
|
376
|
+
const NOMEM: "NOMEM";
|
|
377
|
+
const DESTRUCTION: "DESTRUCTION";
|
|
378
|
+
const BADSTR: "BADSTR";
|
|
379
|
+
const BADFLAGS: "BADFLAGS";
|
|
380
|
+
const NONAME: "NONAME";
|
|
381
|
+
const BADHINTS: "BADHINTS";
|
|
382
|
+
const NOTINITIALIZED: "NOTINITIALIZED";
|
|
383
|
+
const LOADIPHLPAPI: "LOADIPHLPAPI";
|
|
384
|
+
const ADDRGETNETWORKPARAMS: "ADDRGETNETWORKPARAMS";
|
|
385
|
+
const CANCELLED: "CANCELLED";
|
|
358
386
|
/**
|
|
359
387
|
* An independent resolver for DNS requests.
|
|
360
388
|
*
|
|
361
389
|
* Creating a new resolver uses the default server settings. Setting
|
|
362
|
-
* the servers used for a resolver using `resolver.setServers()` does not affect
|
|
390
|
+
* the servers used for a resolver using [`resolver.setServers()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromisessetserversservers) does not affect
|
|
363
391
|
* other resolvers:
|
|
364
392
|
*
|
|
365
393
|
* ```js
|
|
@@ -400,6 +428,11 @@ declare module "dns/promises" {
|
|
|
400
428
|
*/
|
|
401
429
|
class Resolver {
|
|
402
430
|
constructor(options?: ResolverOptions);
|
|
431
|
+
/**
|
|
432
|
+
* Cancel all outstanding DNS queries made by this resolver. The corresponding
|
|
433
|
+
* callbacks will be called with an error with code `ECANCELLED`.
|
|
434
|
+
* @since v8.3.0
|
|
435
|
+
*/
|
|
403
436
|
cancel(): void;
|
|
404
437
|
getServers: typeof getServers;
|
|
405
438
|
resolve: typeof resolve;
|
|
@@ -416,6 +449,21 @@ declare module "dns/promises" {
|
|
|
416
449
|
resolveSrv: typeof resolveSrv;
|
|
417
450
|
resolveTxt: typeof resolveTxt;
|
|
418
451
|
reverse: typeof reverse;
|
|
452
|
+
/**
|
|
453
|
+
* The resolver instance will send its requests from the specified IP address.
|
|
454
|
+
* This allows programs to specify outbound interfaces when used on multi-homed
|
|
455
|
+
* systems.
|
|
456
|
+
*
|
|
457
|
+
* If a v4 or v6 address is not specified, it is set to the default and the
|
|
458
|
+
* operating system will choose a local address automatically.
|
|
459
|
+
*
|
|
460
|
+
* The resolver will use the v4 local address when making requests to IPv4 DNS
|
|
461
|
+
* servers, and the v6 local address when making requests to IPv6 DNS servers.
|
|
462
|
+
* The `rrtype` of resolution requests has no impact on the local address used.
|
|
463
|
+
* @since v15.1.0, v14.17.0
|
|
464
|
+
* @param [ipv4='0.0.0.0'] A string representation of an IPv4 address.
|
|
465
|
+
* @param [ipv6='::0'] A string representation of an IPv6 address.
|
|
466
|
+
*/
|
|
419
467
|
setLocalAddress(ipv4?: string, ipv6?: string): void;
|
|
420
468
|
setServers: typeof setServers;
|
|
421
469
|
}
|
node/dns.d.ts
CHANGED
|
@@ -41,13 +41,21 @@
|
|
|
41
41
|
* });
|
|
42
42
|
* ```
|
|
43
43
|
*
|
|
44
|
-
* See the
|
|
45
|
-
* @see [source](https://github.com/nodejs/node/blob/v20.
|
|
44
|
+
* See the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations) for more information.
|
|
45
|
+
* @see [source](https://github.com/nodejs/node/blob/v20.11.1/lib/dns.js)
|
|
46
46
|
*/
|
|
47
47
|
declare module "dns" {
|
|
48
48
|
import * as dnsPromises from "node:dns/promises";
|
|
49
49
|
// Supported getaddrinfo flags.
|
|
50
|
+
/**
|
|
51
|
+
* Limits returned address types to the types of non-loopback addresses configured on the system. For example, IPv4 addresses are
|
|
52
|
+
* only returned if the current system has at least one IPv4 address configured.
|
|
53
|
+
*/
|
|
50
54
|
export const ADDRCONFIG: number;
|
|
55
|
+
/**
|
|
56
|
+
* If the IPv6 family was specified, but no IPv6 addresses were found, then return IPv4 mapped IPv6 addresses. It is not supported
|
|
57
|
+
* on some operating systems (e.g. FreeBSD 10.1).
|
|
58
|
+
*/
|
|
51
59
|
export const V4MAPPED: number;
|
|
52
60
|
/**
|
|
53
61
|
* If `dns.V4MAPPED` is specified, return resolved IPv6 addresses as
|
|
@@ -55,11 +63,28 @@ declare module "dns" {
|
|
|
55
63
|
*/
|
|
56
64
|
export const ALL: number;
|
|
57
65
|
export interface LookupOptions {
|
|
58
|
-
|
|
66
|
+
/**
|
|
67
|
+
* The record family. Must be `4`, `6`, or `0`. For backward compatibility reasons,`'IPv4'` and `'IPv6'` are interpreted
|
|
68
|
+
* as `4` and `6` respectively. The value 0 indicates that either an IPv4 or IPv6 address is returned. If the value `0` is used
|
|
69
|
+
* with `{ all: true } (see below)`, both IPv4 and IPv6 addresses are returned.
|
|
70
|
+
* @default 0
|
|
71
|
+
*/
|
|
72
|
+
family?: number | "IPv4" | "IPv6" | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* One or more [supported `getaddrinfo`](https://nodejs.org/docs/latest-v20.x/api/dns.html#supported-getaddrinfo-flags) flags. Multiple flags may be
|
|
75
|
+
* passed by bitwise `OR`ing their values.
|
|
76
|
+
*/
|
|
59
77
|
hints?: number | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* When `true`, the callback returns all resolved addresses in an array. Otherwise, returns a single address.
|
|
80
|
+
* @default false
|
|
81
|
+
*/
|
|
60
82
|
all?: boolean | undefined;
|
|
61
83
|
/**
|
|
62
|
-
*
|
|
84
|
+
* When `true`, the callback receives IPv4 and IPv6 addresses in the order the DNS resolver returned them. When `false`, IPv4
|
|
85
|
+
* addresses are placed before IPv6 addresses. Default value is configurable using {@link setDefaultResultOrder()}
|
|
86
|
+
* or [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder).
|
|
87
|
+
* @default true (addresses are not reordered)
|
|
63
88
|
*/
|
|
64
89
|
verbatim?: boolean | undefined;
|
|
65
90
|
}
|
|
@@ -70,7 +95,14 @@ declare module "dns" {
|
|
|
70
95
|
all: true;
|
|
71
96
|
}
|
|
72
97
|
export interface LookupAddress {
|
|
98
|
+
/**
|
|
99
|
+
* A string representation of an IPv4 or IPv6 address.
|
|
100
|
+
*/
|
|
73
101
|
address: string;
|
|
102
|
+
/**
|
|
103
|
+
* `4` or `6`, denoting the family of `address`, or `0` if the address is not an IPv4 or IPv6 address. `0` is a likely indicator of a
|
|
104
|
+
* bug in the name resolution service used by the operating system.
|
|
105
|
+
*/
|
|
74
106
|
family: number;
|
|
75
107
|
}
|
|
76
108
|
/**
|
|
@@ -79,7 +111,7 @@ declare module "dns" {
|
|
|
79
111
|
* integer, then it must be `4` or `6` – if `options` is `0` or not provided, then
|
|
80
112
|
* IPv4 and IPv6 addresses are both returned if found.
|
|
81
113
|
*
|
|
82
|
-
* With the `all` option set to `true`, the arguments for `callback` change to`(err, addresses)`, with `addresses` being an array of objects with the
|
|
114
|
+
* With the `all` option set to `true`, the arguments for `callback` change to `(err, addresses)`, with `addresses` being an array of objects with the
|
|
83
115
|
* properties `address` and `family`.
|
|
84
116
|
*
|
|
85
117
|
* On error, `err` is an `Error` object, where `err.code` is the error code.
|
|
@@ -91,7 +123,8 @@ declare module "dns" {
|
|
|
91
123
|
* The implementation uses an operating system facility that can associate names
|
|
92
124
|
* with addresses and vice versa. This implementation can have subtle but
|
|
93
125
|
* important consequences on the behavior of any Node.js program. Please take some
|
|
94
|
-
* time to consult the
|
|
126
|
+
* time to consult the [Implementation considerations section](https://nodejs.org/docs/latest-v20.x/api/dns.html#implementation-considerations)
|
|
127
|
+
* before using `dns.lookup()`.
|
|
95
128
|
*
|
|
96
129
|
* Example usage:
|
|
97
130
|
*
|
|
@@ -112,7 +145,8 @@ declare module "dns" {
|
|
|
112
145
|
* // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}]
|
|
113
146
|
* ```
|
|
114
147
|
*
|
|
115
|
-
* If this method is invoked as its
|
|
148
|
+
* If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v20.x/api/util.html#utilpromisifyoriginal) ed
|
|
149
|
+
* version, and `all` is not set to `true`, it returns a `Promise` for an `Object` with `address` and `family` properties.
|
|
116
150
|
* @since v0.1.90
|
|
117
151
|
*/
|
|
118
152
|
export function lookup(
|
|
@@ -149,9 +183,10 @@ declare module "dns" {
|
|
|
149
183
|
* the operating system's underlying `getnameinfo` implementation.
|
|
150
184
|
*
|
|
151
185
|
* If `address` is not a valid IP address, a `TypeError` will be thrown.
|
|
152
|
-
* The `port` will be coerced to a number. If it is not a legal port, a `TypeError`will be thrown.
|
|
186
|
+
* The `port` will be coerced to a number. If it is not a legal port, a `TypeError` will be thrown.
|
|
153
187
|
*
|
|
154
|
-
* On an error, `err` is an `Error` object,
|
|
188
|
+
* On an error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object,
|
|
189
|
+
* where `err.code` is the error code.
|
|
155
190
|
*
|
|
156
191
|
* ```js
|
|
157
192
|
* const dns = require('node:dns');
|
|
@@ -161,7 +196,8 @@ declare module "dns" {
|
|
|
161
196
|
* });
|
|
162
197
|
* ```
|
|
163
198
|
*
|
|
164
|
-
* If this method is invoked as its
|
|
199
|
+
* If this method is invoked as its [util.promisify()](https://nodejs.org/docs/latest-v20.x/api/util.html#utilpromisifyoriginal) ed
|
|
200
|
+
* version, it returns a `Promise` for an `Object` with `hostname` and `service` properties.
|
|
165
201
|
* @since v0.11.14
|
|
166
202
|
*/
|
|
167
203
|
export function lookupService(
|
|
@@ -272,12 +308,13 @@ declare module "dns" {
|
|
|
272
308
|
| AnyTxtRecord;
|
|
273
309
|
/**
|
|
274
310
|
* Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array
|
|
275
|
-
* of the resource records. The `callback` function has arguments`(err, records)`. When successful, `records` will be an array of resource
|
|
311
|
+
* of the resource records. The `callback` function has arguments `(err, records)`. When successful, `records` will be an array of resource
|
|
276
312
|
* records. The type and structure of individual results varies based on `rrtype`:
|
|
277
313
|
*
|
|
278
314
|
* <omitted>
|
|
279
315
|
*
|
|
280
|
-
* On error, `err` is an `Error` object,
|
|
316
|
+
* On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object,
|
|
317
|
+
* where `err.code` is one of the `DNS error codes`.
|
|
281
318
|
* @since v0.1.27
|
|
282
319
|
* @param hostname Host name to resolve.
|
|
283
320
|
* @param [rrtype='A'] Resource record type.
|
|
@@ -363,7 +400,7 @@ declare module "dns" {
|
|
|
363
400
|
): Promise<string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]>;
|
|
364
401
|
}
|
|
365
402
|
/**
|
|
366
|
-
* Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the`hostname`. The `addresses` argument passed to the `callback` function
|
|
403
|
+
* Uses the DNS protocol to resolve a IPv4 addresses (`A` records) for the `hostname`. The `addresses` argument passed to the `callback` function
|
|
367
404
|
* will contain an array of IPv4 addresses (e.g.`['74.125.79.104', '74.125.79.105', '74.125.79.106']`).
|
|
368
405
|
* @since v0.1.16
|
|
369
406
|
* @param hostname Host name to resolve.
|
|
@@ -388,7 +425,7 @@ declare module "dns" {
|
|
|
388
425
|
function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
|
|
389
426
|
}
|
|
390
427
|
/**
|
|
391
|
-
* Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the`hostname`. The `addresses` argument passed to the `callback` function
|
|
428
|
+
* Uses the DNS protocol to resolve IPv6 addresses (`AAAA` records) for the `hostname`. The `addresses` argument passed to the `callback` function
|
|
392
429
|
* will contain an array of IPv6 addresses.
|
|
393
430
|
* @since v0.1.16
|
|
394
431
|
* @param hostname Host name to resolve.
|
|
@@ -413,8 +450,8 @@ declare module "dns" {
|
|
|
413
450
|
function __promisify__(hostname: string, options?: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
|
|
414
451
|
}
|
|
415
452
|
/**
|
|
416
|
-
* Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The`addresses` argument passed to the `callback` function
|
|
417
|
-
* will contain an array of canonical name records available for the `hostname`(e.g. `['bar.example.com']`).
|
|
453
|
+
* Uses the DNS protocol to resolve `CNAME` records for the `hostname`. The `addresses` argument passed to the `callback` function
|
|
454
|
+
* will contain an array of canonical name records available for the `hostname` (e.g. `['bar.example.com']`).
|
|
418
455
|
* @since v0.3.2
|
|
419
456
|
*/
|
|
420
457
|
export function resolveCname(
|
|
@@ -425,7 +462,7 @@ declare module "dns" {
|
|
|
425
462
|
function __promisify__(hostname: string): Promise<string[]>;
|
|
426
463
|
}
|
|
427
464
|
/**
|
|
428
|
-
* Uses the DNS protocol to resolve `CAA` records for the `hostname`. The`addresses` argument passed to the `callback` function
|
|
465
|
+
* Uses the DNS protocol to resolve `CAA` records for the `hostname`. The `addresses` argument passed to the `callback` function
|
|
429
466
|
* will contain an array of certification authority authorization records
|
|
430
467
|
* available for the `hostname` (e.g. `[{critical: 0, iodef: 'mailto:pki@example.com'}, {critical: 128, issue: 'pki.example.com'}]`).
|
|
431
468
|
* @since v15.0.0, v14.17.0
|
|
@@ -438,8 +475,8 @@ declare module "dns" {
|
|
|
438
475
|
function __promisify__(hostname: string): Promise<CaaRecord[]>;
|
|
439
476
|
}
|
|
440
477
|
/**
|
|
441
|
-
* Uses the DNS protocol to resolve mail exchange records (`MX` records) for the`hostname`. The `addresses` argument passed to the `callback` function will
|
|
442
|
-
* contain an array of objects containing both a `priority` and `exchange`property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`).
|
|
478
|
+
* Uses the DNS protocol to resolve mail exchange records (`MX` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
|
|
479
|
+
* contain an array of objects containing both a `priority` and `exchange` property (e.g. `[{priority: 10, exchange: 'mx.example.com'}, ...]`).
|
|
443
480
|
* @since v0.1.27
|
|
444
481
|
*/
|
|
445
482
|
export function resolveMx(
|
|
@@ -450,7 +487,7 @@ declare module "dns" {
|
|
|
450
487
|
function __promisify__(hostname: string): Promise<MxRecord[]>;
|
|
451
488
|
}
|
|
452
489
|
/**
|
|
453
|
-
* Uses the DNS protocol to resolve regular expression-based records (`NAPTR`records) for the `hostname`. The `addresses` argument passed to the `callback`function will contain an array of
|
|
490
|
+
* Uses the DNS protocol to resolve regular expression-based records (`NAPTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will contain an array of
|
|
454
491
|
* objects with the following properties:
|
|
455
492
|
*
|
|
456
493
|
* * `flags`
|
|
@@ -480,8 +517,8 @@ declare module "dns" {
|
|
|
480
517
|
function __promisify__(hostname: string): Promise<NaptrRecord[]>;
|
|
481
518
|
}
|
|
482
519
|
/**
|
|
483
|
-
* Uses the DNS protocol to resolve name server records (`NS` records) for the`hostname`. The `addresses` argument passed to the `callback` function will
|
|
484
|
-
* contain an array of name server records available for `hostname`(e.g. `['ns1.example.com', 'ns2.example.com']`).
|
|
520
|
+
* Uses the DNS protocol to resolve name server records (`NS` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
|
|
521
|
+
* contain an array of name server records available for `hostname` (e.g. `['ns1.example.com', 'ns2.example.com']`).
|
|
485
522
|
* @since v0.1.90
|
|
486
523
|
*/
|
|
487
524
|
export function resolveNs(
|
|
@@ -492,7 +529,7 @@ declare module "dns" {
|
|
|
492
529
|
function __promisify__(hostname: string): Promise<string[]>;
|
|
493
530
|
}
|
|
494
531
|
/**
|
|
495
|
-
* Uses the DNS protocol to resolve pointer records (`PTR` records) for the`hostname`. The `addresses` argument passed to the `callback` function will
|
|
532
|
+
* Uses the DNS protocol to resolve pointer records (`PTR` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
|
|
496
533
|
* be an array of strings containing the reply records.
|
|
497
534
|
* @since v6.0.0
|
|
498
535
|
*/
|
|
@@ -537,7 +574,7 @@ declare module "dns" {
|
|
|
537
574
|
function __promisify__(hostname: string): Promise<SoaRecord>;
|
|
538
575
|
}
|
|
539
576
|
/**
|
|
540
|
-
* Uses the DNS protocol to resolve service records (`SRV` records) for the`hostname`. The `addresses` argument passed to the `callback` function will
|
|
577
|
+
* Uses the DNS protocol to resolve service records (`SRV` records) for the `hostname`. The `addresses` argument passed to the `callback` function will
|
|
541
578
|
* be an array of objects with the following properties:
|
|
542
579
|
*
|
|
543
580
|
* * `priority`
|
|
@@ -563,7 +600,7 @@ declare module "dns" {
|
|
|
563
600
|
function __promisify__(hostname: string): Promise<SrvRecord[]>;
|
|
564
601
|
}
|
|
565
602
|
/**
|
|
566
|
-
* Uses the DNS protocol to resolve text queries (`TXT` records) for the`hostname`. The `records` argument passed to the `callback` function is a
|
|
603
|
+
* Uses the DNS protocol to resolve text queries (`TXT` records) for the `hostname`. The `records` argument passed to the `callback` function is a
|
|
567
604
|
* two-dimensional array of the text records available for `hostname` (e.g.`[ ['v=spf1 ip4:0.0.0.0 ', '~all' ] ]`). Each sub-array contains TXT chunks of
|
|
568
605
|
* one record. Depending on the use case, these could be either joined together or
|
|
569
606
|
* treated separately.
|
|
@@ -603,8 +640,8 @@ declare module "dns" {
|
|
|
603
640
|
* minttl: 60 } ]
|
|
604
641
|
* ```
|
|
605
642
|
*
|
|
606
|
-
* DNS server operators may choose not to respond to `ANY`queries. It may be better to call individual methods like {@link resolve4},{@link resolveMx}, and so on. For more details, see
|
|
607
|
-
* 8482](https://tools.ietf.org/html/rfc8482).
|
|
643
|
+
* DNS server operators may choose not to respond to `ANY` queries. It may be better to call individual methods like {@link resolve4}, {@link resolveMx}, and so on. For more details, see
|
|
644
|
+
* [RFC 8482](https://tools.ietf.org/html/rfc8482).
|
|
608
645
|
*/
|
|
609
646
|
export function resolveAny(
|
|
610
647
|
hostname: string,
|
|
@@ -617,8 +654,8 @@ declare module "dns" {
|
|
|
617
654
|
* Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
|
|
618
655
|
* array of host names.
|
|
619
656
|
*
|
|
620
|
-
* On error, `err` is an `Error` object, where `err.code` is
|
|
621
|
-
* one of the
|
|
657
|
+
* On error, `err` is an [`Error`](https://nodejs.org/docs/latest-v20.x/api/errors.html#class-error) object, where `err.code` is
|
|
658
|
+
* one of the [DNS error codes](https://nodejs.org/docs/latest-v20.x/api/dns.html#error-codes).
|
|
622
659
|
* @since v0.1.16
|
|
623
660
|
*/
|
|
624
661
|
export function reverse(
|
|
@@ -626,11 +663,12 @@ declare module "dns" {
|
|
|
626
663
|
callback: (err: NodeJS.ErrnoException | null, hostnames: string[]) => void,
|
|
627
664
|
): void;
|
|
628
665
|
/**
|
|
629
|
-
* Get the default value for `verbatim` in {@link lookup} and `dnsPromises.lookup()
|
|
666
|
+
* Get the default value for `verbatim` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).
|
|
667
|
+
* The value could be:
|
|
630
668
|
*
|
|
631
669
|
* * `ipv4first`: for `verbatim` defaulting to `false`.
|
|
632
670
|
* * `verbatim`: for `verbatim` defaulting to `true`.
|
|
633
|
-
* @since
|
|
671
|
+
* @since v18.17.0
|
|
634
672
|
*/
|
|
635
673
|
export function getDefaultResultOrder(): "ipv4first" | "verbatim";
|
|
636
674
|
/**
|
|
@@ -652,14 +690,14 @@ declare module "dns" {
|
|
|
652
690
|
* The `dns.setServers()` method must not be called while a DNS query is in
|
|
653
691
|
* progress.
|
|
654
692
|
*
|
|
655
|
-
* The {@link setServers} method affects only {@link resolve}
|
|
693
|
+
* The {@link setServers} method affects only {@link resolve}, `dns.resolve*()` and {@link reverse} (and specifically _not_ {@link lookup}).
|
|
656
694
|
*
|
|
657
695
|
* This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
|
|
658
|
-
* That is, if attempting to resolve with the first server provided results in a`NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with
|
|
696
|
+
* That is, if attempting to resolve with the first server provided results in a `NOTFOUND` error, the `resolve()` method will _not_ attempt to resolve with
|
|
659
697
|
* subsequent servers provided. Fallback DNS servers will only be used if the
|
|
660
698
|
* earlier ones time out or result in some other error.
|
|
661
699
|
* @since v0.11.3
|
|
662
|
-
* @param servers array of
|
|
700
|
+
* @param servers array of [RFC 5952](https://datatracker.ietf.org/doc/html/rfc5952#section-6) formatted addresses
|
|
663
701
|
*/
|
|
664
702
|
export function setServers(servers: readonly string[]): void;
|
|
665
703
|
/**
|
|
@@ -679,46 +717,52 @@ declare module "dns" {
|
|
|
679
717
|
*/
|
|
680
718
|
export function getServers(): string[];
|
|
681
719
|
/**
|
|
682
|
-
* Set the default value of `verbatim` in {@link lookup} and `dnsPromises.lookup()
|
|
720
|
+
* Set the default value of `verbatim` in {@link lookup} and [`dnsPromises.lookup()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnspromiseslookuphostname-options).
|
|
721
|
+
* The value could be:
|
|
683
722
|
*
|
|
684
723
|
* * `ipv4first`: sets default `verbatim` `false`.
|
|
685
724
|
* * `verbatim`: sets default `verbatim` `true`.
|
|
686
725
|
*
|
|
687
726
|
* The default is `verbatim` and {@link setDefaultResultOrder} have higher
|
|
688
|
-
* priority than `--dns-result-order
|
|
689
|
-
*
|
|
727
|
+
* priority than [`--dns-result-order`](https://nodejs.org/docs/latest-v20.x/api/cli.html#--dns-result-orderorder). When using
|
|
728
|
+
* [worker threads](https://nodejs.org/docs/latest-v20.x/api/worker_threads.html), {@link setDefaultResultOrder} from the main
|
|
729
|
+
* thread won't affect the default dns orders in workers.
|
|
690
730
|
* @since v16.4.0, v14.18.0
|
|
691
731
|
* @param order must be `'ipv4first'` or `'verbatim'`.
|
|
692
732
|
*/
|
|
693
733
|
export function setDefaultResultOrder(order: "ipv4first" | "verbatim"): void;
|
|
694
734
|
// Error codes
|
|
695
|
-
export const NODATA:
|
|
696
|
-
export const FORMERR:
|
|
697
|
-
export const SERVFAIL:
|
|
698
|
-
export const NOTFOUND:
|
|
699
|
-
export const NOTIMP:
|
|
700
|
-
export const REFUSED:
|
|
701
|
-
export const BADQUERY:
|
|
702
|
-
export const BADNAME:
|
|
703
|
-
export const BADFAMILY:
|
|
704
|
-
export const BADRESP:
|
|
705
|
-
export const CONNREFUSED:
|
|
706
|
-
export const TIMEOUT:
|
|
707
|
-
export const EOF:
|
|
708
|
-
export const FILE:
|
|
709
|
-
export const NOMEM:
|
|
710
|
-
export const DESTRUCTION:
|
|
711
|
-
export const BADSTR:
|
|
712
|
-
export const BADFLAGS:
|
|
713
|
-
export const NONAME:
|
|
714
|
-
export const BADHINTS:
|
|
715
|
-
export const NOTINITIALIZED:
|
|
716
|
-
export const LOADIPHLPAPI:
|
|
717
|
-
export const ADDRGETNETWORKPARAMS:
|
|
718
|
-
export const CANCELLED:
|
|
735
|
+
export const NODATA: "NODATA";
|
|
736
|
+
export const FORMERR: "FORMERR";
|
|
737
|
+
export const SERVFAIL: "SERVFAIL";
|
|
738
|
+
export const NOTFOUND: "NOTFOUND";
|
|
739
|
+
export const NOTIMP: "NOTIMP";
|
|
740
|
+
export const REFUSED: "REFUSED";
|
|
741
|
+
export const BADQUERY: "BADQUERY";
|
|
742
|
+
export const BADNAME: "BADNAME";
|
|
743
|
+
export const BADFAMILY: "BADFAMILY";
|
|
744
|
+
export const BADRESP: "BADRESP";
|
|
745
|
+
export const CONNREFUSED: "TIMEOUT";
|
|
746
|
+
export const TIMEOUT: "TIMEOUT";
|
|
747
|
+
export const EOF: "EOF";
|
|
748
|
+
export const FILE: "FILE";
|
|
749
|
+
export const NOMEM: "NOMEM";
|
|
750
|
+
export const DESTRUCTION: "DESTRUCTION";
|
|
751
|
+
export const BADSTR: "BADSTR";
|
|
752
|
+
export const BADFLAGS: "BADFLAGS";
|
|
753
|
+
export const NONAME: "NONAME";
|
|
754
|
+
export const BADHINTS: "BADHINTS";
|
|
755
|
+
export const NOTINITIALIZED: "NOTINITIALIZED";
|
|
756
|
+
export const LOADIPHLPAPI: "LOADIPHLPAPI";
|
|
757
|
+
export const ADDRGETNETWORKPARAMS: "ADDRGETNETWORKPARAMS";
|
|
758
|
+
export const CANCELLED: "CANCELLED";
|
|
719
759
|
export interface ResolverOptions {
|
|
760
|
+
/**
|
|
761
|
+
* Query timeout in milliseconds, or `-1` to use the default timeout.
|
|
762
|
+
*/
|
|
720
763
|
timeout?: number | undefined;
|
|
721
764
|
/**
|
|
765
|
+
* The number of tries the resolver will try contacting each name server before giving up.
|
|
722
766
|
* @default 4
|
|
723
767
|
*/
|
|
724
768
|
tries?: number;
|
|
@@ -727,7 +771,7 @@ declare module "dns" {
|
|
|
727
771
|
* An independent resolver for DNS requests.
|
|
728
772
|
*
|
|
729
773
|
* Creating a new resolver uses the default server settings. Setting
|
|
730
|
-
* the servers used for a resolver using `resolver.setServers()` does not affect
|
|
774
|
+
* the servers used for a resolver using [`resolver.setServers()`](https://nodejs.org/docs/latest-v20.x/api/dns.html#dnssetserversservers) does not affect
|
|
731
775
|
* other resolvers:
|
|
732
776
|
*
|
|
733
777
|
* ```js
|
node/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@types/node",
|
|
3
|
-
"version": "20.11.
|
|
3
|
+
"version": "20.11.30",
|
|
4
4
|
"description": "TypeScript definitions for node",
|
|
5
5
|
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node",
|
|
6
6
|
"license": "MIT",
|
|
@@ -212,6 +212,6 @@
|
|
|
212
212
|
"dependencies": {
|
|
213
213
|
"undici-types": "~5.26.4"
|
|
214
214
|
},
|
|
215
|
-
"typesPublisherContentHash": "
|
|
215
|
+
"typesPublisherContentHash": "f32598ce514dab7b6619466fa574d45c878183cb69f626de9a4ba7676000d809",
|
|
216
216
|
"typeScriptVersion": "4.7"
|
|
217
217
|
}
|
node/wasi.d.ts
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
* wasi.start(instance);
|
|
30
30
|
* ```
|
|
31
31
|
*
|
|
32
|
-
* To run the above example, create a new WebAssembly text format file named`demo.wat`:
|
|
32
|
+
* To run the above example, create a new WebAssembly text format file named `demo.wat`:
|
|
33
33
|
*
|
|
34
34
|
* ```text
|
|
35
35
|
* (module
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
* wat2wasm demo.wat
|
|
68
68
|
* ```
|
|
69
69
|
* @experimental
|
|
70
|
-
* @see [source](https://github.com/nodejs/node/blob/v20.
|
|
70
|
+
* @see [source](https://github.com/nodejs/node/blob/v20.11.1/lib/wasi.js)
|
|
71
71
|
*/
|
|
72
72
|
declare module "wasi" {
|
|
73
73
|
interface WASIOptions {
|
|
@@ -75,11 +75,13 @@ declare module "wasi" {
|
|
|
75
75
|
* An array of strings that the WebAssembly application will
|
|
76
76
|
* see as command line arguments. The first argument is the virtual path to the
|
|
77
77
|
* WASI command itself.
|
|
78
|
+
* @default []
|
|
78
79
|
*/
|
|
79
80
|
args?: string[] | undefined;
|
|
80
81
|
/**
|
|
81
82
|
* An object similar to `process.env` that the WebAssembly
|
|
82
83
|
* application will see as its environment.
|
|
84
|
+
* @default {}
|
|
83
85
|
*/
|
|
84
86
|
env?: object | undefined;
|
|
85
87
|
/**
|
|
@@ -91,7 +93,7 @@ declare module "wasi" {
|
|
|
91
93
|
preopens?: NodeJS.Dict<string> | undefined;
|
|
92
94
|
/**
|
|
93
95
|
* By default, when WASI applications call `__wasi_proc_exit()`
|
|
94
|
-
*
|
|
96
|
+
* `wasi.start()` will return with the exit code specified rather than terminatng the process.
|
|
95
97
|
* Setting this option to `false` will cause the Node.js process to exit with
|
|
96
98
|
* the specified exit code instead.
|
|
97
99
|
* @default true
|
|
@@ -114,10 +116,10 @@ declare module "wasi" {
|
|
|
114
116
|
stderr?: number | undefined;
|
|
115
117
|
/**
|
|
116
118
|
* The version of WASI requested.
|
|
117
|
-
* Currently the only supported versions are `'unstable'` and `'preview1'`.
|
|
118
|
-
* @since
|
|
119
|
+
* Currently the only supported versions are `'unstable'` and `'preview1'`. This option is mandatory.
|
|
120
|
+
* @since v19.8.0
|
|
119
121
|
*/
|
|
120
|
-
version:
|
|
122
|
+
version: "unstable" | "preview1";
|
|
121
123
|
}
|
|
122
124
|
/**
|
|
123
125
|
* The `WASI` class provides the WASI system call API and additional convenience
|
|
@@ -145,10 +147,10 @@ declare module "wasi" {
|
|
|
145
147
|
*/
|
|
146
148
|
getImportObject(): object;
|
|
147
149
|
/**
|
|
148
|
-
* Attempt to begin execution of `instance` as a WASI command by invoking its`_start()` export. If `instance` does not contain a `_start()` export, or if`instance` contains an `_initialize()`
|
|
150
|
+
* Attempt to begin execution of `instance` as a WASI command by invoking its `_start()` export. If `instance` does not contain a `_start()` export, or if `instance` contains an `_initialize()`
|
|
149
151
|
* export, then an exception is thrown.
|
|
150
152
|
*
|
|
151
|
-
* `start()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named`memory`. If
|
|
153
|
+
* `start()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named `memory`. If
|
|
152
154
|
* `instance` does not have a `memory` export an exception is thrown.
|
|
153
155
|
*
|
|
154
156
|
* If `start()` is called more than once, an exception is thrown.
|
|
@@ -156,9 +158,9 @@ declare module "wasi" {
|
|
|
156
158
|
*/
|
|
157
159
|
start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.
|
|
158
160
|
/**
|
|
159
|
-
* 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.
|
|
161
|
+
* 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.
|
|
160
162
|
*
|
|
161
|
-
* `initialize()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named`memory`.
|
|
163
|
+
* `initialize()` requires that `instance` exports a [`WebAssembly.Memory`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Memory) named `memory`.
|
|
162
164
|
* If `instance` does not have a `memory` export an exception is thrown.
|
|
163
165
|
*
|
|
164
166
|
* If `initialize()` is called more than once, an exception is thrown.
|