@types/node 20.11.24 → 20.11.26

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.
Files changed (56) hide show
  1. node/README.md +2 -2
  2. node/package.json +3 -15
  3. node/ts4.8/assert/strict.d.ts +0 -8
  4. node/ts4.8/assert.d.ts +0 -996
  5. node/ts4.8/async_hooks.d.ts +0 -539
  6. node/ts4.8/buffer.d.ts +0 -2363
  7. node/ts4.8/child_process.d.ts +0 -1540
  8. node/ts4.8/cluster.d.ts +0 -432
  9. node/ts4.8/console.d.ts +0 -415
  10. node/ts4.8/constants.d.ts +0 -19
  11. node/ts4.8/crypto.d.ts +0 -4487
  12. node/ts4.8/dgram.d.ts +0 -596
  13. node/ts4.8/diagnostics_channel.d.ts +0 -545
  14. node/ts4.8/dns/promises.d.ts +0 -425
  15. node/ts4.8/dns.d.ts +0 -809
  16. node/ts4.8/dom-events.d.ts +0 -122
  17. node/ts4.8/domain.d.ts +0 -170
  18. node/ts4.8/events.d.ts +0 -896
  19. node/ts4.8/fs/promises.d.ts +0 -1239
  20. node/ts4.8/fs.d.ts +0 -4311
  21. node/ts4.8/globals.d.ts +0 -411
  22. node/ts4.8/globals.global.d.ts +0 -1
  23. node/ts4.8/http.d.ts +0 -1889
  24. node/ts4.8/http2.d.ts +0 -2382
  25. node/ts4.8/https.d.ts +0 -550
  26. node/ts4.8/index.d.ts +0 -88
  27. node/ts4.8/inspector.d.ts +0 -2747
  28. node/ts4.8/module.d.ts +0 -315
  29. node/ts4.8/net.d.ts +0 -954
  30. node/ts4.8/os.d.ts +0 -478
  31. node/ts4.8/path.d.ts +0 -191
  32. node/ts4.8/perf_hooks.d.ts +0 -645
  33. node/ts4.8/process.d.ts +0 -1561
  34. node/ts4.8/punycode.d.ts +0 -117
  35. node/ts4.8/querystring.d.ts +0 -141
  36. node/ts4.8/readline/promises.d.ts +0 -150
  37. node/ts4.8/readline.d.ts +0 -539
  38. node/ts4.8/repl.d.ts +0 -430
  39. node/ts4.8/stream/consumers.d.ts +0 -12
  40. node/ts4.8/stream/promises.d.ts +0 -83
  41. node/ts4.8/stream/web.d.ts +0 -366
  42. node/ts4.8/stream.d.ts +0 -1701
  43. node/ts4.8/string_decoder.d.ts +0 -67
  44. node/ts4.8/test.d.ts +0 -1465
  45. node/ts4.8/timers/promises.d.ts +0 -93
  46. node/ts4.8/timers.d.ts +0 -240
  47. node/ts4.8/tls.d.ts +0 -1210
  48. node/ts4.8/trace_events.d.ts +0 -182
  49. node/ts4.8/tty.d.ts +0 -208
  50. node/ts4.8/url.d.ts +0 -944
  51. node/ts4.8/util.d.ts +0 -2183
  52. node/ts4.8/v8.d.ts +0 -764
  53. node/ts4.8/vm.d.ts +0 -903
  54. node/ts4.8/wasi.d.ts +0 -179
  55. node/ts4.8/worker_threads.d.ts +0 -691
  56. node/ts4.8/zlib.d.ts +0 -517
@@ -1,425 +0,0 @@
1
- /**
2
- * The `dns.promises` API provides an alternative set of asynchronous DNS methods
3
- * that return `Promise` objects rather than using callbacks. The API is accessible
4
- * via `require('node:dns').promises` or `require('node:dns/promises')`.
5
- * @since v10.6.0
6
- */
7
- declare module "dns/promises" {
8
- import {
9
- AnyRecord,
10
- CaaRecord,
11
- LookupAddress,
12
- LookupAllOptions,
13
- LookupOneOptions,
14
- LookupOptions,
15
- MxRecord,
16
- NaptrRecord,
17
- RecordWithTtl,
18
- ResolveOptions,
19
- ResolverOptions,
20
- ResolveWithTtlOptions,
21
- SoaRecord,
22
- SrvRecord,
23
- } from "node:dns";
24
- /**
25
- * Returns an array of IP address strings, formatted according to [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6),
26
- * that are currently configured for DNS resolution. A string will include a port
27
- * section if a custom port is used.
28
- *
29
- * ```js
30
- * [
31
- * '4.4.4.4',
32
- * '2001:4860:4860::8888',
33
- * '4.4.4.4:1053',
34
- * '[2001:4860:4860::8888]:1053',
35
- * ]
36
- * ```
37
- * @since v10.6.0
38
- */
39
- function getServers(): string[];
40
- /**
41
- * Resolves a host name (e.g. `'nodejs.org'`) into the first found A (IPv4) or
42
- * AAAA (IPv6) record. All `option` properties are optional. If `options` is an
43
- * integer, then it must be `4` or `6` – if `options` is not provided, then IPv4
44
- * and IPv6 addresses are both returned if found.
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`.
47
- *
48
- * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code.
49
- * Keep in mind that `err.code` will be set to `'ENOTFOUND'` not only when
50
- * the host name does not exist but also when the lookup fails in other ways
51
- * such as no available file descriptors.
52
- *
53
- * `dnsPromises.lookup()` does not necessarily have anything to do with the DNS
54
- * protocol. The implementation uses an operating system facility that can
55
- * associate names with addresses and vice versa. This implementation can have
56
- * subtle but important consequences on the behavior of any Node.js program. Please
57
- * take some time to consult the `Implementation considerations section` before
58
- * using `dnsPromises.lookup()`.
59
- *
60
- * Example usage:
61
- *
62
- * ```js
63
- * const dns = require('node:dns');
64
- * const dnsPromises = dns.promises;
65
- * const options = {
66
- * family: 6,
67
- * hints: dns.ADDRCONFIG | dns.V4MAPPED,
68
- * };
69
- *
70
- * dnsPromises.lookup('example.com', options).then((result) => {
71
- * console.log('address: %j family: IPv%s', result.address, result.family);
72
- * // address: "2606:2800:220:1:248:1893:25c8:1946" family: IPv6
73
- * });
74
- *
75
- * // When options.all is true, the result will be an Array.
76
- * options.all = true;
77
- * dnsPromises.lookup('example.com', options).then((result) => {
78
- * console.log('addresses: %j', result);
79
- * // addresses: [{"address":"2606:2800:220:1:248:1893:25c8:1946","family":6}]
80
- * });
81
- * ```
82
- * @since v10.6.0
83
- */
84
- function lookup(hostname: string, family: number): Promise<LookupAddress>;
85
- function lookup(hostname: string, options: LookupOneOptions): Promise<LookupAddress>;
86
- function lookup(hostname: string, options: LookupAllOptions): Promise<LookupAddress[]>;
87
- function lookup(hostname: string, options: LookupOptions): Promise<LookupAddress | LookupAddress[]>;
88
- function lookup(hostname: string): Promise<LookupAddress>;
89
- /**
90
- * Resolves the given `address` and `port` into a host name and service using
91
- * the operating system's underlying `getnameinfo` implementation.
92
- *
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.
95
- *
96
- * On error, the `Promise` is rejected with an `Error` object, where `err.code`is the error code.
97
- *
98
- * ```js
99
- * const dnsPromises = require('node:dns').promises;
100
- * dnsPromises.lookupService('127.0.0.1', 22).then((result) => {
101
- * console.log(result.hostname, result.service);
102
- * // Prints: localhost ssh
103
- * });
104
- * ```
105
- * @since v10.6.0
106
- */
107
- function lookupService(
108
- address: string,
109
- port: number,
110
- ): Promise<{
111
- hostname: string;
112
- service: string;
113
- }>;
114
- /**
115
- * Uses the DNS protocol to resolve a host name (e.g. `'nodejs.org'`) into an array
116
- * of the resource records. When successful, the `Promise` is resolved with an
117
- * array of resource records. The type and structure of individual results vary
118
- * based on `rrtype`:
119
- *
120
- * <omitted>
121
- *
122
- * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`.
123
- * @since v10.6.0
124
- * @param hostname Host name to resolve.
125
- * @param [rrtype='A'] Resource record type.
126
- */
127
- function resolve(hostname: string): Promise<string[]>;
128
- function resolve(hostname: string, rrtype: "A"): Promise<string[]>;
129
- function resolve(hostname: string, rrtype: "AAAA"): Promise<string[]>;
130
- function resolve(hostname: string, rrtype: "ANY"): Promise<AnyRecord[]>;
131
- function resolve(hostname: string, rrtype: "CAA"): Promise<CaaRecord[]>;
132
- function resolve(hostname: string, rrtype: "CNAME"): Promise<string[]>;
133
- function resolve(hostname: string, rrtype: "MX"): Promise<MxRecord[]>;
134
- function resolve(hostname: string, rrtype: "NAPTR"): Promise<NaptrRecord[]>;
135
- function resolve(hostname: string, rrtype: "NS"): Promise<string[]>;
136
- function resolve(hostname: string, rrtype: "PTR"): Promise<string[]>;
137
- function resolve(hostname: string, rrtype: "SOA"): Promise<SoaRecord>;
138
- function resolve(hostname: string, rrtype: "SRV"): Promise<SrvRecord[]>;
139
- function resolve(hostname: string, rrtype: "TXT"): Promise<string[][]>;
140
- function resolve(
141
- hostname: string,
142
- rrtype: string,
143
- ): Promise<string[] | MxRecord[] | NaptrRecord[] | SoaRecord | SrvRecord[] | string[][] | AnyRecord[]>;
144
- /**
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
- * addresses (e.g. `['74.125.79.104', '74.125.79.105', '74.125.79.106']`).
147
- * @since v10.6.0
148
- * @param hostname Host name to resolve.
149
- */
150
- function resolve4(hostname: string): Promise<string[]>;
151
- function resolve4(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;
152
- function resolve4(hostname: string, options: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
153
- /**
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
- * addresses.
156
- * @since v10.6.0
157
- * @param hostname Host name to resolve.
158
- */
159
- function resolve6(hostname: string): Promise<string[]>;
160
- function resolve6(hostname: string, options: ResolveWithTtlOptions): Promise<RecordWithTtl[]>;
161
- function resolve6(hostname: string, options: ResolveOptions): Promise<string[] | RecordWithTtl[]>;
162
- /**
163
- * Uses the DNS protocol to resolve all records (also known as `ANY` or `*` query).
164
- * On success, the `Promise` is resolved with an array containing various types of
165
- * records. Each object has a property `type` that indicates the type of the
166
- * current record. And depending on the `type`, additional properties will be
167
- * present on the object:
168
- *
169
- * <omitted>
170
- *
171
- * Here is an example of the result object:
172
- *
173
- * ```js
174
- * [ { type: 'A', address: '127.0.0.1', ttl: 299 },
175
- * { type: 'CNAME', value: 'example.com' },
176
- * { type: 'MX', exchange: 'alt4.aspmx.l.example.com', priority: 50 },
177
- * { type: 'NS', value: 'ns1.example.com' },
178
- * { type: 'TXT', entries: [ 'v=spf1 include:_spf.example.com ~all' ] },
179
- * { type: 'SOA',
180
- * nsname: 'ns1.example.com',
181
- * hostmaster: 'admin.example.com',
182
- * serial: 156696742,
183
- * refresh: 900,
184
- * retry: 900,
185
- * expire: 1800,
186
- * minttl: 60 } ]
187
- * ```
188
- * @since v10.6.0
189
- */
190
- function resolveAny(hostname: string): Promise<AnyRecord[]>;
191
- /**
192
- * Uses the DNS protocol to resolve `CAA` records for the `hostname`. On success,
193
- * 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
- * @since v15.0.0, v14.17.0
196
- */
197
- function resolveCaa(hostname: string): Promise<CaaRecord[]>;
198
- /**
199
- * Uses the DNS protocol to resolve `CNAME` records for the `hostname`. On success,
200
- * the `Promise` is resolved with an array of canonical name records available for
201
- * the `hostname` (e.g. `['bar.example.com']`).
202
- * @since v10.6.0
203
- */
204
- function resolveCname(hostname: string): Promise<string[]>;
205
- /**
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
- * containing both a `priority` and `exchange` property (e.g.`[{priority: 10, exchange: 'mx.example.com'}, ...]`).
208
- * @since v10.6.0
209
- */
210
- function resolveMx(hostname: string): Promise<MxRecord[]>;
211
- /**
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
- * of objects with the following properties:
214
- *
215
- * * `flags`
216
- * * `service`
217
- * * `regexp`
218
- * * `replacement`
219
- * * `order`
220
- * * `preference`
221
- *
222
- * ```js
223
- * {
224
- * flags: 's',
225
- * service: 'SIP+D2U',
226
- * regexp: '',
227
- * replacement: '_sip._udp.example.com',
228
- * order: 30,
229
- * preference: 100
230
- * }
231
- * ```
232
- * @since v10.6.0
233
- */
234
- function resolveNaptr(hostname: string): Promise<NaptrRecord[]>;
235
- /**
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
- * records available for `hostname` (e.g.`['ns1.example.com', 'ns2.example.com']`).
238
- * @since v10.6.0
239
- */
240
- function resolveNs(hostname: string): Promise<string[]>;
241
- /**
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
- * containing the reply records.
244
- * @since v10.6.0
245
- */
246
- function resolvePtr(hostname: string): Promise<string[]>;
247
- /**
248
- * Uses the DNS protocol to resolve a start of authority record (`SOA` record) for
249
- * the `hostname`. On success, the `Promise` is resolved with an object with the
250
- * following properties:
251
- *
252
- * * `nsname`
253
- * * `hostmaster`
254
- * * `serial`
255
- * * `refresh`
256
- * * `retry`
257
- * * `expire`
258
- * * `minttl`
259
- *
260
- * ```js
261
- * {
262
- * nsname: 'ns.example.com',
263
- * hostmaster: 'root.example.com',
264
- * serial: 2013101809,
265
- * refresh: 10000,
266
- * retry: 2400,
267
- * expire: 604800,
268
- * minttl: 3600
269
- * }
270
- * ```
271
- * @since v10.6.0
272
- */
273
- function resolveSoa(hostname: string): Promise<SoaRecord>;
274
- /**
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
- * the following properties:
277
- *
278
- * * `priority`
279
- * * `weight`
280
- * * `port`
281
- * * `name`
282
- *
283
- * ```js
284
- * {
285
- * priority: 10,
286
- * weight: 5,
287
- * port: 21223,
288
- * name: 'service.example.com'
289
- * }
290
- * ```
291
- * @since v10.6.0
292
- */
293
- function resolveSrv(hostname: string): Promise<SrvRecord[]>;
294
- /**
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
- * 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
- * one record. Depending on the use case, these could be either joined together or
298
- * treated separately.
299
- * @since v10.6.0
300
- */
301
- function resolveTxt(hostname: string): Promise<string[][]>;
302
- /**
303
- * Performs a reverse DNS query that resolves an IPv4 or IPv6 address to an
304
- * array of host names.
305
- *
306
- * On error, the `Promise` is rejected with an `Error` object, where `err.code`is one of the `DNS error codes`.
307
- * @since v10.6.0
308
- */
309
- function reverse(ip: string): Promise<string[]>;
310
- /**
311
- * Get the default value for `verbatim` in {@link lookup} and `dnsPromises.lookup()`. The value could be:
312
- *
313
- * * `ipv4first`: for `verbatim` defaulting to `false`.
314
- * * `verbatim`: for `verbatim` defaulting to `true`.
315
- * @since v20.1.0
316
- */
317
- function getDefaultResultOrder(): "ipv4first" | "verbatim";
318
- /**
319
- * Sets the IP address and port of servers to be used when performing DNS
320
- * resolution. The `servers` argument is an array of [RFC 5952](https://tools.ietf.org/html/rfc5952#section-6) formatted
321
- * addresses. If the port is the IANA default DNS port (53) it can be omitted.
322
- *
323
- * ```js
324
- * dnsPromises.setServers([
325
- * '4.4.4.4',
326
- * '[2001:4860:4860::8888]',
327
- * '4.4.4.4:1053',
328
- * '[2001:4860:4860::8888]:1053',
329
- * ]);
330
- * ```
331
- *
332
- * An error will be thrown if an invalid address is provided.
333
- *
334
- * The `dnsPromises.setServers()` method must not be called while a DNS query is in
335
- * progress.
336
- *
337
- * This method works much like [resolve.conf](https://man7.org/linux/man-pages/man5/resolv.conf.5.html).
338
- * 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
339
- * subsequent servers provided. Fallback DNS servers will only be used if the
340
- * earlier ones time out or result in some other error.
341
- * @since v10.6.0
342
- * @param servers array of `RFC 5952` formatted addresses
343
- */
344
- function setServers(servers: readonly string[]): void;
345
- /**
346
- * Set the default value of `verbatim` in `dns.lookup()` and `dnsPromises.lookup()`. The value could be:
347
- *
348
- * * `ipv4first`: sets default `verbatim` `false`.
349
- * * `verbatim`: sets default `verbatim` `true`.
350
- *
351
- * The default is `verbatim` and `dnsPromises.setDefaultResultOrder()` have
352
- * higher priority than `--dns-result-order`. When using `worker threads`,`dnsPromises.setDefaultResultOrder()` from the main thread won't affect the
353
- * default dns orders in workers.
354
- * @since v16.4.0, v14.18.0
355
- * @param order must be `'ipv4first'` or `'verbatim'`.
356
- */
357
- function setDefaultResultOrder(order: "ipv4first" | "verbatim"): void;
358
- /**
359
- * An independent resolver for DNS requests.
360
- *
361
- * Creating a new resolver uses the default server settings. Setting
362
- * the servers used for a resolver using `resolver.setServers()` does not affect
363
- * other resolvers:
364
- *
365
- * ```js
366
- * const { Resolver } = require('node:dns').promises;
367
- * const resolver = new Resolver();
368
- * resolver.setServers(['4.4.4.4']);
369
- *
370
- * // This request will use the server at 4.4.4.4, independent of global settings.
371
- * resolver.resolve4('example.org').then((addresses) => {
372
- * // ...
373
- * });
374
- *
375
- * // Alternatively, the same code can be written using async-await style.
376
- * (async function() {
377
- * const addresses = await resolver.resolve4('example.org');
378
- * })();
379
- * ```
380
- *
381
- * The following methods from the `dnsPromises` API are available:
382
- *
383
- * * `resolver.getServers()`
384
- * * `resolver.resolve()`
385
- * * `resolver.resolve4()`
386
- * * `resolver.resolve6()`
387
- * * `resolver.resolveAny()`
388
- * * `resolver.resolveCaa()`
389
- * * `resolver.resolveCname()`
390
- * * `resolver.resolveMx()`
391
- * * `resolver.resolveNaptr()`
392
- * * `resolver.resolveNs()`
393
- * * `resolver.resolvePtr()`
394
- * * `resolver.resolveSoa()`
395
- * * `resolver.resolveSrv()`
396
- * * `resolver.resolveTxt()`
397
- * * `resolver.reverse()`
398
- * * `resolver.setServers()`
399
- * @since v10.6.0
400
- */
401
- class Resolver {
402
- constructor(options?: ResolverOptions);
403
- cancel(): void;
404
- getServers: typeof getServers;
405
- resolve: typeof resolve;
406
- resolve4: typeof resolve4;
407
- resolve6: typeof resolve6;
408
- resolveAny: typeof resolveAny;
409
- resolveCaa: typeof resolveCaa;
410
- resolveCname: typeof resolveCname;
411
- resolveMx: typeof resolveMx;
412
- resolveNaptr: typeof resolveNaptr;
413
- resolveNs: typeof resolveNs;
414
- resolvePtr: typeof resolvePtr;
415
- resolveSoa: typeof resolveSoa;
416
- resolveSrv: typeof resolveSrv;
417
- resolveTxt: typeof resolveTxt;
418
- reverse: typeof reverse;
419
- setLocalAddress(ipv4?: string, ipv6?: string): void;
420
- setServers: typeof setServers;
421
- }
422
- }
423
- declare module "node:dns/promises" {
424
- export * from "dns/promises";
425
- }