@types/node 20.11.25 → 20.11.27

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 (57) hide show
  1. node/README.md +1 -1
  2. node/crypto.d.ts +1 -1
  3. node/package.json +3 -10
  4. node/ts4.8/assert/strict.d.ts +0 -8
  5. node/ts4.8/assert.d.ts +0 -996
  6. node/ts4.8/async_hooks.d.ts +0 -539
  7. node/ts4.8/buffer.d.ts +0 -2363
  8. node/ts4.8/child_process.d.ts +0 -1540
  9. node/ts4.8/cluster.d.ts +0 -432
  10. node/ts4.8/console.d.ts +0 -415
  11. node/ts4.8/constants.d.ts +0 -19
  12. node/ts4.8/crypto.d.ts +0 -4487
  13. node/ts4.8/dgram.d.ts +0 -596
  14. node/ts4.8/diagnostics_channel.d.ts +0 -545
  15. node/ts4.8/dns/promises.d.ts +0 -425
  16. node/ts4.8/dns.d.ts +0 -809
  17. node/ts4.8/dom-events.d.ts +0 -122
  18. node/ts4.8/domain.d.ts +0 -170
  19. node/ts4.8/events.d.ts +0 -896
  20. node/ts4.8/fs/promises.d.ts +0 -1239
  21. node/ts4.8/fs.d.ts +0 -4311
  22. node/ts4.8/globals.d.ts +0 -411
  23. node/ts4.8/globals.global.d.ts +0 -1
  24. node/ts4.8/http.d.ts +0 -1889
  25. node/ts4.8/http2.d.ts +0 -2382
  26. node/ts4.8/https.d.ts +0 -550
  27. node/ts4.8/index.d.ts +0 -88
  28. node/ts4.8/inspector.d.ts +0 -2747
  29. node/ts4.8/module.d.ts +0 -315
  30. node/ts4.8/net.d.ts +0 -954
  31. node/ts4.8/os.d.ts +0 -478
  32. node/ts4.8/path.d.ts +0 -191
  33. node/ts4.8/perf_hooks.d.ts +0 -645
  34. node/ts4.8/process.d.ts +0 -1561
  35. node/ts4.8/punycode.d.ts +0 -117
  36. node/ts4.8/querystring.d.ts +0 -141
  37. node/ts4.8/readline/promises.d.ts +0 -150
  38. node/ts4.8/readline.d.ts +0 -539
  39. node/ts4.8/repl.d.ts +0 -430
  40. node/ts4.8/stream/consumers.d.ts +0 -12
  41. node/ts4.8/stream/promises.d.ts +0 -83
  42. node/ts4.8/stream/web.d.ts +0 -366
  43. node/ts4.8/stream.d.ts +0 -1701
  44. node/ts4.8/string_decoder.d.ts +0 -67
  45. node/ts4.8/test.d.ts +0 -1465
  46. node/ts4.8/timers/promises.d.ts +0 -93
  47. node/ts4.8/timers.d.ts +0 -240
  48. node/ts4.8/tls.d.ts +0 -1210
  49. node/ts4.8/trace_events.d.ts +0 -182
  50. node/ts4.8/tty.d.ts +0 -208
  51. node/ts4.8/url.d.ts +0 -944
  52. node/ts4.8/util.d.ts +0 -2183
  53. node/ts4.8/v8.d.ts +0 -764
  54. node/ts4.8/vm.d.ts +0 -903
  55. node/ts4.8/wasi.d.ts +0 -179
  56. node/ts4.8/worker_threads.d.ts +0 -691
  57. node/ts4.8/zlib.d.ts +0 -517
node/ts4.8/wasi.d.ts DELETED
@@ -1,179 +0,0 @@
1
- /**
2
- * **The `node:wasi` module does not currently provide the**
3
- * **comprehensive file system security properties provided by some WASI runtimes.**
4
- * **Full support for secure file system sandboxing may or may not be implemented in**
5
- * **future. In the mean time, do not rely on it to run untrusted code.**
6
- *
7
- * The WASI API provides an implementation of the [WebAssembly System Interface](https://wasi.dev/) specification. WASI gives WebAssembly applications access to the underlying
8
- * operating system via a collection of POSIX-like functions.
9
- *
10
- * ```js
11
- * import { readFile } from 'node:fs/promises';
12
- * import { WASI } from 'wasi';
13
- * import { argv, env } from 'node:process';
14
- *
15
- * const wasi = new WASI({
16
- * version: 'preview1',
17
- * args: argv,
18
- * env,
19
- * preopens: {
20
- * '/local': '/some/real/path/that/wasm/can/access',
21
- * },
22
- * });
23
- *
24
- * const wasm = await WebAssembly.compile(
25
- * await readFile(new URL('./demo.wasm', import.meta.url)),
26
- * );
27
- * const instance = await WebAssembly.instantiate(wasm, wasi.getImportObject());
28
- *
29
- * wasi.start(instance);
30
- * ```
31
- *
32
- * To run the above example, create a new WebAssembly text format file named`demo.wat`:
33
- *
34
- * ```text
35
- * (module
36
- * ;; Import the required fd_write WASI function which will write the given io vectors to stdout
37
- * ;; The function signature for fd_write is:
38
- * ;; (File Descriptor, *iovs, iovs_len, nwritten) -> Returns number of bytes written
39
- * (import "wasi_snapshot_preview1" "fd_write" (func $fd_write (param i32 i32 i32 i32) (result i32)))
40
- *
41
- * (memory 1)
42
- * (export "memory" (memory 0))
43
- *
44
- * ;; Write 'hello world\n' to memory at an offset of 8 bytes
45
- * ;; Note the trailing newline which is required for the text to appear
46
- * (data (i32.const 8) "hello world\n")
47
- *
48
- * (func $main (export "_start")
49
- * ;; Creating a new io vector within linear memory
50
- * (i32.store (i32.const 0) (i32.const 8)) ;; iov.iov_base - This is a pointer to the start of the 'hello world\n' string
51
- * (i32.store (i32.const 4) (i32.const 12)) ;; iov.iov_len - The length of the 'hello world\n' string
52
- *
53
- * (call $fd_write
54
- * (i32.const 1) ;; file_descriptor - 1 for stdout
55
- * (i32.const 0) ;; *iovs - The pointer to the iov array, which is stored at memory location 0
56
- * (i32.const 1) ;; iovs_len - We're printing 1 string stored in an iov - so one.
57
- * (i32.const 20) ;; nwritten - A place in memory to store the number of bytes written
58
- * )
59
- * drop ;; Discard the number of bytes written from the top of the stack
60
- * )
61
- * )
62
- * ```
63
- *
64
- * Use [wabt](https://github.com/WebAssembly/wabt) to compile `.wat` to `.wasm`
65
- *
66
- * ```bash
67
- * wat2wasm demo.wat
68
- * ```
69
- * @experimental
70
- * @see [source](https://github.com/nodejs/node/blob/v20.2.0/lib/wasi.js)
71
- */
72
- declare module "wasi" {
73
- interface WASIOptions {
74
- /**
75
- * An array of strings that the WebAssembly application will
76
- * see as command line arguments. The first argument is the virtual path to the
77
- * WASI command itself.
78
- */
79
- args?: string[] | undefined;
80
- /**
81
- * An object similar to `process.env` that the WebAssembly
82
- * application will see as its environment.
83
- */
84
- env?: object | undefined;
85
- /**
86
- * This object represents the WebAssembly application's
87
- * sandbox directory structure. The string keys of `preopens` are treated as
88
- * directories within the sandbox. The corresponding values in `preopens` are
89
- * the real paths to those directories on the host machine.
90
- */
91
- preopens?: NodeJS.Dict<string> | undefined;
92
- /**
93
- * By default, when WASI applications call `__wasi_proc_exit()`
94
- * `wasi.start()` will return with the exit code specified rather than terminatng the process.
95
- * Setting this option to `false` will cause the Node.js process to exit with
96
- * the specified exit code instead.
97
- * @default true
98
- */
99
- returnOnExit?: boolean | undefined;
100
- /**
101
- * The file descriptor used as standard input in the WebAssembly application.
102
- * @default 0
103
- */
104
- stdin?: number | undefined;
105
- /**
106
- * The file descriptor used as standard output in the WebAssembly application.
107
- * @default 1
108
- */
109
- stdout?: number | undefined;
110
- /**
111
- * The file descriptor used as standard error in the WebAssembly application.
112
- * @default 2
113
- */
114
- stderr?: number | undefined;
115
- /**
116
- * The version of WASI requested.
117
- * Currently the only supported versions are `'unstable'` and `'preview1'`.
118
- * @since v20.0.0
119
- */
120
- version: string;
121
- }
122
- /**
123
- * The `WASI` class provides the WASI system call API and additional convenience
124
- * methods for working with WASI-based applications. Each `WASI` instance
125
- * represents a distinct environment.
126
- * @since v13.3.0, v12.16.0
127
- */
128
- class WASI {
129
- constructor(options?: WASIOptions);
130
- /**
131
- * Return an import object that can be passed to `WebAssembly.instantiate()` if no other WASM imports are needed beyond those provided by WASI.
132
- *
133
- * If version `unstable` was passed into the constructor it will return:
134
- *
135
- * ```js
136
- * { wasi_unstable: wasi.wasiImport }
137
- * ```
138
- *
139
- * If version `preview1` was passed into the constructor or no version was specified it will return:
140
- *
141
- * ```js
142
- * { wasi_snapshot_preview1: wasi.wasiImport }
143
- * ```
144
- * @since v19.8.0
145
- */
146
- getImportObject(): object;
147
- /**
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()`
149
- * export, then an exception is thrown.
150
- *
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
152
- * `instance` does not have a `memory` export an exception is thrown.
153
- *
154
- * If `start()` is called more than once, an exception is thrown.
155
- * @since v13.3.0, v12.16.0
156
- */
157
- start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.
158
- /**
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.
160
- *
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`.
162
- * If `instance` does not have a `memory` export an exception is thrown.
163
- *
164
- * If `initialize()` is called more than once, an exception is thrown.
165
- * @since v14.6.0, v12.19.0
166
- */
167
- initialize(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib.
168
- /**
169
- * `wasiImport` is an object that implements the WASI system call API. This object
170
- * should be passed as the `wasi_snapshot_preview1` import during the instantiation
171
- * of a [`WebAssembly.Instance`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance).
172
- * @since v13.3.0, v12.16.0
173
- */
174
- readonly wasiImport: NodeJS.Dict<any>; // TODO: Narrow to DOM types
175
- }
176
- }
177
- declare module "node:wasi" {
178
- export * from "wasi";
179
- }