@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,170 +0,0 @@
1
- /**
2
- * **This module is pending deprecation.** Once a replacement API has been
3
- * finalized, this module will be fully deprecated. Most developers should
4
- * **not** have cause to use this module. Users who absolutely must have
5
- * the functionality that domains provide may rely on it for the time being
6
- * but should expect to have to migrate to a different solution
7
- * in the future.
8
- *
9
- * Domains provide a way to handle multiple different IO operations as a
10
- * single group. If any of the event emitters or callbacks registered to a
11
- * domain emit an `'error'` event, or throw an error, then the domain object
12
- * will be notified, rather than losing the context of the error in the `process.on('uncaughtException')` handler, or causing the program to
13
- * exit immediately with an error code.
14
- * @deprecated Since v1.4.2 - Deprecated
15
- * @see [source](https://github.com/nodejs/node/blob/v20.13.1/lib/domain.js)
16
- */
17
- declare module "domain" {
18
- import EventEmitter = require("node:events");
19
- /**
20
- * The `Domain` class encapsulates the functionality of routing errors and
21
- * uncaught exceptions to the active `Domain` object.
22
- *
23
- * To handle the errors that it catches, listen to its `'error'` event.
24
- */
25
- class Domain extends EventEmitter {
26
- /**
27
- * An array of timers and event emitters that have been explicitly added
28
- * to the domain.
29
- */
30
- members: Array<EventEmitter | NodeJS.Timer>;
31
- /**
32
- * The `enter()` method is plumbing used by the `run()`, `bind()`, and `intercept()` methods to set the active domain. It sets `domain.active` and `process.domain` to the domain, and implicitly
33
- * pushes the domain onto the domain
34
- * stack managed by the domain module (see {@link exit} for details on the
35
- * domain stack). The call to `enter()` delimits the beginning of a chain of
36
- * asynchronous calls and I/O operations bound to a domain.
37
- *
38
- * Calling `enter()` changes only the active domain, and does not alter the domain
39
- * itself. `enter()` and `exit()` can be called an arbitrary number of times on a
40
- * single domain.
41
- */
42
- enter(): void;
43
- /**
44
- * The `exit()` method exits the current domain, popping it off the domain stack.
45
- * Any time execution is going to switch to the context of a different chain of
46
- * asynchronous calls, it's important to ensure that the current domain is exited.
47
- * The call to `exit()` delimits either the end of or an interruption to the chain
48
- * of asynchronous calls and I/O operations bound to a domain.
49
- *
50
- * If there are multiple, nested domains bound to the current execution context, `exit()` will exit any domains nested within this domain.
51
- *
52
- * Calling `exit()` changes only the active domain, and does not alter the domain
53
- * itself. `enter()` and `exit()` can be called an arbitrary number of times on a
54
- * single domain.
55
- */
56
- exit(): void;
57
- /**
58
- * Run the supplied function in the context of the domain, implicitly
59
- * binding all event emitters, timers, and low-level requests that are
60
- * created in that context. Optionally, arguments can be passed to
61
- * the function.
62
- *
63
- * This is the most basic way to use a domain.
64
- *
65
- * ```js
66
- * import domain from 'node:domain';
67
- * import fs from 'node:fs';
68
- * const d = domain.create();
69
- * d.on('error', (er) => {
70
- * console.error('Caught error!', er);
71
- * });
72
- * d.run(() => {
73
- * process.nextTick(() => {
74
- * setTimeout(() => { // Simulating some various async stuff
75
- * fs.open('non-existent file', 'r', (er, fd) => {
76
- * if (er) throw er;
77
- * // proceed...
78
- * });
79
- * }, 100);
80
- * });
81
- * });
82
- * ```
83
- *
84
- * In this example, the `d.on('error')` handler will be triggered, rather
85
- * than crashing the program.
86
- */
87
- run<T>(fn: (...args: any[]) => T, ...args: any[]): T;
88
- /**
89
- * Explicitly adds an emitter to the domain. If any event handlers called by
90
- * the emitter throw an error, or if the emitter emits an `'error'` event, it
91
- * will be routed to the domain's `'error'` event, just like with implicit
92
- * binding.
93
- *
94
- * This also works with timers that are returned from `setInterval()` and `setTimeout()`. If their callback function throws, it will be caught by
95
- * the domain `'error'` handler.
96
- *
97
- * If the Timer or `EventEmitter` was already bound to a domain, it is removed
98
- * from that one, and bound to this one instead.
99
- * @param emitter emitter or timer to be added to the domain
100
- */
101
- add(emitter: EventEmitter | NodeJS.Timer): void;
102
- /**
103
- * The opposite of {@link add}. Removes domain handling from the
104
- * specified emitter.
105
- * @param emitter emitter or timer to be removed from the domain
106
- */
107
- remove(emitter: EventEmitter | NodeJS.Timer): void;
108
- /**
109
- * The returned function will be a wrapper around the supplied callback
110
- * function. When the returned function is called, any errors that are
111
- * thrown will be routed to the domain's `'error'` event.
112
- *
113
- * ```js
114
- * const d = domain.create();
115
- *
116
- * function readSomeFile(filename, cb) {
117
- * fs.readFile(filename, 'utf8', d.bind((er, data) => {
118
- * // If this throws, it will also be passed to the domain.
119
- * return cb(er, data ? JSON.parse(data) : null);
120
- * }));
121
- * }
122
- *
123
- * d.on('error', (er) => {
124
- * // An error occurred somewhere. If we throw it now, it will crash the program
125
- * // with the normal line number and stack message.
126
- * });
127
- * ```
128
- * @param callback The callback function
129
- * @return The bound function
130
- */
131
- bind<T extends Function>(callback: T): T;
132
- /**
133
- * This method is almost identical to {@link bind}. However, in
134
- * addition to catching thrown errors, it will also intercept `Error` objects sent as the first argument to the function.
135
- *
136
- * In this way, the common `if (err) return callback(err);` pattern can be replaced
137
- * with a single error handler in a single place.
138
- *
139
- * ```js
140
- * const d = domain.create();
141
- *
142
- * function readSomeFile(filename, cb) {
143
- * fs.readFile(filename, 'utf8', d.intercept((data) => {
144
- * // Note, the first argument is never passed to the
145
- * // callback since it is assumed to be the 'Error' argument
146
- * // and thus intercepted by the domain.
147
- *
148
- * // If this throws, it will also be passed to the domain
149
- * // so the error-handling logic can be moved to the 'error'
150
- * // event on the domain instead of being repeated throughout
151
- * // the program.
152
- * return cb(null, JSON.parse(data));
153
- * }));
154
- * }
155
- *
156
- * d.on('error', (er) => {
157
- * // An error occurred somewhere. If we throw it now, it will crash the program
158
- * // with the normal line number and stack message.
159
- * });
160
- * ```
161
- * @param callback The callback function
162
- * @return The intercepted function
163
- */
164
- intercept<T extends Function>(callback: T): T;
165
- }
166
- function create(): Domain;
167
- }
168
- declare module "node:domain" {
169
- export * from "domain";
170
- }