UNPKG

3.37 kBTypeScriptView Raw
1declare module 'wasi' {
2 interface WASIOptions {
3 /**
4 * An array of strings that the WebAssembly application will
5 * see as command line arguments. The first argument is the virtual path to the
6 * WASI command itself.
7 */
8 args?: string[];
9
10 /**
11 * An object similar to `process.env` that the WebAssembly
12 * application will see as its environment.
13 */
14 env?: object;
15
16 /**
17 * This object represents the WebAssembly application's
18 * sandbox directory structure. The string keys of `preopens` are treated as
19 * directories within the sandbox. The corresponding values in `preopens` are
20 * the real paths to those directories on the host machine.
21 */
22 preopens?: NodeJS.Dict<string>;
23
24 /**
25 * By default, WASI applications terminate the Node.js
26 * process via the `__wasi_proc_exit()` function. Setting this option to `true`
27 * causes `wasi.start()` to return the exit code rather than terminate the
28 * process.
29 * @default false
30 */
31 returnOnExit?: boolean;
32
33 /**
34 * The file descriptor used as standard input in the WebAssembly application.
35 * @default 0
36 */
37 stdin?: number;
38
39 /**
40 * The file descriptor used as standard output in the WebAssembly application.
41 * @default 1
42 */
43 stdout?: number;
44
45 /**
46 * The file descriptor used as standard error in the WebAssembly application.
47 * @default 2
48 */
49 stderr?: number;
50 }
51
52 class WASI {
53 constructor(options?: WASIOptions);
54 /**
55 *
56 * Attempt to begin execution of `instance` by invoking its `_start()` export.
57 * If `instance` does not contain a `_start()` export, then `start()` attempts to
58 * invoke the `__wasi_unstable_reactor_start()` export. If neither of those exports
59 * is present on `instance`, then `start()` does nothing.
60 *
61 * `start()` requires that `instance` exports a `WebAssembly.Memory` named
62 * `memory`. If `instance` does not have a `memory` export an exception is thrown.
63 *
64 * If `start()` is called more than once, an exception is thrown.
65 */
66 start(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib.
67
68 /**
69 * Attempt to initialize `instance` as a WASI reactor by invoking its `_initialize()` export, if it is present.
70 * If `instance` contains a `_start()` export, then an exception is thrown.
71 *
72 * `start()` requires that `instance` exports a `WebAssembly.Memory` named
73 * `memory`. If `instance` does not have a `memory` export an exception is thrown.
74 *
75 * If `initialize()` is called more than once, an exception is thrown.
76 */
77 initialize(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib.
78
79 /**
80 * Is an object that implements the WASI system call API. This object
81 * should be passed as the `wasi_snapshot_preview1` import during the instantiation of a
82 * `WebAssembly.Instance`.
83 */
84 readonly wasiImport: NodeJS.Dict<any>; // TODO: Narrow to DOM types
85 }
86}