create-leo-app 0.9.3 → 0.9.4

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 (230) hide show
  1. package/package.json +1 -1
  2. package/template-extension/package.json +1 -1
  3. package/template-nextjs-ts/node_modules/@types/node/LICENSE +21 -0
  4. package/template-nextjs-ts/node_modules/@types/node/README.md +15 -0
  5. package/template-nextjs-ts/node_modules/@types/node/assert/strict.d.ts +8 -0
  6. package/template-nextjs-ts/node_modules/@types/node/assert.d.ts +1054 -0
  7. package/template-nextjs-ts/node_modules/@types/node/async_hooks.d.ts +603 -0
  8. package/template-nextjs-ts/node_modules/@types/node/buffer.buffer.d.ts +463 -0
  9. package/template-nextjs-ts/node_modules/@types/node/buffer.d.ts +1928 -0
  10. package/template-nextjs-ts/node_modules/@types/node/child_process.d.ts +1549 -0
  11. package/template-nextjs-ts/node_modules/@types/node/cluster.d.ts +579 -0
  12. package/template-nextjs-ts/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  13. package/template-nextjs-ts/node_modules/@types/node/compatibility/index.d.ts +9 -0
  14. package/template-nextjs-ts/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  15. package/template-nextjs-ts/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  16. package/template-nextjs-ts/node_modules/@types/node/console.d.ts +452 -0
  17. package/template-nextjs-ts/node_modules/@types/node/constants.d.ts +21 -0
  18. package/template-nextjs-ts/node_modules/@types/node/crypto.d.ts +4509 -0
  19. package/template-nextjs-ts/node_modules/@types/node/dgram.d.ts +599 -0
  20. package/template-nextjs-ts/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  21. package/template-nextjs-ts/node_modules/@types/node/dns/promises.d.ts +502 -0
  22. package/template-nextjs-ts/node_modules/@types/node/dns.d.ts +919 -0
  23. package/template-nextjs-ts/node_modules/@types/node/dom-events.d.ts +99 -0
  24. package/template-nextjs-ts/node_modules/@types/node/domain.d.ts +170 -0
  25. package/template-nextjs-ts/node_modules/@types/node/events.d.ts +930 -0
  26. package/template-nextjs-ts/node_modules/@types/node/fs/promises.d.ts +1273 -0
  27. package/template-nextjs-ts/node_modules/@types/node/fs.d.ts +4437 -0
  28. package/template-nextjs-ts/node_modules/@types/node/globals.d.ts +364 -0
  29. package/template-nextjs-ts/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  30. package/template-nextjs-ts/node_modules/@types/node/http.d.ts +2061 -0
  31. package/template-nextjs-ts/node_modules/@types/node/http2.d.ts +2625 -0
  32. package/template-nextjs-ts/node_modules/@types/node/https.d.ts +545 -0
  33. package/template-nextjs-ts/node_modules/@types/node/index.d.ts +92 -0
  34. package/template-nextjs-ts/node_modules/@types/node/inspector.d.ts +4002 -0
  35. package/template-nextjs-ts/node_modules/@types/node/module.d.ts +867 -0
  36. package/template-nextjs-ts/node_modules/@types/node/net.d.ts +1035 -0
  37. package/template-nextjs-ts/node_modules/@types/node/os.d.ts +495 -0
  38. package/template-nextjs-ts/node_modules/@types/node/package.json +225 -0
  39. package/template-nextjs-ts/node_modules/@types/node/path.d.ts +200 -0
  40. package/template-nextjs-ts/node_modules/@types/node/perf_hooks.d.ts +970 -0
  41. package/template-nextjs-ts/node_modules/@types/node/process.d.ts +2061 -0
  42. package/template-nextjs-ts/node_modules/@types/node/punycode.d.ts +117 -0
  43. package/template-nextjs-ts/node_modules/@types/node/querystring.d.ts +152 -0
  44. package/template-nextjs-ts/node_modules/@types/node/readline/promises.d.ts +162 -0
  45. package/template-nextjs-ts/node_modules/@types/node/readline.d.ts +594 -0
  46. package/template-nextjs-ts/node_modules/@types/node/repl.d.ts +428 -0
  47. package/template-nextjs-ts/node_modules/@types/node/sea.d.ts +153 -0
  48. package/template-nextjs-ts/node_modules/@types/node/sqlite.d.ts +680 -0
  49. package/template-nextjs-ts/node_modules/@types/node/stream/consumers.d.ts +38 -0
  50. package/template-nextjs-ts/node_modules/@types/node/stream/promises.d.ts +90 -0
  51. package/template-nextjs-ts/node_modules/@types/node/stream/web.d.ts +618 -0
  52. package/template-nextjs-ts/node_modules/@types/node/stream.d.ts +1668 -0
  53. package/template-nextjs-ts/node_modules/@types/node/string_decoder.d.ts +67 -0
  54. package/template-nextjs-ts/node_modules/@types/node/test.d.ts +2175 -0
  55. package/template-nextjs-ts/node_modules/@types/node/timers/promises.d.ts +108 -0
  56. package/template-nextjs-ts/node_modules/@types/node/timers.d.ts +287 -0
  57. package/template-nextjs-ts/node_modules/@types/node/tls.d.ts +1259 -0
  58. package/template-nextjs-ts/node_modules/@types/node/trace_events.d.ts +197 -0
  59. package/template-nextjs-ts/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  60. package/template-nextjs-ts/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  61. package/template-nextjs-ts/node_modules/@types/node/ts5.6/index.d.ts +92 -0
  62. package/template-nextjs-ts/node_modules/@types/node/tty.d.ts +208 -0
  63. package/template-nextjs-ts/node_modules/@types/node/url.d.ts +972 -0
  64. package/template-nextjs-ts/node_modules/@types/node/util.d.ts +2596 -0
  65. package/template-nextjs-ts/node_modules/@types/node/v8.d.ts +922 -0
  66. package/template-nextjs-ts/node_modules/@types/node/vm.d.ts +1029 -0
  67. package/template-nextjs-ts/node_modules/@types/node/wasi.d.ts +181 -0
  68. package/template-nextjs-ts/node_modules/@types/node/worker_threads.d.ts +769 -0
  69. package/template-nextjs-ts/node_modules/@types/node/zlib.d.ts +670 -0
  70. package/template-nextjs-ts/node_modules/undici-types/LICENSE +21 -0
  71. package/template-nextjs-ts/node_modules/undici-types/README.md +6 -0
  72. package/template-nextjs-ts/node_modules/undici-types/agent.d.ts +31 -0
  73. package/template-nextjs-ts/node_modules/undici-types/api.d.ts +43 -0
  74. package/template-nextjs-ts/node_modules/undici-types/balanced-pool.d.ts +29 -0
  75. package/template-nextjs-ts/node_modules/undici-types/cache.d.ts +36 -0
  76. package/template-nextjs-ts/node_modules/undici-types/client.d.ts +108 -0
  77. package/template-nextjs-ts/node_modules/undici-types/connector.d.ts +34 -0
  78. package/template-nextjs-ts/node_modules/undici-types/content-type.d.ts +21 -0
  79. package/template-nextjs-ts/node_modules/undici-types/cookies.d.ts +28 -0
  80. package/template-nextjs-ts/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  81. package/template-nextjs-ts/node_modules/undici-types/dispatcher.d.ts +256 -0
  82. package/template-nextjs-ts/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  83. package/template-nextjs-ts/node_modules/undici-types/errors.d.ts +149 -0
  84. package/template-nextjs-ts/node_modules/undici-types/eventsource.d.ts +61 -0
  85. package/template-nextjs-ts/node_modules/undici-types/fetch.d.ts +209 -0
  86. package/template-nextjs-ts/node_modules/undici-types/file.d.ts +39 -0
  87. package/template-nextjs-ts/node_modules/undici-types/filereader.d.ts +54 -0
  88. package/template-nextjs-ts/node_modules/undici-types/formdata.d.ts +108 -0
  89. package/template-nextjs-ts/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  90. package/template-nextjs-ts/node_modules/undici-types/global-origin.d.ts +7 -0
  91. package/template-nextjs-ts/node_modules/undici-types/handlers.d.ts +15 -0
  92. package/template-nextjs-ts/node_modules/undici-types/header.d.ts +4 -0
  93. package/template-nextjs-ts/node_modules/undici-types/index.d.ts +71 -0
  94. package/template-nextjs-ts/node_modules/undici-types/interceptors.d.ts +17 -0
  95. package/template-nextjs-ts/node_modules/undici-types/mock-agent.d.ts +50 -0
  96. package/template-nextjs-ts/node_modules/undici-types/mock-client.d.ts +25 -0
  97. package/template-nextjs-ts/node_modules/undici-types/mock-errors.d.ts +12 -0
  98. package/template-nextjs-ts/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  99. package/template-nextjs-ts/node_modules/undici-types/mock-pool.d.ts +25 -0
  100. package/template-nextjs-ts/node_modules/undici-types/package.json +55 -0
  101. package/template-nextjs-ts/node_modules/undici-types/patch.d.ts +33 -0
  102. package/template-nextjs-ts/node_modules/undici-types/pool-stats.d.ts +19 -0
  103. package/template-nextjs-ts/node_modules/undici-types/pool.d.ts +39 -0
  104. package/template-nextjs-ts/node_modules/undici-types/proxy-agent.d.ts +28 -0
  105. package/template-nextjs-ts/node_modules/undici-types/readable.d.ts +65 -0
  106. package/template-nextjs-ts/node_modules/undici-types/retry-agent.d.ts +8 -0
  107. package/template-nextjs-ts/node_modules/undici-types/retry-handler.d.ts +116 -0
  108. package/template-nextjs-ts/node_modules/undici-types/util.d.ts +18 -0
  109. package/template-nextjs-ts/node_modules/undici-types/webidl.d.ts +228 -0
  110. package/template-nextjs-ts/node_modules/undici-types/websocket.d.ts +150 -0
  111. package/template-nextjs-ts/package.json +1 -1
  112. package/template-node/index.js +1 -1
  113. package/template-node/package.json +1 -1
  114. package/template-node-ts/package.json +1 -1
  115. package/template-node-ts/src/index.ts +1 -1
  116. package/template-offline-public-transaction-ts/package.json +1 -1
  117. package/template-react-leo/package.json +1 -1
  118. package/template-react-managed-worker/package.json +1 -1
  119. package/template-react-ts/node_modules/@types/node/LICENSE +21 -0
  120. package/template-react-ts/node_modules/@types/node/README.md +15 -0
  121. package/template-react-ts/node_modules/@types/node/assert/strict.d.ts +8 -0
  122. package/template-react-ts/node_modules/@types/node/assert.d.ts +1054 -0
  123. package/template-react-ts/node_modules/@types/node/async_hooks.d.ts +603 -0
  124. package/template-react-ts/node_modules/@types/node/buffer.buffer.d.ts +463 -0
  125. package/template-react-ts/node_modules/@types/node/buffer.d.ts +1928 -0
  126. package/template-react-ts/node_modules/@types/node/child_process.d.ts +1549 -0
  127. package/template-react-ts/node_modules/@types/node/cluster.d.ts +579 -0
  128. package/template-react-ts/node_modules/@types/node/compatibility/disposable.d.ts +14 -0
  129. package/template-react-ts/node_modules/@types/node/compatibility/index.d.ts +9 -0
  130. package/template-react-ts/node_modules/@types/node/compatibility/indexable.d.ts +20 -0
  131. package/template-react-ts/node_modules/@types/node/compatibility/iterators.d.ts +20 -0
  132. package/template-react-ts/node_modules/@types/node/console.d.ts +452 -0
  133. package/template-react-ts/node_modules/@types/node/constants.d.ts +21 -0
  134. package/template-react-ts/node_modules/@types/node/crypto.d.ts +4509 -0
  135. package/template-react-ts/node_modules/@types/node/dgram.d.ts +599 -0
  136. package/template-react-ts/node_modules/@types/node/diagnostics_channel.d.ts +578 -0
  137. package/template-react-ts/node_modules/@types/node/dns/promises.d.ts +502 -0
  138. package/template-react-ts/node_modules/@types/node/dns.d.ts +919 -0
  139. package/template-react-ts/node_modules/@types/node/dom-events.d.ts +99 -0
  140. package/template-react-ts/node_modules/@types/node/domain.d.ts +170 -0
  141. package/template-react-ts/node_modules/@types/node/events.d.ts +930 -0
  142. package/template-react-ts/node_modules/@types/node/fs/promises.d.ts +1273 -0
  143. package/template-react-ts/node_modules/@types/node/fs.d.ts +4437 -0
  144. package/template-react-ts/node_modules/@types/node/globals.d.ts +364 -0
  145. package/template-react-ts/node_modules/@types/node/globals.typedarray.d.ts +21 -0
  146. package/template-react-ts/node_modules/@types/node/http.d.ts +2061 -0
  147. package/template-react-ts/node_modules/@types/node/http2.d.ts +2625 -0
  148. package/template-react-ts/node_modules/@types/node/https.d.ts +545 -0
  149. package/template-react-ts/node_modules/@types/node/index.d.ts +92 -0
  150. package/template-react-ts/node_modules/@types/node/inspector.d.ts +4002 -0
  151. package/template-react-ts/node_modules/@types/node/module.d.ts +867 -0
  152. package/template-react-ts/node_modules/@types/node/net.d.ts +1035 -0
  153. package/template-react-ts/node_modules/@types/node/os.d.ts +495 -0
  154. package/template-react-ts/node_modules/@types/node/package.json +225 -0
  155. package/template-react-ts/node_modules/@types/node/path.d.ts +200 -0
  156. package/template-react-ts/node_modules/@types/node/perf_hooks.d.ts +970 -0
  157. package/template-react-ts/node_modules/@types/node/process.d.ts +2061 -0
  158. package/template-react-ts/node_modules/@types/node/punycode.d.ts +117 -0
  159. package/template-react-ts/node_modules/@types/node/querystring.d.ts +152 -0
  160. package/template-react-ts/node_modules/@types/node/readline/promises.d.ts +162 -0
  161. package/template-react-ts/node_modules/@types/node/readline.d.ts +594 -0
  162. package/template-react-ts/node_modules/@types/node/repl.d.ts +428 -0
  163. package/template-react-ts/node_modules/@types/node/sea.d.ts +153 -0
  164. package/template-react-ts/node_modules/@types/node/sqlite.d.ts +680 -0
  165. package/template-react-ts/node_modules/@types/node/stream/consumers.d.ts +38 -0
  166. package/template-react-ts/node_modules/@types/node/stream/promises.d.ts +90 -0
  167. package/template-react-ts/node_modules/@types/node/stream/web.d.ts +618 -0
  168. package/template-react-ts/node_modules/@types/node/stream.d.ts +1668 -0
  169. package/template-react-ts/node_modules/@types/node/string_decoder.d.ts +67 -0
  170. package/template-react-ts/node_modules/@types/node/test.d.ts +2175 -0
  171. package/template-react-ts/node_modules/@types/node/timers/promises.d.ts +108 -0
  172. package/template-react-ts/node_modules/@types/node/timers.d.ts +287 -0
  173. package/template-react-ts/node_modules/@types/node/tls.d.ts +1259 -0
  174. package/template-react-ts/node_modules/@types/node/trace_events.d.ts +197 -0
  175. package/template-react-ts/node_modules/@types/node/ts5.6/buffer.buffer.d.ts +460 -0
  176. package/template-react-ts/node_modules/@types/node/ts5.6/globals.typedarray.d.ts +19 -0
  177. package/template-react-ts/node_modules/@types/node/ts5.6/index.d.ts +92 -0
  178. package/template-react-ts/node_modules/@types/node/tty.d.ts +208 -0
  179. package/template-react-ts/node_modules/@types/node/url.d.ts +972 -0
  180. package/template-react-ts/node_modules/@types/node/util.d.ts +2596 -0
  181. package/template-react-ts/node_modules/@types/node/v8.d.ts +922 -0
  182. package/template-react-ts/node_modules/@types/node/vm.d.ts +1029 -0
  183. package/template-react-ts/node_modules/@types/node/wasi.d.ts +181 -0
  184. package/template-react-ts/node_modules/@types/node/worker_threads.d.ts +769 -0
  185. package/template-react-ts/node_modules/@types/node/zlib.d.ts +670 -0
  186. package/template-react-ts/node_modules/undici-types/LICENSE +21 -0
  187. package/template-react-ts/node_modules/undici-types/README.md +6 -0
  188. package/template-react-ts/node_modules/undici-types/agent.d.ts +31 -0
  189. package/template-react-ts/node_modules/undici-types/api.d.ts +43 -0
  190. package/template-react-ts/node_modules/undici-types/balanced-pool.d.ts +29 -0
  191. package/template-react-ts/node_modules/undici-types/cache.d.ts +36 -0
  192. package/template-react-ts/node_modules/undici-types/client.d.ts +108 -0
  193. package/template-react-ts/node_modules/undici-types/connector.d.ts +34 -0
  194. package/template-react-ts/node_modules/undici-types/content-type.d.ts +21 -0
  195. package/template-react-ts/node_modules/undici-types/cookies.d.ts +28 -0
  196. package/template-react-ts/node_modules/undici-types/diagnostics-channel.d.ts +66 -0
  197. package/template-react-ts/node_modules/undici-types/dispatcher.d.ts +256 -0
  198. package/template-react-ts/node_modules/undici-types/env-http-proxy-agent.d.ts +21 -0
  199. package/template-react-ts/node_modules/undici-types/errors.d.ts +149 -0
  200. package/template-react-ts/node_modules/undici-types/eventsource.d.ts +61 -0
  201. package/template-react-ts/node_modules/undici-types/fetch.d.ts +209 -0
  202. package/template-react-ts/node_modules/undici-types/file.d.ts +39 -0
  203. package/template-react-ts/node_modules/undici-types/filereader.d.ts +54 -0
  204. package/template-react-ts/node_modules/undici-types/formdata.d.ts +108 -0
  205. package/template-react-ts/node_modules/undici-types/global-dispatcher.d.ts +9 -0
  206. package/template-react-ts/node_modules/undici-types/global-origin.d.ts +7 -0
  207. package/template-react-ts/node_modules/undici-types/handlers.d.ts +15 -0
  208. package/template-react-ts/node_modules/undici-types/header.d.ts +4 -0
  209. package/template-react-ts/node_modules/undici-types/index.d.ts +71 -0
  210. package/template-react-ts/node_modules/undici-types/interceptors.d.ts +17 -0
  211. package/template-react-ts/node_modules/undici-types/mock-agent.d.ts +50 -0
  212. package/template-react-ts/node_modules/undici-types/mock-client.d.ts +25 -0
  213. package/template-react-ts/node_modules/undici-types/mock-errors.d.ts +12 -0
  214. package/template-react-ts/node_modules/undici-types/mock-interceptor.d.ts +93 -0
  215. package/template-react-ts/node_modules/undici-types/mock-pool.d.ts +25 -0
  216. package/template-react-ts/node_modules/undici-types/package.json +55 -0
  217. package/template-react-ts/node_modules/undici-types/patch.d.ts +33 -0
  218. package/template-react-ts/node_modules/undici-types/pool-stats.d.ts +19 -0
  219. package/template-react-ts/node_modules/undici-types/pool.d.ts +39 -0
  220. package/template-react-ts/node_modules/undici-types/proxy-agent.d.ts +28 -0
  221. package/template-react-ts/node_modules/undici-types/readable.d.ts +65 -0
  222. package/template-react-ts/node_modules/undici-types/retry-agent.d.ts +8 -0
  223. package/template-react-ts/node_modules/undici-types/retry-handler.d.ts +116 -0
  224. package/template-react-ts/node_modules/undici-types/util.d.ts +18 -0
  225. package/template-react-ts/node_modules/undici-types/webidl.d.ts +228 -0
  226. package/template-react-ts/node_modules/undici-types/websocket.d.ts +150 -0
  227. package/template-react-ts/package.json +1 -1
  228. package/template-vanilla/package.json +1 -1
  229. package/template-offline-public-transaction-ts/dist/index.js +0 -195
  230. package/template-offline-public-transaction-ts/dist/index.js.map +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-leo-app",
3
- "version": "0.9.3",
3
+ "version": "0.9.4",
4
4
  "type": "module",
5
5
  "license": "GPL-3.0",
6
6
  "collaborators": [
@@ -7,7 +7,7 @@
7
7
  "build": "rimraf static/js && rollup --config"
8
8
  },
9
9
  "devDependencies": {
10
- "@provablehq/sdk": "^0.9.3",
10
+ "@provablehq/sdk": "^0.9.4",
11
11
  "@web/rollup-plugin-import-meta-assets": "^2.2.1",
12
12
  "rimraf": "^6.0.1",
13
13
  "rollup": "^4.32.0"
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) Microsoft Corporation.
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE
@@ -0,0 +1,15 @@
1
+ # Installation
2
+ > `npm install --save @types/node`
3
+
4
+ # Summary
5
+ This package contains type definitions for node (https://nodejs.org/).
6
+
7
+ # Details
8
+ Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node/v22.
9
+
10
+ ### Additional Details
11
+ * Last updated: Tue, 01 Jul 2025 20:02:28 GMT
12
+ * Dependencies: [undici-types](https://npmjs.com/package/undici-types)
13
+
14
+ # Credits
15
+ These definitions were written by [Microsoft TypeScript](https://github.com/Microsoft), [Alberto Schiabel](https://github.com/jkomyno), [Alvis HT Tang](https://github.com/alvis), [Andrew Makarov](https://github.com/r3nya), [Benjamin Toueg](https://github.com/btoueg), [Chigozirim C.](https://github.com/smac89), [David Junger](https://github.com/touffy), [Deividas Bakanas](https://github.com/DeividasBakanas), [Eugene Y. Q. Shen](https://github.com/eyqs), [Hannes Magnusson](https://github.com/Hannes-Magnusson-CK), [Huw](https://github.com/hoo29), [Kelvin Jin](https://github.com/kjin), [Klaus Meinhardt](https://github.com/ajafff), [Lishude](https://github.com/islishude), [Mariusz Wiktorczyk](https://github.com/mwiktorczyk), [Mohsen Azimi](https://github.com/mohsen1), [Nikita Galkin](https://github.com/galkin), [Parambir Singh](https://github.com/parambirs), [Sebastian Silbermann](https://github.com/eps1lon), [Thomas den Hollander](https://github.com/ThomasdenH), [Wilco Bakker](https://github.com/WilcoBakker), [wwwy3y3](https://github.com/wwwy3y3), [Samuel Ainsworth](https://github.com/samuela), [Kyle Uehlein](https://github.com/kuehlein), [Thanik Bhongbhibhat](https://github.com/bhongy), [Marcin Kopacz](https://github.com/chyzwar), [Trivikram Kamat](https://github.com/trivikr), [Junxiao Shi](https://github.com/yoursunny), [Ilia Baryshnikov](https://github.com/qwelias), [ExE Boss](https://github.com/ExE-Boss), [Piotr Błażejewicz](https://github.com/peterblazejewicz), [Anna Henningsen](https://github.com/addaleax), [Victor Perin](https://github.com/victorperin), [NodeJS Contributors](https://github.com/NodeJS), [Linus Unnebäck](https://github.com/LinusU), [wafuwafu13](https://github.com/wafuwafu13), [Matteo Collina](https://github.com/mcollina), [Dmitry Semigradsky](https://github.com/Semigradsky), and [René](https://github.com/Renegade334).
@@ -0,0 +1,8 @@
1
+ declare module "assert/strict" {
2
+ import { strict } from "node:assert";
3
+ export = strict;
4
+ }
5
+ declare module "node:assert/strict" {
6
+ import { strict } from "node:assert";
7
+ export = strict;
8
+ }