@continuous-labs/sdk 0.0.4 → 0.0.6

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 (254) hide show
  1. package/README.md +1 -1
  2. package/esm/funcs/simulations-create-simulation.d.ts +1 -1
  3. package/esm/funcs/simulations-create-simulation.js +1 -1
  4. package/esm/funcs/simulations-fork-simulation.d.ts +1 -1
  5. package/esm/funcs/simulations-fork-simulation.js +1 -1
  6. package/esm/funcs/simulations-get-simulation.d.ts +1 -1
  7. package/esm/funcs/simulations-get-simulation.js +1 -1
  8. package/esm/funcs/simulations-list-simulation-steps.d.ts +1 -1
  9. package/esm/funcs/simulations-list-simulation-steps.js +1 -1
  10. package/esm/funcs/simulations-mint-simulation-token.d.ts +1 -1
  11. package/esm/funcs/simulations-mint-simulation-token.js +1 -1
  12. package/esm/funcs/simulations-start-simulation.d.ts +1 -1
  13. package/esm/funcs/simulations-start-simulation.js +1 -1
  14. package/esm/funcs/simulations-stop-simulation.d.ts +1 -1
  15. package/esm/funcs/simulations-stop-simulation.js +1 -1
  16. package/esm/funcs/simulators-build-simulator.d.ts +1 -1
  17. package/esm/funcs/simulators-build-simulator.js +1 -1
  18. package/esm/funcs/worlds-build-world.d.ts +1 -1
  19. package/esm/funcs/worlds-build-world.js +1 -1
  20. package/esm/funcs/worlds-start-world.d.ts +1 -1
  21. package/esm/funcs/worlds-start-world.js +1 -1
  22. package/esm/lib/config.d.ts +2 -2
  23. package/esm/lib/config.js +2 -2
  24. package/esm/models/build-simulator-request.d.ts +6 -6
  25. package/esm/models/build-simulator-request.js +1 -1
  26. package/esm/models/build-world-request.d.ts +2 -2
  27. package/esm/models/create-simulation-request.d.ts +1 -1
  28. package/esm/models/created-simulation.d.ts +8 -8
  29. package/esm/models/created-simulation.js +1 -1
  30. package/esm/models/list-worlds-response.d.ts +1 -1
  31. package/esm/models/operations/build-simulator.d.ts +1 -1
  32. package/esm/models/operations/cancel-simulator-build.d.ts +1 -1
  33. package/esm/models/operations/cancel-world-build.d.ts +1 -1
  34. package/esm/models/operations/delete-simulation.d.ts +1 -1
  35. package/esm/models/operations/delete-simulator.d.ts +1 -1
  36. package/esm/models/operations/delete-world.d.ts +1 -1
  37. package/esm/models/operations/fork-simulation.d.ts +1 -1
  38. package/esm/models/operations/get-simulation.d.ts +1 -1
  39. package/esm/models/operations/get-simulator.d.ts +1 -1
  40. package/esm/models/operations/get-world.d.ts +1 -1
  41. package/esm/models/operations/list-simulation-steps.d.ts +1 -1
  42. package/esm/models/operations/list-simulations.d.ts +4 -4
  43. package/esm/models/operations/list-simulations.js +1 -1
  44. package/esm/models/operations/list-simulators.d.ts +1 -1
  45. package/esm/models/operations/list-worlds.d.ts +1 -1
  46. package/esm/models/operations/mint-simulation-token.d.ts +1 -1
  47. package/esm/models/operations/start-simulation.d.ts +1 -1
  48. package/esm/models/operations/start-world.d.ts +1 -1
  49. package/esm/models/operations/stop-simulation.d.ts +1 -1
  50. package/esm/models/operations/stop-world.d.ts +1 -1
  51. package/esm/models/simulation-token.d.ts +1 -1
  52. package/esm/models/simulation.d.ts +7 -7
  53. package/esm/models/simulation.js +1 -1
  54. package/esm/models/simulator.d.ts +8 -8
  55. package/esm/models/simulator.js +2 -2
  56. package/esm/models/step.d.ts +2 -2
  57. package/esm/models/world-simulation.d.ts +2 -2
  58. package/esm/models/world.d.ts +7 -7
  59. package/esm/models/world.js +1 -1
  60. package/esm/sdk/simulations.d.ts +7 -7
  61. package/esm/sdk/simulations.js +7 -7
  62. package/esm/sdk/simulators.d.ts +1 -1
  63. package/esm/sdk/simulators.js +1 -1
  64. package/esm/sdk/worlds.d.ts +2 -2
  65. package/esm/sdk/worlds.js +2 -2
  66. package/jsr.json +1 -1
  67. package/package.json +2 -2
  68. package/src/funcs/simulations-create-simulation.ts +1 -1
  69. package/src/funcs/simulations-fork-simulation.ts +1 -1
  70. package/src/funcs/simulations-get-simulation.ts +1 -1
  71. package/src/funcs/simulations-list-simulation-steps.ts +1 -1
  72. package/src/funcs/simulations-mint-simulation-token.ts +1 -1
  73. package/src/funcs/simulations-start-simulation.ts +1 -1
  74. package/src/funcs/simulations-stop-simulation.ts +1 -1
  75. package/src/funcs/simulators-build-simulator.ts +1 -1
  76. package/src/funcs/worlds-build-world.ts +1 -1
  77. package/src/funcs/worlds-start-world.ts +1 -1
  78. package/src/lib/config.ts +2 -2
  79. package/src/models/build-simulator-request.ts +6 -6
  80. package/src/models/build-world-request.ts +2 -2
  81. package/src/models/create-simulation-request.ts +1 -1
  82. package/src/models/created-simulation.ts +8 -8
  83. package/src/models/list-worlds-response.ts +1 -1
  84. package/src/models/operations/build-simulator.ts +1 -1
  85. package/src/models/operations/cancel-simulator-build.ts +1 -1
  86. package/src/models/operations/cancel-world-build.ts +1 -1
  87. package/src/models/operations/delete-simulation.ts +1 -1
  88. package/src/models/operations/delete-simulator.ts +1 -1
  89. package/src/models/operations/delete-world.ts +1 -1
  90. package/src/models/operations/fork-simulation.ts +1 -1
  91. package/src/models/operations/get-simulation.ts +1 -1
  92. package/src/models/operations/get-simulator.ts +1 -1
  93. package/src/models/operations/get-world.ts +1 -1
  94. package/src/models/operations/list-simulation-steps.ts +1 -1
  95. package/src/models/operations/list-simulations.ts +4 -4
  96. package/src/models/operations/list-simulators.ts +1 -1
  97. package/src/models/operations/list-worlds.ts +1 -1
  98. package/src/models/operations/mint-simulation-token.ts +1 -1
  99. package/src/models/operations/start-simulation.ts +1 -1
  100. package/src/models/operations/start-world.ts +1 -1
  101. package/src/models/operations/stop-simulation.ts +1 -1
  102. package/src/models/operations/stop-world.ts +1 -1
  103. package/src/models/simulation-token.ts +1 -1
  104. package/src/models/simulation.ts +7 -7
  105. package/src/models/simulator.ts +8 -8
  106. package/src/models/step.ts +2 -2
  107. package/src/models/world-simulation.ts +2 -2
  108. package/src/models/world.ts +7 -7
  109. package/src/sdk/simulations.ts +7 -7
  110. package/src/sdk/simulators.ts +1 -1
  111. package/src/sdk/worlds.ts +2 -2
  112. package/esm/models/errors/continuous-simulation-default-error.d.ts +0 -10
  113. package/esm/models/errors/continuous-simulation-default-error.d.ts.map +0 -1
  114. package/esm/models/errors/continuous-simulation-default-error.js +0 -30
  115. package/esm/models/errors/continuous-simulation-default-error.js.map +0 -1
  116. package/esm/models/errors/continuous-simulation-error.d.ts +0 -19
  117. package/esm/models/errors/continuous-simulation-error.d.ts.map +0 -1
  118. package/esm/models/errors/continuous-simulation-error.js +0 -26
  119. package/esm/models/errors/continuous-simulation-error.js.map +0 -1
  120. package/examples/node_modules/@types/node/assert/strict.d.ts +0 -8
  121. package/examples/node_modules/@types/node/assert.d.ts +0 -1062
  122. package/examples/node_modules/@types/node/async_hooks.d.ts +0 -605
  123. package/examples/node_modules/@types/node/buffer.buffer.d.ts +0 -471
  124. package/examples/node_modules/@types/node/buffer.d.ts +0 -1936
  125. package/examples/node_modules/@types/node/child_process.d.ts +0 -1475
  126. package/examples/node_modules/@types/node/cluster.d.ts +0 -577
  127. package/examples/node_modules/@types/node/compatibility/disposable.d.ts +0 -16
  128. package/examples/node_modules/@types/node/compatibility/index.d.ts +0 -9
  129. package/examples/node_modules/@types/node/compatibility/indexable.d.ts +0 -20
  130. package/examples/node_modules/@types/node/compatibility/iterators.d.ts +0 -21
  131. package/examples/node_modules/@types/node/console.d.ts +0 -452
  132. package/examples/node_modules/@types/node/constants.d.ts +0 -21
  133. package/examples/node_modules/@types/node/crypto.d.ts +0 -4590
  134. package/examples/node_modules/@types/node/dgram.d.ts +0 -597
  135. package/examples/node_modules/@types/node/diagnostics_channel.d.ts +0 -578
  136. package/examples/node_modules/@types/node/dns/promises.d.ts +0 -479
  137. package/examples/node_modules/@types/node/dns.d.ts +0 -871
  138. package/examples/node_modules/@types/node/domain.d.ts +0 -170
  139. package/examples/node_modules/@types/node/events.d.ts +0 -977
  140. package/examples/node_modules/@types/node/fs/promises.d.ts +0 -1270
  141. package/examples/node_modules/@types/node/fs.d.ts +0 -4375
  142. package/examples/node_modules/@types/node/globals.d.ts +0 -172
  143. package/examples/node_modules/@types/node/globals.typedarray.d.ts +0 -38
  144. package/examples/node_modules/@types/node/http.d.ts +0 -2049
  145. package/examples/node_modules/@types/node/http2.d.ts +0 -2712
  146. package/examples/node_modules/@types/node/https.d.ts +0 -578
  147. package/examples/node_modules/@types/node/index.d.ts +0 -93
  148. package/examples/node_modules/@types/node/inspector.generated.d.ts +0 -3966
  149. package/examples/node_modules/@types/node/module.d.ts +0 -539
  150. package/examples/node_modules/@types/node/net.d.ts +0 -1031
  151. package/examples/node_modules/@types/node/os.d.ts +0 -506
  152. package/examples/node_modules/@types/node/path.d.ts +0 -200
  153. package/examples/node_modules/@types/node/perf_hooks.d.ts +0 -961
  154. package/examples/node_modules/@types/node/process.d.ts +0 -1961
  155. package/examples/node_modules/@types/node/punycode.d.ts +0 -117
  156. package/examples/node_modules/@types/node/querystring.d.ts +0 -152
  157. package/examples/node_modules/@types/node/readline/promises.d.ts +0 -162
  158. package/examples/node_modules/@types/node/readline.d.ts +0 -589
  159. package/examples/node_modules/@types/node/repl.d.ts +0 -430
  160. package/examples/node_modules/@types/node/sea.d.ts +0 -153
  161. package/examples/node_modules/@types/node/stream/consumers.d.ts +0 -38
  162. package/examples/node_modules/@types/node/stream/promises.d.ts +0 -90
  163. package/examples/node_modules/@types/node/stream/web.d.ts +0 -533
  164. package/examples/node_modules/@types/node/stream.d.ts +0 -1698
  165. package/examples/node_modules/@types/node/string_decoder.d.ts +0 -67
  166. package/examples/node_modules/@types/node/test.d.ts +0 -1787
  167. package/examples/node_modules/@types/node/timers/promises.d.ts +0 -108
  168. package/examples/node_modules/@types/node/timers.d.ts +0 -286
  169. package/examples/node_modules/@types/node/tls.d.ts +0 -1259
  170. package/examples/node_modules/@types/node/trace_events.d.ts +0 -197
  171. package/examples/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +0 -468
  172. package/examples/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +0 -34
  173. package/examples/node_modules/@types/node/ts5.6/index.d.ts +0 -93
  174. package/examples/node_modules/@types/node/tty.d.ts +0 -208
  175. package/examples/node_modules/@types/node/url.d.ts +0 -964
  176. package/examples/node_modules/@types/node/util.d.ts +0 -2331
  177. package/examples/node_modules/@types/node/v8.d.ts +0 -809
  178. package/examples/node_modules/@types/node/vm.d.ts +0 -1001
  179. package/examples/node_modules/@types/node/wasi.d.ts +0 -181
  180. package/examples/node_modules/@types/node/web-globals/abortcontroller.d.ts +0 -34
  181. package/examples/node_modules/@types/node/web-globals/domexception.d.ts +0 -68
  182. package/examples/node_modules/@types/node/web-globals/events.d.ts +0 -97
  183. package/examples/node_modules/@types/node/web-globals/fetch.d.ts +0 -55
  184. package/examples/node_modules/@types/node/worker_threads.d.ts +0 -715
  185. package/examples/node_modules/@types/node/zlib.d.ts +0 -598
  186. package/examples/node_modules/dotenv/config.d.ts +0 -1
  187. package/examples/node_modules/dotenv/config.js +0 -9
  188. package/examples/node_modules/dotenv/lib/cli-options.js +0 -17
  189. package/examples/node_modules/dotenv/lib/env-options.js +0 -28
  190. package/examples/node_modules/dotenv/lib/main.d.ts +0 -162
  191. package/examples/node_modules/dotenv/lib/main.js +0 -386
  192. package/examples/node_modules/esbuild/install.js +0 -300
  193. package/examples/node_modules/esbuild/lib/main.d.ts +0 -720
  194. package/examples/node_modules/esbuild/lib/main.js +0 -2536
  195. package/examples/node_modules/tsx/dist/cjs/api/index.mjs +0 -1
  196. package/examples/node_modules/tsx/dist/cjs/index.mjs +0 -1
  197. package/examples/node_modules/tsx/dist/cli.mjs +0 -55
  198. package/examples/node_modules/tsx/dist/client-D_mPDF5S.mjs +0 -1
  199. package/examples/node_modules/tsx/dist/esm/api/index.mjs +0 -1
  200. package/examples/node_modules/tsx/dist/esm/index.mjs +0 -1
  201. package/examples/node_modules/tsx/dist/get-pipe-path-_tAJyU_v.mjs +0 -1
  202. package/examples/node_modules/tsx/dist/index-DCefr8NP.mjs +0 -14
  203. package/examples/node_modules/tsx/dist/index-gbaejti9.mjs +0 -1
  204. package/examples/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +0 -3
  205. package/examples/node_modules/tsx/dist/loader.mjs +0 -1
  206. package/examples/node_modules/tsx/dist/node-features-JeyyvQz6.mjs +0 -1
  207. package/examples/node_modules/tsx/dist/package-BL7Whz21.mjs +0 -1
  208. package/examples/node_modules/tsx/dist/patch-repl.mjs +0 -1
  209. package/examples/node_modules/tsx/dist/preflight.mjs +0 -1
  210. package/examples/node_modules/tsx/dist/register-DHgpdRjs.mjs +0 -10
  211. package/examples/node_modules/tsx/dist/register-SoqaU4rg.mjs +0 -2
  212. package/examples/node_modules/tsx/dist/repl.mjs +0 -3
  213. package/examples/node_modules/tsx/dist/require-Cuv-0BLU.mjs +0 -1
  214. package/examples/node_modules/tsx/dist/suppress-warnings.mjs +0 -1
  215. package/examples/node_modules/tsx/dist/temporary-directory-BDDVQOvU.mjs +0 -1
  216. package/examples/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +0 -5
  217. package/examples/node_modules/undici-types/agent.d.ts +0 -31
  218. package/examples/node_modules/undici-types/api.d.ts +0 -43
  219. package/examples/node_modules/undici-types/balanced-pool.d.ts +0 -29
  220. package/examples/node_modules/undici-types/cache.d.ts +0 -36
  221. package/examples/node_modules/undici-types/client.d.ts +0 -108
  222. package/examples/node_modules/undici-types/connector.d.ts +0 -34
  223. package/examples/node_modules/undici-types/content-type.d.ts +0 -21
  224. package/examples/node_modules/undici-types/cookies.d.ts +0 -28
  225. package/examples/node_modules/undici-types/diagnostics-channel.d.ts +0 -66
  226. package/examples/node_modules/undici-types/dispatcher.d.ts +0 -256
  227. package/examples/node_modules/undici-types/env-http-proxy-agent.d.ts +0 -21
  228. package/examples/node_modules/undici-types/errors.d.ts +0 -149
  229. package/examples/node_modules/undici-types/eventsource.d.ts +0 -61
  230. package/examples/node_modules/undici-types/fetch.d.ts +0 -209
  231. package/examples/node_modules/undici-types/file.d.ts +0 -39
  232. package/examples/node_modules/undici-types/filereader.d.ts +0 -54
  233. package/examples/node_modules/undici-types/formdata.d.ts +0 -108
  234. package/examples/node_modules/undici-types/global-dispatcher.d.ts +0 -9
  235. package/examples/node_modules/undici-types/global-origin.d.ts +0 -7
  236. package/examples/node_modules/undici-types/handlers.d.ts +0 -15
  237. package/examples/node_modules/undici-types/header.d.ts +0 -4
  238. package/examples/node_modules/undici-types/index.d.ts +0 -71
  239. package/examples/node_modules/undici-types/interceptors.d.ts +0 -17
  240. package/examples/node_modules/undici-types/mock-agent.d.ts +0 -50
  241. package/examples/node_modules/undici-types/mock-client.d.ts +0 -25
  242. package/examples/node_modules/undici-types/mock-errors.d.ts +0 -12
  243. package/examples/node_modules/undici-types/mock-interceptor.d.ts +0 -93
  244. package/examples/node_modules/undici-types/mock-pool.d.ts +0 -25
  245. package/examples/node_modules/undici-types/patch.d.ts +0 -33
  246. package/examples/node_modules/undici-types/pool-stats.d.ts +0 -19
  247. package/examples/node_modules/undici-types/pool.d.ts +0 -39
  248. package/examples/node_modules/undici-types/proxy-agent.d.ts +0 -28
  249. package/examples/node_modules/undici-types/readable.d.ts +0 -65
  250. package/examples/node_modules/undici-types/retry-agent.d.ts +0 -8
  251. package/examples/node_modules/undici-types/retry-handler.d.ts +0 -116
  252. package/examples/node_modules/undici-types/util.d.ts +0 -18
  253. package/examples/node_modules/undici-types/webidl.d.ts +0 -228
  254. package/examples/node_modules/undici-types/websocket.d.ts +0 -150
@@ -1,181 +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.13.1/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
- * @default []
79
- */
80
- args?: readonly string[] | undefined;
81
- /**
82
- * An object similar to `process.env` that the WebAssembly
83
- * application will see as its environment.
84
- * @default {}
85
- */
86
- env?: object | undefined;
87
- /**
88
- * This object represents the WebAssembly application's
89
- * sandbox directory structure. The string keys of `preopens` are treated as
90
- * directories within the sandbox. The corresponding values in `preopens` are
91
- * the real paths to those directories on the host machine.
92
- */
93
- preopens?: NodeJS.Dict<string> | undefined;
94
- /**
95
- * By default, when WASI applications call `__wasi_proc_exit()`
96
- * `wasi.start()` will return with the exit code specified rather than terminatng the process.
97
- * Setting this option to `false` will cause the Node.js process to exit with
98
- * the specified exit code instead.
99
- * @default true
100
- */
101
- returnOnExit?: boolean | undefined;
102
- /**
103
- * The file descriptor used as standard input in the WebAssembly application.
104
- * @default 0
105
- */
106
- stdin?: number | undefined;
107
- /**
108
- * The file descriptor used as standard output in the WebAssembly application.
109
- * @default 1
110
- */
111
- stdout?: number | undefined;
112
- /**
113
- * The file descriptor used as standard error in the WebAssembly application.
114
- * @default 2
115
- */
116
- stderr?: number | undefined;
117
- /**
118
- * The version of WASI requested.
119
- * Currently the only supported versions are `'unstable'` and `'preview1'`. This option is mandatory.
120
- * @since v19.8.0
121
- */
122
- version: "unstable" | "preview1";
123
- }
124
- /**
125
- * The `WASI` class provides the WASI system call API and additional convenience
126
- * methods for working with WASI-based applications. Each `WASI` instance
127
- * represents a distinct environment.
128
- * @since v13.3.0, v12.16.0
129
- */
130
- class WASI {
131
- constructor(options?: WASIOptions);
132
- /**
133
- * Return an import object that can be passed to `WebAssembly.instantiate()` if no other WASM imports are needed beyond those provided by WASI.
134
- *
135
- * If version `unstable` was passed into the constructor it will return:
136
- *
137
- * ```js
138
- * { wasi_unstable: wasi.wasiImport }
139
- * ```
140
- *
141
- * If version `preview1` was passed into the constructor or no version was specified it will return:
142
- *
143
- * ```js
144
- * { wasi_snapshot_preview1: wasi.wasiImport }
145
- * ```
146
- * @since v19.8.0
147
- */
148
- getImportObject(): object;
149
- /**
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()`
151
- * export, then an exception is thrown.
152
- *
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
154
- * `instance` does not have a `memory` export an exception is thrown.
155
- *
156
- * If `start()` is called more than once, an exception is thrown.
157
- * @since v13.3.0, v12.16.0
158
- */
159
- start(instance: object): number; // TODO: avoid DOM dependency until WASM moved to own lib.
160
- /**
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.
162
- *
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`.
164
- * If `instance` does not have a `memory` export an exception is thrown.
165
- *
166
- * If `initialize()` is called more than once, an exception is thrown.
167
- * @since v14.6.0, v12.19.0
168
- */
169
- initialize(instance: object): void; // TODO: avoid DOM dependency until WASM moved to own lib.
170
- /**
171
- * `wasiImport` is an object that implements the WASI system call API. This object
172
- * should be passed as the `wasi_snapshot_preview1` import during the instantiation
173
- * of a [`WebAssembly.Instance`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WebAssembly/Instance).
174
- * @since v13.3.0, v12.16.0
175
- */
176
- readonly wasiImport: NodeJS.Dict<any>; // TODO: Narrow to DOM types
177
- }
178
- }
179
- declare module "node:wasi" {
180
- export * from "wasi";
181
- }
@@ -1,34 +0,0 @@
1
- export {};
2
-
3
- type _AbortController = typeof globalThis extends { onmessage: any } ? {} : AbortController;
4
- interface AbortController {
5
- readonly signal: AbortSignal;
6
- abort(reason?: any): void;
7
- }
8
-
9
- type _AbortSignal = typeof globalThis extends { onmessage: any } ? {} : AbortSignal;
10
- interface AbortSignal extends EventTarget {
11
- readonly aborted: boolean;
12
- onabort: ((this: AbortSignal, ev: Event) => any) | null;
13
- readonly reason: any;
14
- throwIfAborted(): void;
15
- }
16
-
17
- declare global {
18
- interface AbortController extends _AbortController {}
19
- var AbortController: typeof globalThis extends { onmessage: any; AbortController: infer T } ? T
20
- : {
21
- prototype: AbortController;
22
- new(): AbortController;
23
- };
24
-
25
- interface AbortSignal extends _AbortSignal {}
26
- var AbortSignal: typeof globalThis extends { onmessage: any; AbortSignal: infer T } ? T
27
- : {
28
- prototype: AbortSignal;
29
- new(): AbortSignal;
30
- abort(reason?: any): AbortSignal;
31
- any(signals: AbortSignal[]): AbortSignal;
32
- timeout(milliseconds: number): AbortSignal;
33
- };
34
- }
@@ -1,68 +0,0 @@
1
- export {};
2
-
3
- type _DOMException = typeof globalThis extends { onmessage: any } ? {} : DOMException;
4
- interface DOMException extends Error {
5
- readonly code: number;
6
- readonly message: string;
7
- readonly name: string;
8
- readonly INDEX_SIZE_ERR: 1;
9
- readonly DOMSTRING_SIZE_ERR: 2;
10
- readonly HIERARCHY_REQUEST_ERR: 3;
11
- readonly WRONG_DOCUMENT_ERR: 4;
12
- readonly INVALID_CHARACTER_ERR: 5;
13
- readonly NO_DATA_ALLOWED_ERR: 6;
14
- readonly NO_MODIFICATION_ALLOWED_ERR: 7;
15
- readonly NOT_FOUND_ERR: 8;
16
- readonly NOT_SUPPORTED_ERR: 9;
17
- readonly INUSE_ATTRIBUTE_ERR: 10;
18
- readonly INVALID_STATE_ERR: 11;
19
- readonly SYNTAX_ERR: 12;
20
- readonly INVALID_MODIFICATION_ERR: 13;
21
- readonly NAMESPACE_ERR: 14;
22
- readonly INVALID_ACCESS_ERR: 15;
23
- readonly VALIDATION_ERR: 16;
24
- readonly TYPE_MISMATCH_ERR: 17;
25
- readonly SECURITY_ERR: 18;
26
- readonly NETWORK_ERR: 19;
27
- readonly ABORT_ERR: 20;
28
- readonly URL_MISMATCH_ERR: 21;
29
- readonly QUOTA_EXCEEDED_ERR: 22;
30
- readonly TIMEOUT_ERR: 23;
31
- readonly INVALID_NODE_TYPE_ERR: 24;
32
- readonly DATA_CLONE_ERR: 25;
33
- }
34
-
35
- declare global {
36
- interface DOMException extends _DOMException {}
37
- var DOMException: typeof globalThis extends { onmessage: any; DOMException: infer T } ? T
38
- : {
39
- prototype: DOMException;
40
- new(message?: string, name?: string): DOMException;
41
- new(message?: string, options?: { name?: string; cause?: unknown }): DOMException;
42
- readonly INDEX_SIZE_ERR: 1;
43
- readonly DOMSTRING_SIZE_ERR: 2;
44
- readonly HIERARCHY_REQUEST_ERR: 3;
45
- readonly WRONG_DOCUMENT_ERR: 4;
46
- readonly INVALID_CHARACTER_ERR: 5;
47
- readonly NO_DATA_ALLOWED_ERR: 6;
48
- readonly NO_MODIFICATION_ALLOWED_ERR: 7;
49
- readonly NOT_FOUND_ERR: 8;
50
- readonly NOT_SUPPORTED_ERR: 9;
51
- readonly INUSE_ATTRIBUTE_ERR: 10;
52
- readonly INVALID_STATE_ERR: 11;
53
- readonly SYNTAX_ERR: 12;
54
- readonly INVALID_MODIFICATION_ERR: 13;
55
- readonly NAMESPACE_ERR: 14;
56
- readonly INVALID_ACCESS_ERR: 15;
57
- readonly VALIDATION_ERR: 16;
58
- readonly TYPE_MISMATCH_ERR: 17;
59
- readonly SECURITY_ERR: 18;
60
- readonly NETWORK_ERR: 19;
61
- readonly ABORT_ERR: 20;
62
- readonly URL_MISMATCH_ERR: 21;
63
- readonly QUOTA_EXCEEDED_ERR: 22;
64
- readonly TIMEOUT_ERR: 23;
65
- readonly INVALID_NODE_TYPE_ERR: 24;
66
- readonly DATA_CLONE_ERR: 25;
67
- };
68
- }
@@ -1,97 +0,0 @@
1
- export {};
2
-
3
- interface AddEventListenerOptions extends EventListenerOptions {
4
- once?: boolean;
5
- passive?: boolean;
6
- signal?: AbortSignal;
7
- }
8
-
9
- type _CustomEvent<T = any> = typeof globalThis extends { onmessage: any } ? {} : CustomEvent<T>;
10
- interface CustomEvent<T = any> extends Event {
11
- readonly detail: T;
12
- }
13
-
14
- interface CustomEventInit<T = any> extends EventInit {
15
- detail?: T;
16
- }
17
-
18
- type _Event = typeof globalThis extends { onmessage: any } ? {} : Event;
19
- interface Event {
20
- readonly bubbles: boolean;
21
- cancelBubble: boolean;
22
- readonly cancelable: boolean;
23
- readonly composed: boolean;
24
- readonly currentTarget: EventTarget | null;
25
- readonly defaultPrevented: boolean;
26
- readonly eventPhase: 0 | 2;
27
- readonly isTrusted: boolean;
28
- returnValue: boolean;
29
- readonly srcElement: EventTarget | null;
30
- readonly target: EventTarget | null;
31
- readonly timeStamp: number;
32
- readonly type: string;
33
- composedPath(): [EventTarget?];
34
- initEvent(type: string, bubbles?: boolean, cancelable?: boolean): void;
35
- preventDefault(): void;
36
- stopImmediatePropagation(): void;
37
- stopPropagation(): void;
38
- }
39
-
40
- interface EventInit {
41
- bubbles?: boolean;
42
- cancelable?: boolean;
43
- composed?: boolean;
44
- }
45
-
46
- interface EventListener {
47
- (evt: Event): void;
48
- }
49
-
50
- interface EventListenerObject {
51
- handleEvent(object: Event): void;
52
- }
53
-
54
- type _EventListenerOptions = typeof globalThis extends { onmessage: any } ? {} : EventListenerOptions;
55
- interface EventListenerOptions {
56
- capture?: boolean;
57
- }
58
-
59
- type _EventTarget = typeof globalThis extends { onmessage: any } ? {} : EventTarget;
60
- interface EventTarget {
61
- addEventListener(
62
- type: string,
63
- listener: EventListener | EventListenerObject,
64
- options?: AddEventListenerOptions | boolean,
65
- ): void;
66
- dispatchEvent(event: Event): boolean;
67
- removeEventListener(
68
- type: string,
69
- listener: EventListener | EventListenerObject,
70
- options?: EventListenerOptions | boolean,
71
- ): void;
72
- }
73
-
74
- declare global {
75
- interface CustomEvent<T = any> extends _CustomEvent<T> {}
76
- var CustomEvent: typeof globalThis extends { onmessage: any; CustomEvent: infer T } ? T
77
- : {
78
- prototype: CustomEvent;
79
- new<T>(type: string, eventInitDict?: CustomEventInit<T>): CustomEvent<T>;
80
- };
81
-
82
- interface Event extends _Event {}
83
- var Event: typeof globalThis extends { onmessage: any; Event: infer T } ? T
84
- : {
85
- prototype: Event;
86
- new(type: string, eventInitDict?: EventInit): Event;
87
- };
88
-
89
- interface EventListenerOptions extends _EventListenerOptions {}
90
-
91
- interface EventTarget extends _EventTarget {}
92
- var EventTarget: typeof globalThis extends { onmessage: any; EventTarget: infer T } ? T
93
- : {
94
- prototype: EventTarget;
95
- new(): EventTarget;
96
- };
97
- }
@@ -1,55 +0,0 @@
1
- export {};
2
-
3
- import * as undici from "undici-types";
4
-
5
- type _EventSource = typeof globalThis extends { onmessage: any } ? {} : undici.EventSource;
6
- type _EventSourceInit = typeof globalThis extends { onmessage: any } ? {} : undici.EventSourceInit;
7
- type _FormData = typeof globalThis extends { onmessage: any } ? {} : undici.FormData;
8
- type _Headers = typeof globalThis extends { onmessage: any } ? {} : undici.Headers;
9
- type _MessageEvent = typeof globalThis extends { onmessage: any } ? {} : undici.MessageEvent;
10
- type _MessageEventInit = typeof globalThis extends { onmessage: any } ? {} : undici.MessageEventInit;
11
- type _Request = typeof globalThis extends { onmessage: any } ? {} : undici.Request;
12
- type _RequestInit = typeof globalThis extends { onmessage: any } ? {} : undici.RequestInit;
13
- type _Response = typeof globalThis extends { onmessage: any } ? {} : undici.Response;
14
- type _ResponseInit = typeof globalThis extends { onmessage: any } ? {} : undici.ResponseInit;
15
- type _WebSocket = typeof globalThis extends { onmessage: any } ? {} : undici.WebSocket;
16
- type _WebSocketInit = typeof globalThis extends { onmessage: any } ? {} : undici.WebSocketInit;
17
-
18
- declare global {
19
- function fetch(
20
- input: string | URL | Request,
21
- init?: RequestInit,
22
- ): Promise<Response>;
23
-
24
- interface EventSource extends _EventSource {}
25
- var EventSource: typeof globalThis extends { onmessage: any; EventSource: infer T } ? T : typeof undici.EventSource;
26
-
27
- interface EventSourceInit extends _EventSourceInit {}
28
-
29
- interface FormData extends _FormData {}
30
- var FormData: typeof globalThis extends { onmessage: any; FormData: infer T } ? T : typeof undici.FormData;
31
-
32
- interface Headers extends _Headers {}
33
- var Headers: typeof globalThis extends { onmessage: any; Headers: infer T } ? T : typeof undici.Headers;
34
-
35
- interface MessageEvent extends _MessageEvent {}
36
- var MessageEvent: typeof globalThis extends { onmessage: any; MessageEvent: infer T } ? T
37
- : typeof undici.MessageEvent;
38
-
39
- interface MessageEventInit extends _MessageEventInit {}
40
-
41
- interface Request extends _Request {}
42
- var Request: typeof globalThis extends { onmessage: any; Request: infer T } ? T : typeof undici.Request;
43
-
44
- interface RequestInit extends _RequestInit {}
45
-
46
- interface Response extends _Response {}
47
- var Response: typeof globalThis extends { onmessage: any; Response: infer T } ? T : typeof undici.Response;
48
-
49
- interface ResponseInit extends _ResponseInit {}
50
-
51
- interface WebSocket extends _WebSocket {}
52
- var WebSocket: typeof globalThis extends { onmessage: any; WebSocket: infer T } ? T : typeof undici.WebSocket;
53
-
54
- interface WebSocketInit extends _WebSocketInit {}
55
- }