@termosdev/cli 0.3.1

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 (5308) hide show
  1. package/.claude-plugin/commands/logs.md +20 -0
  2. package/.claude-plugin/commands/restart.md +11 -0
  3. package/.claude-plugin/commands/start.md +15 -0
  4. package/.claude-plugin/commands/status.md +16 -0
  5. package/.claude-plugin/commands/stop.md +9 -0
  6. package/.claude-plugin/marketplace.json +21 -0
  7. package/.claude-plugin/plugin.json +13 -0
  8. package/.claude-plugin/scripts/termos +13 -0
  9. package/.claude-plugin/skills/start/SKILL.md +85 -0
  10. package/README.md +142 -0
  11. package/dist/config.d.ts +854 -0
  12. package/dist/config.js +381 -0
  13. package/dist/env-resolver.d.ts +43 -0
  14. package/dist/env-resolver.js +132 -0
  15. package/dist/events.d.ts +56 -0
  16. package/dist/events.js +104 -0
  17. package/dist/events.test.d.ts +1 -0
  18. package/dist/events.test.js +102 -0
  19. package/dist/file-watcher.d.ts +16 -0
  20. package/dist/file-watcher.js +63 -0
  21. package/dist/health-checker.d.ts +53 -0
  22. package/dist/health-checker.js +127 -0
  23. package/dist/index.d.ts +2 -0
  24. package/dist/index.js +601 -0
  25. package/dist/ink-runner/components/plan-viewer.tsx +116 -0
  26. package/dist/ink-runner/components/welcome.tsx +158 -0
  27. package/dist/ink-runner/dist/components/SchemaForm.d.ts +7 -0
  28. package/dist/ink-runner/dist/components/SchemaForm.js +98 -0
  29. package/dist/ink-runner/dist/components/Welcome.d.ts +20 -0
  30. package/dist/ink-runner/dist/components/Welcome.js +15 -0
  31. package/dist/ink-runner/dist/file-runner.d.ts +39 -0
  32. package/dist/ink-runner/dist/file-runner.js +288 -0
  33. package/dist/ink-runner/dist/index.d.ts +2 -0
  34. package/dist/ink-runner/dist/index.js +187 -0
  35. package/dist/ink-runner/dist/types.d.ts +1 -0
  36. package/dist/ink-runner/dist/types.js +2 -0
  37. package/dist/ink-runner/node_modules/.package-lock.json +833 -0
  38. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/README.md +248 -0
  39. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +11 -0
  40. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +41 -0
  41. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/diff.d.ts +6 -0
  42. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/diff.js +17 -0
  43. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/index.d.ts +6 -0
  44. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/index.js +7 -0
  45. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/reduce.d.ts +5 -0
  46. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +27 -0
  47. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/styledChars.d.ts +6 -0
  48. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/styledChars.js +38 -0
  49. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +12 -0
  50. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +70 -0
  51. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/undo.d.ts +3 -0
  52. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/build/undo.js +11 -0
  53. package/dist/ink-runner/node_modules/@alcalzone/ansi-tokenize/package.json +63 -0
  54. package/dist/ink-runner/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  55. package/dist/ink-runner/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
  56. package/dist/ink-runner/node_modules/@esbuild/darwin-arm64/package.json +20 -0
  57. package/dist/ink-runner/node_modules/@termosdev/shared/dist/index.d.ts +2 -0
  58. package/dist/ink-runner/node_modules/@termosdev/shared/dist/index.js +4 -0
  59. package/dist/ink-runner/node_modules/@termosdev/shared/dist/protocol.d.ts +14 -0
  60. package/dist/ink-runner/node_modules/@termosdev/shared/dist/protocol.js +30 -0
  61. package/dist/ink-runner/node_modules/@termosdev/shared/dist/schema.d.ts +180 -0
  62. package/dist/ink-runner/node_modules/@termosdev/shared/dist/schema.js +72 -0
  63. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/.package-lock.json +17 -0
  64. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/LICENSE +21 -0
  65. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/README.md +208 -0
  66. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/index.cjs +33 -0
  67. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/index.d.cts +4 -0
  68. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/index.d.ts +4 -0
  69. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/index.js +4 -0
  70. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/package.json +118 -0
  71. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/index.ts +4 -0
  72. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/ZodError.ts +330 -0
  73. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  74. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  75. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  76. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  77. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  78. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  79. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  80. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  81. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  82. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/errors.ts +13 -0
  83. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/external.ts +6 -0
  84. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  85. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  86. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  87. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  88. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  89. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/helpers/util.ts +224 -0
  90. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/index.ts +4 -0
  91. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/locales/en.ts +124 -0
  92. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/standard-schema.ts +113 -0
  93. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  94. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  95. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  96. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  97. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  98. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  99. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  100. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  101. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  102. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  103. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  104. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  105. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  106. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  107. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  108. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  109. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  110. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  111. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  112. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  113. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  114. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  115. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  116. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  117. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  118. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  119. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  120. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  121. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  122. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  123. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  124. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  125. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  126. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  127. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  128. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  129. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  130. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  131. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  132. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  133. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  134. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  135. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  136. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  137. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  138. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  139. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  140. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  141. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  142. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  143. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  144. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  145. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  146. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  147. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  148. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  149. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  150. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  151. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  152. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  153. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  154. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v3/types.ts +5136 -0
  155. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/checks.ts +30 -0
  156. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  157. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/compat.ts +66 -0
  158. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/errors.ts +75 -0
  159. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/external.ts +50 -0
  160. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/index.ts +5 -0
  161. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/iso.ts +90 -0
  162. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/parse.ts +33 -0
  163. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  164. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  165. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  166. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  167. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  168. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  169. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  170. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  171. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  172. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  173. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  174. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  175. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  176. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  177. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  178. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  179. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  180. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  181. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  182. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  183. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  184. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  185. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  186. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  187. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  188. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  189. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  190. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  191. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  192. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  193. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  194. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  195. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  196. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  197. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  198. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  199. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  200. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  201. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  202. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  203. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  204. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  205. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  206. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  207. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  208. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  209. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  210. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  211. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  212. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  213. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  214. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  215. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  216. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  217. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  218. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  219. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  220. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  221. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  222. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  223. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  224. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  225. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  226. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  227. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  228. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/api.ts +1594 -0
  229. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/checks.ts +1283 -0
  230. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/config.ts +15 -0
  231. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/core.ts +134 -0
  232. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/doc.ts +44 -0
  233. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/errors.ts +424 -0
  234. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/function.ts +176 -0
  235. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/index.ts +15 -0
  236. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  237. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/parse.ts +94 -0
  238. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/regexes.ts +135 -0
  239. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/registries.ts +96 -0
  240. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  241. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  242. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  243. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  244. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  245. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  246. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  247. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  248. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/util.ts +775 -0
  249. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/versions.ts +5 -0
  250. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/core/zsf.ts +323 -0
  251. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/index.ts +4 -0
  252. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ar.ts +125 -0
  253. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/az.ts +121 -0
  254. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/be.ts +184 -0
  255. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ca.ts +127 -0
  256. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/cs.ts +142 -0
  257. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/de.ts +124 -0
  258. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/en.ts +127 -0
  259. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/eo.ts +125 -0
  260. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/es.ts +125 -0
  261. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/fa.ts +134 -0
  262. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/fi.ts +131 -0
  263. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  264. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/fr.ts +124 -0
  265. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/he.ts +125 -0
  266. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/hu.ts +126 -0
  267. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/id.ts +125 -0
  268. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/index.ts +39 -0
  269. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/it.ts +125 -0
  270. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ja.ts +122 -0
  271. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/kh.ts +126 -0
  272. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ko.ts +131 -0
  273. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/mk.ts +127 -0
  274. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ms.ts +124 -0
  275. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/nl.ts +126 -0
  276. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/no.ts +124 -0
  277. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ota.ts +125 -0
  278. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/pl.ts +126 -0
  279. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ps.ts +133 -0
  280. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/pt.ts +123 -0
  281. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ru.ts +184 -0
  282. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/sl.ts +126 -0
  283. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/sv.ts +127 -0
  284. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ta.ts +125 -0
  285. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/th.ts +126 -0
  286. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/tr.ts +121 -0
  287. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ua.ts +126 -0
  288. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/ur.ts +126 -0
  289. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/vi.ts +125 -0
  290. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  291. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  292. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/checks.ts +32 -0
  293. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  294. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/external.ts +40 -0
  295. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/index.ts +3 -0
  296. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/iso.ts +62 -0
  297. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/parse.ts +1 -0
  298. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  299. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  300. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  301. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  302. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  303. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  304. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  305. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  306. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  307. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  308. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  309. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  310. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  311. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/src/v4-mini/index.ts +1 -0
  312. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/ZodError.cjs +138 -0
  313. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/ZodError.d.cts +164 -0
  314. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/ZodError.d.ts +164 -0
  315. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/ZodError.js +133 -0
  316. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/errors.cjs +17 -0
  317. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/errors.d.cts +5 -0
  318. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/errors.d.ts +5 -0
  319. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/errors.js +9 -0
  320. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/external.cjs +22 -0
  321. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/external.d.cts +6 -0
  322. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/external.d.ts +6 -0
  323. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/external.js +6 -0
  324. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  325. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  326. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  327. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  328. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  329. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  330. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  331. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  332. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  333. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  334. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  335. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  336. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  337. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  338. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  339. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  340. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  341. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  342. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  343. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  344. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/util.cjs +137 -0
  345. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/util.d.cts +85 -0
  346. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/util.d.ts +85 -0
  347. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/helpers/util.js +133 -0
  348. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/index.cjs +33 -0
  349. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/index.d.cts +4 -0
  350. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/index.d.ts +4 -0
  351. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/index.js +4 -0
  352. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/locales/en.cjs +111 -0
  353. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/locales/en.d.cts +3 -0
  354. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/locales/en.d.ts +3 -0
  355. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/locales/en.js +109 -0
  356. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/standard-schema.cjs +2 -0
  357. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/standard-schema.d.cts +102 -0
  358. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/standard-schema.d.ts +102 -0
  359. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/standard-schema.js +1 -0
  360. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/types.cjs +3775 -0
  361. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/types.d.cts +1031 -0
  362. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/types.d.ts +1031 -0
  363. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v3/types.js +3693 -0
  364. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/checks.cjs +32 -0
  365. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/checks.d.cts +1 -0
  366. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/checks.d.ts +1 -0
  367. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/checks.js +1 -0
  368. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/coerce.cjs +47 -0
  369. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  370. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  371. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/coerce.js +17 -0
  372. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/compat.cjs +57 -0
  373. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/compat.d.cts +46 -0
  374. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/compat.d.ts +46 -0
  375. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/compat.js +27 -0
  376. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/errors.cjs +67 -0
  377. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/errors.d.cts +30 -0
  378. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/errors.d.ts +30 -0
  379. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/errors.js +41 -0
  380. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/external.cjs +70 -0
  381. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/external.d.cts +13 -0
  382. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/external.d.ts +13 -0
  383. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/external.js +18 -0
  384. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/index.cjs +33 -0
  385. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/index.d.cts +4 -0
  386. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/index.d.ts +4 -0
  387. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/index.js +4 -0
  388. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/iso.cjs +60 -0
  389. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/iso.d.cts +22 -0
  390. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/iso.d.ts +22 -0
  391. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/iso.js +30 -0
  392. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/parse.cjs +32 -0
  393. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/parse.d.cts +23 -0
  394. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/parse.d.ts +23 -0
  395. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/parse.js +6 -0
  396. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  397. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  398. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  399. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/classic/schemas.js +1006 -0
  400. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/api.cjs +1039 -0
  401. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/api.d.cts +284 -0
  402. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/api.d.ts +284 -0
  403. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/api.js +906 -0
  404. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/checks.cjs +591 -0
  405. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/checks.d.cts +278 -0
  406. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/checks.d.ts +278 -0
  407. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/checks.js +565 -0
  408. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/core.cjs +67 -0
  409. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/core.d.cts +49 -0
  410. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/core.d.ts +49 -0
  411. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/core.js +61 -0
  412. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/doc.cjs +39 -0
  413. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/doc.d.cts +14 -0
  414. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/doc.d.ts +14 -0
  415. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/doc.js +35 -0
  416. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/errors.cjs +226 -0
  417. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/errors.d.cts +208 -0
  418. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/errors.d.ts +208 -0
  419. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/errors.js +195 -0
  420. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/function.cjs +102 -0
  421. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/function.d.cts +52 -0
  422. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/function.d.ts +52 -0
  423. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/function.js +75 -0
  424. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/index.cjs +44 -0
  425. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/index.d.cts +15 -0
  426. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/index.d.ts +15 -0
  427. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/index.js +15 -0
  428. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/json-schema.cjs +2 -0
  429. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  430. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  431. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/json-schema.js +1 -0
  432. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/parse.cjs +87 -0
  433. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/parse.d.cts +25 -0
  434. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/parse.d.ts +25 -0
  435. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/parse.js +57 -0
  436. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/regexes.cjs +103 -0
  437. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/regexes.d.cts +62 -0
  438. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/regexes.d.ts +62 -0
  439. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/regexes.js +95 -0
  440. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/registries.cjs +56 -0
  441. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/registries.d.cts +35 -0
  442. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/registries.d.ts +35 -0
  443. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/registries.js +51 -0
  444. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/schemas.cjs +1748 -0
  445. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  446. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  447. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/schemas.js +1717 -0
  448. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  449. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  450. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  451. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/standard-schema.js +1 -0
  452. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  453. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  454. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  455. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/to-json-schema.js +849 -0
  456. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/util.cjs +539 -0
  457. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/util.d.cts +183 -0
  458. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/util.d.ts +183 -0
  459. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/util.js +493 -0
  460. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/versions.cjs +8 -0
  461. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/versions.d.cts +5 -0
  462. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/versions.d.ts +5 -0
  463. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/core/versions.js +5 -0
  464. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/index.cjs +22 -0
  465. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/index.d.cts +3 -0
  466. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/index.d.ts +3 -0
  467. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/index.js +3 -0
  468. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ar.cjs +142 -0
  469. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ar.d.cts +4 -0
  470. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ar.d.ts +4 -0
  471. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ar.js +116 -0
  472. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/az.cjs +141 -0
  473. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/az.d.cts +4 -0
  474. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/az.d.ts +4 -0
  475. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/az.js +115 -0
  476. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/be.cjs +190 -0
  477. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/be.d.cts +4 -0
  478. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/be.d.ts +4 -0
  479. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/be.js +164 -0
  480. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ca.cjs +144 -0
  481. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ca.d.cts +4 -0
  482. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ca.d.ts +4 -0
  483. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ca.js +118 -0
  484. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/cs.cjs +161 -0
  485. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/cs.d.cts +4 -0
  486. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/cs.d.ts +4 -0
  487. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/cs.js +135 -0
  488. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/de.cjs +142 -0
  489. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/de.d.cts +4 -0
  490. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/de.d.ts +4 -0
  491. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/de.js +116 -0
  492. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/en.cjs +145 -0
  493. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/en.d.cts +5 -0
  494. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/en.d.ts +5 -0
  495. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/en.js +117 -0
  496. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/eo.cjs +144 -0
  497. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/eo.d.cts +5 -0
  498. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/eo.d.ts +5 -0
  499. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/eo.js +116 -0
  500. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/es.cjs +143 -0
  501. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/es.d.cts +4 -0
  502. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/es.d.ts +4 -0
  503. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/es.js +117 -0
  504. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fa.cjs +148 -0
  505. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fa.d.cts +4 -0
  506. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fa.d.ts +4 -0
  507. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fa.js +122 -0
  508. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fi.cjs +148 -0
  509. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fi.d.cts +4 -0
  510. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fi.d.ts +4 -0
  511. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fi.js +122 -0
  512. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  513. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  514. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  515. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr-CA.js +117 -0
  516. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr.cjs +142 -0
  517. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr.d.cts +4 -0
  518. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr.d.ts +4 -0
  519. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/fr.js +116 -0
  520. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/he.cjs +143 -0
  521. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/he.d.cts +4 -0
  522. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/he.d.ts +4 -0
  523. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/he.js +117 -0
  524. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/hu.cjs +143 -0
  525. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/hu.d.cts +4 -0
  526. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/hu.d.ts +4 -0
  527. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/hu.js +117 -0
  528. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/id.cjs +142 -0
  529. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/id.d.cts +4 -0
  530. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/id.d.ts +4 -0
  531. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/id.js +116 -0
  532. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/index.cjs +84 -0
  533. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/index.d.cts +39 -0
  534. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/index.d.ts +39 -0
  535. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/index.js +39 -0
  536. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/it.cjs +143 -0
  537. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/it.d.cts +4 -0
  538. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/it.d.ts +4 -0
  539. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/it.js +117 -0
  540. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ja.cjs +141 -0
  541. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ja.d.cts +4 -0
  542. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ja.d.ts +4 -0
  543. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ja.js +115 -0
  544. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/kh.cjs +143 -0
  545. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/kh.d.cts +4 -0
  546. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/kh.d.ts +4 -0
  547. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/kh.js +117 -0
  548. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ko.cjs +147 -0
  549. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ko.d.cts +4 -0
  550. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ko.d.ts +4 -0
  551. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ko.js +121 -0
  552. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/mk.cjs +144 -0
  553. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/mk.d.cts +4 -0
  554. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/mk.d.ts +4 -0
  555. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/mk.js +118 -0
  556. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ms.cjs +142 -0
  557. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ms.d.cts +4 -0
  558. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ms.d.ts +4 -0
  559. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ms.js +116 -0
  560. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/nl.cjs +143 -0
  561. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/nl.d.cts +4 -0
  562. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/nl.d.ts +4 -0
  563. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/nl.js +117 -0
  564. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/no.cjs +142 -0
  565. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/no.d.cts +4 -0
  566. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/no.d.ts +4 -0
  567. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/no.js +116 -0
  568. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ota.cjs +143 -0
  569. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ota.d.cts +4 -0
  570. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ota.d.ts +4 -0
  571. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ota.js +117 -0
  572. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pl.cjs +143 -0
  573. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pl.d.cts +4 -0
  574. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pl.d.ts +4 -0
  575. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pl.js +117 -0
  576. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ps.cjs +148 -0
  577. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ps.d.cts +4 -0
  578. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ps.d.ts +4 -0
  579. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ps.js +122 -0
  580. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pt.cjs +142 -0
  581. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pt.d.cts +4 -0
  582. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pt.d.ts +4 -0
  583. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/pt.js +116 -0
  584. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ru.cjs +190 -0
  585. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ru.d.cts +4 -0
  586. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ru.d.ts +4 -0
  587. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ru.js +164 -0
  588. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sl.cjs +143 -0
  589. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sl.d.cts +4 -0
  590. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sl.d.ts +4 -0
  591. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sl.js +117 -0
  592. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sv.cjs +144 -0
  593. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sv.d.cts +4 -0
  594. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sv.d.ts +4 -0
  595. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/sv.js +118 -0
  596. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ta.cjs +143 -0
  597. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ta.d.cts +4 -0
  598. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ta.d.ts +4 -0
  599. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ta.js +117 -0
  600. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/th.cjs +143 -0
  601. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/th.d.cts +4 -0
  602. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/th.d.ts +4 -0
  603. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/th.js +117 -0
  604. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/tr.cjs +143 -0
  605. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/tr.d.cts +5 -0
  606. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/tr.d.ts +5 -0
  607. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/tr.js +115 -0
  608. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ua.cjs +143 -0
  609. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ua.d.cts +4 -0
  610. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ua.d.ts +4 -0
  611. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ua.js +117 -0
  612. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ur.cjs +143 -0
  613. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ur.d.cts +4 -0
  614. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ur.d.ts +4 -0
  615. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/ur.js +117 -0
  616. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/vi.cjs +142 -0
  617. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/vi.d.cts +4 -0
  618. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/vi.d.ts +4 -0
  619. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/vi.js +116 -0
  620. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  621. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  622. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  623. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-CN.js +116 -0
  624. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  625. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  626. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  627. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/locales/zh-TW.js +117 -0
  628. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/checks.cjs +34 -0
  629. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/checks.d.cts +1 -0
  630. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/checks.d.ts +1 -0
  631. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/checks.js +1 -0
  632. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/coerce.cjs +47 -0
  633. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  634. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  635. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/coerce.js +17 -0
  636. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/external.cjs +62 -0
  637. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/external.d.cts +11 -0
  638. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/external.d.ts +11 -0
  639. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/external.js +13 -0
  640. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/index.cjs +32 -0
  641. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/index.d.cts +3 -0
  642. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/index.d.ts +3 -0
  643. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/index.js +3 -0
  644. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/iso.cjs +60 -0
  645. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/iso.d.cts +22 -0
  646. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/iso.d.ts +22 -0
  647. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/iso.js +30 -0
  648. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/parse.cjs +8 -0
  649. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/parse.d.cts +1 -0
  650. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/parse.d.ts +1 -0
  651. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/parse.js +1 -0
  652. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/schemas.cjs +839 -0
  653. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  654. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  655. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4/mini/schemas.js +732 -0
  656. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4-mini/index.cjs +17 -0
  657. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4-mini/index.d.cts +1 -0
  658. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4-mini/index.d.ts +1 -0
  659. package/dist/ink-runner/node_modules/@termosdev/shared/node_modules/zod/v4-mini/index.js +1 -0
  660. package/dist/ink-runner/node_modules/@termosdev/shared/package.json +17 -0
  661. package/dist/ink-runner/node_modules/@types/prop-types/LICENSE +21 -0
  662. package/dist/ink-runner/node_modules/@types/prop-types/README.md +15 -0
  663. package/dist/ink-runner/node_modules/@types/prop-types/index.d.ts +131 -0
  664. package/dist/ink-runner/node_modules/@types/prop-types/package.json +36 -0
  665. package/dist/ink-runner/node_modules/@types/react/LICENSE +21 -0
  666. package/dist/ink-runner/node_modules/@types/react/README.md +15 -0
  667. package/dist/ink-runner/node_modules/@types/react/canary.d.ts +166 -0
  668. package/dist/ink-runner/node_modules/@types/react/experimental.d.ts +132 -0
  669. package/dist/ink-runner/node_modules/@types/react/global.d.ts +161 -0
  670. package/dist/ink-runner/node_modules/@types/react/index.d.ts +4587 -0
  671. package/dist/ink-runner/node_modules/@types/react/jsx-dev-runtime.d.ts +45 -0
  672. package/dist/ink-runner/node_modules/@types/react/jsx-runtime.d.ts +36 -0
  673. package/dist/ink-runner/node_modules/@types/react/package.json +206 -0
  674. package/dist/ink-runner/node_modules/@types/react/ts5.0/canary.d.ts +166 -0
  675. package/dist/ink-runner/node_modules/@types/react/ts5.0/experimental.d.ts +132 -0
  676. package/dist/ink-runner/node_modules/@types/react/ts5.0/global.d.ts +161 -0
  677. package/dist/ink-runner/node_modules/@types/react/ts5.0/index.d.ts +4573 -0
  678. package/dist/ink-runner/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +44 -0
  679. package/dist/ink-runner/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +35 -0
  680. package/dist/ink-runner/node_modules/ansi-escapes/base.d.ts +292 -0
  681. package/dist/ink-runner/node_modules/ansi-escapes/base.js +198 -0
  682. package/dist/ink-runner/node_modules/ansi-escapes/index.d.ts +2 -0
  683. package/dist/ink-runner/node_modules/ansi-escapes/index.js +2 -0
  684. package/dist/ink-runner/node_modules/ansi-escapes/license +9 -0
  685. package/dist/ink-runner/node_modules/ansi-escapes/package.json +70 -0
  686. package/dist/ink-runner/node_modules/ansi-escapes/readme.md +284 -0
  687. package/dist/ink-runner/node_modules/ansi-regex/index.d.ts +33 -0
  688. package/dist/ink-runner/node_modules/ansi-regex/index.js +14 -0
  689. package/dist/ink-runner/node_modules/ansi-regex/license +9 -0
  690. package/dist/ink-runner/node_modules/ansi-regex/package.json +61 -0
  691. package/dist/ink-runner/node_modules/ansi-regex/readme.md +66 -0
  692. package/dist/ink-runner/node_modules/ansi-styles/index.d.ts +236 -0
  693. package/dist/ink-runner/node_modules/ansi-styles/index.js +223 -0
  694. package/dist/ink-runner/node_modules/ansi-styles/license +9 -0
  695. package/dist/ink-runner/node_modules/ansi-styles/package.json +54 -0
  696. package/dist/ink-runner/node_modules/ansi-styles/readme.md +173 -0
  697. package/dist/ink-runner/node_modules/auto-bind/index.d.ts +50 -0
  698. package/dist/ink-runner/node_modules/auto-bind/index.js +41 -0
  699. package/dist/ink-runner/node_modules/auto-bind/license +9 -0
  700. package/dist/ink-runner/node_modules/auto-bind/package.json +51 -0
  701. package/dist/ink-runner/node_modules/auto-bind/react.d.ts +26 -0
  702. package/dist/ink-runner/node_modules/auto-bind/react.js +28 -0
  703. package/dist/ink-runner/node_modules/auto-bind/readme.md +92 -0
  704. package/dist/ink-runner/node_modules/chalk/license +9 -0
  705. package/dist/ink-runner/node_modules/chalk/package.json +83 -0
  706. package/dist/ink-runner/node_modules/chalk/readme.md +297 -0
  707. package/dist/ink-runner/node_modules/chalk/source/index.d.ts +325 -0
  708. package/dist/ink-runner/node_modules/chalk/source/index.js +225 -0
  709. package/dist/ink-runner/node_modules/chalk/source/utilities.js +33 -0
  710. package/dist/ink-runner/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  711. package/dist/ink-runner/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  712. package/dist/ink-runner/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  713. package/dist/ink-runner/node_modules/chalk/source/vendor/supports-color/browser.js +34 -0
  714. package/dist/ink-runner/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  715. package/dist/ink-runner/node_modules/chalk/source/vendor/supports-color/index.js +190 -0
  716. package/dist/ink-runner/node_modules/cli-boxes/boxes.json +82 -0
  717. package/dist/ink-runner/node_modules/cli-boxes/index.d.ts +127 -0
  718. package/dist/ink-runner/node_modules/cli-boxes/index.js +6 -0
  719. package/dist/ink-runner/node_modules/cli-boxes/license +9 -0
  720. package/dist/ink-runner/node_modules/cli-boxes/package.json +42 -0
  721. package/dist/ink-runner/node_modules/cli-boxes/readme.md +115 -0
  722. package/dist/ink-runner/node_modules/cli-cursor/index.d.ts +47 -0
  723. package/dist/ink-runner/node_modules/cli-cursor/index.js +39 -0
  724. package/dist/ink-runner/node_modules/cli-cursor/license +9 -0
  725. package/dist/ink-runner/node_modules/cli-cursor/package.json +49 -0
  726. package/dist/ink-runner/node_modules/cli-cursor/readme.md +51 -0
  727. package/dist/ink-runner/node_modules/cli-truncate/index.d.ts +116 -0
  728. package/dist/ink-runner/node_modules/cli-truncate/index.js +99 -0
  729. package/dist/ink-runner/node_modules/cli-truncate/license +9 -0
  730. package/dist/ink-runner/node_modules/cli-truncate/node_modules/slice-ansi/index.js +105 -0
  731. package/dist/ink-runner/node_modules/cli-truncate/node_modules/slice-ansi/license +10 -0
  732. package/dist/ink-runner/node_modules/cli-truncate/node_modules/slice-ansi/package.json +53 -0
  733. package/dist/ink-runner/node_modules/cli-truncate/node_modules/slice-ansi/readme.md +66 -0
  734. package/dist/ink-runner/node_modules/cli-truncate/package.json +51 -0
  735. package/dist/ink-runner/node_modules/cli-truncate/readme.md +150 -0
  736. package/dist/ink-runner/node_modules/code-excerpt/dist/index.d.ts +9 -0
  737. package/dist/ink-runner/node_modules/code-excerpt/dist/index.js +27 -0
  738. package/dist/ink-runner/node_modules/code-excerpt/license +21 -0
  739. package/dist/ink-runner/node_modules/code-excerpt/package.json +43 -0
  740. package/dist/ink-runner/node_modules/code-excerpt/readme.md +65 -0
  741. package/dist/ink-runner/node_modules/convert-to-spaces/dist/index.d.ts +2 -0
  742. package/dist/ink-runner/node_modules/convert-to-spaces/dist/index.js +4 -0
  743. package/dist/ink-runner/node_modules/convert-to-spaces/license +21 -0
  744. package/dist/ink-runner/node_modules/convert-to-spaces/package.json +40 -0
  745. package/dist/ink-runner/node_modules/convert-to-spaces/readme.md +39 -0
  746. package/dist/ink-runner/node_modules/csstype/LICENSE +19 -0
  747. package/dist/ink-runner/node_modules/csstype/README.md +291 -0
  748. package/dist/ink-runner/node_modules/csstype/index.d.ts +22569 -0
  749. package/dist/ink-runner/node_modules/csstype/index.js.flow +6863 -0
  750. package/dist/ink-runner/node_modules/csstype/package.json +70 -0
  751. package/dist/ink-runner/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
  752. package/dist/ink-runner/node_modules/emoji-regex/README.md +107 -0
  753. package/dist/ink-runner/node_modules/emoji-regex/index.d.ts +3 -0
  754. package/dist/ink-runner/node_modules/emoji-regex/index.js +4 -0
  755. package/dist/ink-runner/node_modules/emoji-regex/index.mjs +4 -0
  756. package/dist/ink-runner/node_modules/emoji-regex/package.json +45 -0
  757. package/dist/ink-runner/node_modules/environment/index.d.ts +74 -0
  758. package/dist/ink-runner/node_modules/environment/index.js +47 -0
  759. package/dist/ink-runner/node_modules/environment/license +9 -0
  760. package/dist/ink-runner/node_modules/environment/package.json +74 -0
  761. package/dist/ink-runner/node_modules/environment/readme.md +94 -0
  762. package/dist/ink-runner/node_modules/es-toolkit/CHANGELOG.md +742 -0
  763. package/dist/ink-runner/node_modules/es-toolkit/LICENSE +25 -0
  764. package/dist/ink-runner/node_modules/es-toolkit/README.md +52 -0
  765. package/dist/ink-runner/node_modules/es-toolkit/array.d.ts +1 -0
  766. package/dist/ink-runner/node_modules/es-toolkit/array.js +1 -0
  767. package/dist/ink-runner/node_modules/es-toolkit/compat/add.d.ts +1 -0
  768. package/dist/ink-runner/node_modules/es-toolkit/compat/add.js +1 -0
  769. package/dist/ink-runner/node_modules/es-toolkit/compat/after.d.ts +1 -0
  770. package/dist/ink-runner/node_modules/es-toolkit/compat/after.js +1 -0
  771. package/dist/ink-runner/node_modules/es-toolkit/compat/ary.d.ts +1 -0
  772. package/dist/ink-runner/node_modules/es-toolkit/compat/ary.js +1 -0
  773. package/dist/ink-runner/node_modules/es-toolkit/compat/assign.d.ts +1 -0
  774. package/dist/ink-runner/node_modules/es-toolkit/compat/assign.js +1 -0
  775. package/dist/ink-runner/node_modules/es-toolkit/compat/assignIn.d.ts +1 -0
  776. package/dist/ink-runner/node_modules/es-toolkit/compat/assignIn.js +1 -0
  777. package/dist/ink-runner/node_modules/es-toolkit/compat/assignInWith.d.ts +1 -0
  778. package/dist/ink-runner/node_modules/es-toolkit/compat/assignInWith.js +1 -0
  779. package/dist/ink-runner/node_modules/es-toolkit/compat/assignWith.d.ts +1 -0
  780. package/dist/ink-runner/node_modules/es-toolkit/compat/assignWith.js +1 -0
  781. package/dist/ink-runner/node_modules/es-toolkit/compat/at.d.ts +1 -0
  782. package/dist/ink-runner/node_modules/es-toolkit/compat/at.js +1 -0
  783. package/dist/ink-runner/node_modules/es-toolkit/compat/attempt.d.ts +1 -0
  784. package/dist/ink-runner/node_modules/es-toolkit/compat/attempt.js +1 -0
  785. package/dist/ink-runner/node_modules/es-toolkit/compat/before.d.ts +1 -0
  786. package/dist/ink-runner/node_modules/es-toolkit/compat/before.js +1 -0
  787. package/dist/ink-runner/node_modules/es-toolkit/compat/bind.d.ts +1 -0
  788. package/dist/ink-runner/node_modules/es-toolkit/compat/bind.js +1 -0
  789. package/dist/ink-runner/node_modules/es-toolkit/compat/bindAll.d.ts +1 -0
  790. package/dist/ink-runner/node_modules/es-toolkit/compat/bindAll.js +1 -0
  791. package/dist/ink-runner/node_modules/es-toolkit/compat/bindKey.d.ts +1 -0
  792. package/dist/ink-runner/node_modules/es-toolkit/compat/bindKey.js +1 -0
  793. package/dist/ink-runner/node_modules/es-toolkit/compat/camelCase.d.ts +1 -0
  794. package/dist/ink-runner/node_modules/es-toolkit/compat/camelCase.js +1 -0
  795. package/dist/ink-runner/node_modules/es-toolkit/compat/capitalize.d.ts +1 -0
  796. package/dist/ink-runner/node_modules/es-toolkit/compat/capitalize.js +1 -0
  797. package/dist/ink-runner/node_modules/es-toolkit/compat/castArray.d.ts +1 -0
  798. package/dist/ink-runner/node_modules/es-toolkit/compat/castArray.js +1 -0
  799. package/dist/ink-runner/node_modules/es-toolkit/compat/ceil.d.ts +1 -0
  800. package/dist/ink-runner/node_modules/es-toolkit/compat/ceil.js +1 -0
  801. package/dist/ink-runner/node_modules/es-toolkit/compat/chunk.d.ts +1 -0
  802. package/dist/ink-runner/node_modules/es-toolkit/compat/chunk.js +1 -0
  803. package/dist/ink-runner/node_modules/es-toolkit/compat/clamp.d.ts +1 -0
  804. package/dist/ink-runner/node_modules/es-toolkit/compat/clamp.js +1 -0
  805. package/dist/ink-runner/node_modules/es-toolkit/compat/clone.d.ts +1 -0
  806. package/dist/ink-runner/node_modules/es-toolkit/compat/clone.js +1 -0
  807. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneDeep.d.ts +1 -0
  808. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneDeep.js +1 -0
  809. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneDeepWith.d.ts +1 -0
  810. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneDeepWith.js +1 -0
  811. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneWith.d.ts +1 -0
  812. package/dist/ink-runner/node_modules/es-toolkit/compat/cloneWith.js +1 -0
  813. package/dist/ink-runner/node_modules/es-toolkit/compat/compact.d.ts +1 -0
  814. package/dist/ink-runner/node_modules/es-toolkit/compat/compact.js +1 -0
  815. package/dist/ink-runner/node_modules/es-toolkit/compat/concat.d.ts +1 -0
  816. package/dist/ink-runner/node_modules/es-toolkit/compat/concat.js +1 -0
  817. package/dist/ink-runner/node_modules/es-toolkit/compat/cond.d.ts +1 -0
  818. package/dist/ink-runner/node_modules/es-toolkit/compat/cond.js +1 -0
  819. package/dist/ink-runner/node_modules/es-toolkit/compat/conforms.d.ts +1 -0
  820. package/dist/ink-runner/node_modules/es-toolkit/compat/conforms.js +1 -0
  821. package/dist/ink-runner/node_modules/es-toolkit/compat/conformsTo.d.ts +1 -0
  822. package/dist/ink-runner/node_modules/es-toolkit/compat/conformsTo.js +1 -0
  823. package/dist/ink-runner/node_modules/es-toolkit/compat/constant.d.ts +1 -0
  824. package/dist/ink-runner/node_modules/es-toolkit/compat/constant.js +1 -0
  825. package/dist/ink-runner/node_modules/es-toolkit/compat/countBy.d.ts +1 -0
  826. package/dist/ink-runner/node_modules/es-toolkit/compat/countBy.js +1 -0
  827. package/dist/ink-runner/node_modules/es-toolkit/compat/create.d.ts +1 -0
  828. package/dist/ink-runner/node_modules/es-toolkit/compat/create.js +1 -0
  829. package/dist/ink-runner/node_modules/es-toolkit/compat/curry.d.ts +1 -0
  830. package/dist/ink-runner/node_modules/es-toolkit/compat/curry.js +1 -0
  831. package/dist/ink-runner/node_modules/es-toolkit/compat/curryRight.d.ts +1 -0
  832. package/dist/ink-runner/node_modules/es-toolkit/compat/curryRight.js +1 -0
  833. package/dist/ink-runner/node_modules/es-toolkit/compat/debounce.d.ts +1 -0
  834. package/dist/ink-runner/node_modules/es-toolkit/compat/debounce.js +1 -0
  835. package/dist/ink-runner/node_modules/es-toolkit/compat/deburr.d.ts +1 -0
  836. package/dist/ink-runner/node_modules/es-toolkit/compat/deburr.js +1 -0
  837. package/dist/ink-runner/node_modules/es-toolkit/compat/defaultTo.d.ts +1 -0
  838. package/dist/ink-runner/node_modules/es-toolkit/compat/defaultTo.js +1 -0
  839. package/dist/ink-runner/node_modules/es-toolkit/compat/defaults.d.ts +1 -0
  840. package/dist/ink-runner/node_modules/es-toolkit/compat/defaults.js +1 -0
  841. package/dist/ink-runner/node_modules/es-toolkit/compat/defaultsDeep.d.ts +1 -0
  842. package/dist/ink-runner/node_modules/es-toolkit/compat/defaultsDeep.js +1 -0
  843. package/dist/ink-runner/node_modules/es-toolkit/compat/defer.d.ts +1 -0
  844. package/dist/ink-runner/node_modules/es-toolkit/compat/defer.js +1 -0
  845. package/dist/ink-runner/node_modules/es-toolkit/compat/delay.d.ts +1 -0
  846. package/dist/ink-runner/node_modules/es-toolkit/compat/delay.js +1 -0
  847. package/dist/ink-runner/node_modules/es-toolkit/compat/difference.d.ts +1 -0
  848. package/dist/ink-runner/node_modules/es-toolkit/compat/difference.js +1 -0
  849. package/dist/ink-runner/node_modules/es-toolkit/compat/differenceBy.d.ts +1 -0
  850. package/dist/ink-runner/node_modules/es-toolkit/compat/differenceBy.js +1 -0
  851. package/dist/ink-runner/node_modules/es-toolkit/compat/differenceWith.d.ts +1 -0
  852. package/dist/ink-runner/node_modules/es-toolkit/compat/differenceWith.js +1 -0
  853. package/dist/ink-runner/node_modules/es-toolkit/compat/divide.d.ts +1 -0
  854. package/dist/ink-runner/node_modules/es-toolkit/compat/divide.js +1 -0
  855. package/dist/ink-runner/node_modules/es-toolkit/compat/drop.d.ts +1 -0
  856. package/dist/ink-runner/node_modules/es-toolkit/compat/drop.js +1 -0
  857. package/dist/ink-runner/node_modules/es-toolkit/compat/dropRight.d.ts +1 -0
  858. package/dist/ink-runner/node_modules/es-toolkit/compat/dropRight.js +1 -0
  859. package/dist/ink-runner/node_modules/es-toolkit/compat/dropRightWhile.d.ts +1 -0
  860. package/dist/ink-runner/node_modules/es-toolkit/compat/dropRightWhile.js +1 -0
  861. package/dist/ink-runner/node_modules/es-toolkit/compat/dropWhile.d.ts +1 -0
  862. package/dist/ink-runner/node_modules/es-toolkit/compat/dropWhile.js +1 -0
  863. package/dist/ink-runner/node_modules/es-toolkit/compat/each.d.ts +1 -0
  864. package/dist/ink-runner/node_modules/es-toolkit/compat/each.js +1 -0
  865. package/dist/ink-runner/node_modules/es-toolkit/compat/eachRight.d.ts +1 -0
  866. package/dist/ink-runner/node_modules/es-toolkit/compat/eachRight.js +1 -0
  867. package/dist/ink-runner/node_modules/es-toolkit/compat/endsWith.d.ts +1 -0
  868. package/dist/ink-runner/node_modules/es-toolkit/compat/endsWith.js +1 -0
  869. package/dist/ink-runner/node_modules/es-toolkit/compat/eq.d.ts +1 -0
  870. package/dist/ink-runner/node_modules/es-toolkit/compat/eq.js +1 -0
  871. package/dist/ink-runner/node_modules/es-toolkit/compat/escape.d.ts +1 -0
  872. package/dist/ink-runner/node_modules/es-toolkit/compat/escape.js +1 -0
  873. package/dist/ink-runner/node_modules/es-toolkit/compat/escapeRegExp.d.ts +1 -0
  874. package/dist/ink-runner/node_modules/es-toolkit/compat/escapeRegExp.js +1 -0
  875. package/dist/ink-runner/node_modules/es-toolkit/compat/every.d.ts +1 -0
  876. package/dist/ink-runner/node_modules/es-toolkit/compat/every.js +1 -0
  877. package/dist/ink-runner/node_modules/es-toolkit/compat/extend.d.ts +1 -0
  878. package/dist/ink-runner/node_modules/es-toolkit/compat/extend.js +1 -0
  879. package/dist/ink-runner/node_modules/es-toolkit/compat/extendWith.d.ts +1 -0
  880. package/dist/ink-runner/node_modules/es-toolkit/compat/extendWith.js +1 -0
  881. package/dist/ink-runner/node_modules/es-toolkit/compat/fill.d.ts +1 -0
  882. package/dist/ink-runner/node_modules/es-toolkit/compat/fill.js +1 -0
  883. package/dist/ink-runner/node_modules/es-toolkit/compat/filter.d.ts +1 -0
  884. package/dist/ink-runner/node_modules/es-toolkit/compat/filter.js +1 -0
  885. package/dist/ink-runner/node_modules/es-toolkit/compat/find.d.ts +1 -0
  886. package/dist/ink-runner/node_modules/es-toolkit/compat/find.js +1 -0
  887. package/dist/ink-runner/node_modules/es-toolkit/compat/findIndex.d.ts +1 -0
  888. package/dist/ink-runner/node_modules/es-toolkit/compat/findIndex.js +1 -0
  889. package/dist/ink-runner/node_modules/es-toolkit/compat/findKey.d.ts +1 -0
  890. package/dist/ink-runner/node_modules/es-toolkit/compat/findKey.js +1 -0
  891. package/dist/ink-runner/node_modules/es-toolkit/compat/findLast.d.ts +1 -0
  892. package/dist/ink-runner/node_modules/es-toolkit/compat/findLast.js +1 -0
  893. package/dist/ink-runner/node_modules/es-toolkit/compat/findLastIndex.d.ts +1 -0
  894. package/dist/ink-runner/node_modules/es-toolkit/compat/findLastIndex.js +1 -0
  895. package/dist/ink-runner/node_modules/es-toolkit/compat/findLastKey.d.ts +1 -0
  896. package/dist/ink-runner/node_modules/es-toolkit/compat/findLastKey.js +1 -0
  897. package/dist/ink-runner/node_modules/es-toolkit/compat/first.d.ts +1 -0
  898. package/dist/ink-runner/node_modules/es-toolkit/compat/first.js +1 -0
  899. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMap.d.ts +1 -0
  900. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMap.js +1 -0
  901. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMapDeep.d.ts +1 -0
  902. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMapDeep.js +1 -0
  903. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMapDepth.d.ts +1 -0
  904. package/dist/ink-runner/node_modules/es-toolkit/compat/flatMapDepth.js +1 -0
  905. package/dist/ink-runner/node_modules/es-toolkit/compat/flatten.d.ts +1 -0
  906. package/dist/ink-runner/node_modules/es-toolkit/compat/flatten.js +1 -0
  907. package/dist/ink-runner/node_modules/es-toolkit/compat/flattenDeep.d.ts +1 -0
  908. package/dist/ink-runner/node_modules/es-toolkit/compat/flattenDeep.js +1 -0
  909. package/dist/ink-runner/node_modules/es-toolkit/compat/flattenDepth.d.ts +1 -0
  910. package/dist/ink-runner/node_modules/es-toolkit/compat/flattenDepth.js +1 -0
  911. package/dist/ink-runner/node_modules/es-toolkit/compat/flip.d.ts +1 -0
  912. package/dist/ink-runner/node_modules/es-toolkit/compat/flip.js +1 -0
  913. package/dist/ink-runner/node_modules/es-toolkit/compat/floor.d.ts +1 -0
  914. package/dist/ink-runner/node_modules/es-toolkit/compat/floor.js +1 -0
  915. package/dist/ink-runner/node_modules/es-toolkit/compat/flow.d.ts +1 -0
  916. package/dist/ink-runner/node_modules/es-toolkit/compat/flow.js +1 -0
  917. package/dist/ink-runner/node_modules/es-toolkit/compat/flowRight.d.ts +1 -0
  918. package/dist/ink-runner/node_modules/es-toolkit/compat/flowRight.js +1 -0
  919. package/dist/ink-runner/node_modules/es-toolkit/compat/forEach.d.ts +1 -0
  920. package/dist/ink-runner/node_modules/es-toolkit/compat/forEach.js +1 -0
  921. package/dist/ink-runner/node_modules/es-toolkit/compat/forEachRight.d.ts +1 -0
  922. package/dist/ink-runner/node_modules/es-toolkit/compat/forEachRight.js +1 -0
  923. package/dist/ink-runner/node_modules/es-toolkit/compat/forIn.d.ts +1 -0
  924. package/dist/ink-runner/node_modules/es-toolkit/compat/forIn.js +1 -0
  925. package/dist/ink-runner/node_modules/es-toolkit/compat/forInRight.d.ts +1 -0
  926. package/dist/ink-runner/node_modules/es-toolkit/compat/forInRight.js +1 -0
  927. package/dist/ink-runner/node_modules/es-toolkit/compat/forOwn.d.ts +1 -0
  928. package/dist/ink-runner/node_modules/es-toolkit/compat/forOwn.js +1 -0
  929. package/dist/ink-runner/node_modules/es-toolkit/compat/forOwnRight.d.ts +1 -0
  930. package/dist/ink-runner/node_modules/es-toolkit/compat/forOwnRight.js +1 -0
  931. package/dist/ink-runner/node_modules/es-toolkit/compat/fromPairs.d.ts +1 -0
  932. package/dist/ink-runner/node_modules/es-toolkit/compat/fromPairs.js +1 -0
  933. package/dist/ink-runner/node_modules/es-toolkit/compat/functions.d.ts +1 -0
  934. package/dist/ink-runner/node_modules/es-toolkit/compat/functions.js +1 -0
  935. package/dist/ink-runner/node_modules/es-toolkit/compat/functionsIn.d.ts +1 -0
  936. package/dist/ink-runner/node_modules/es-toolkit/compat/functionsIn.js +1 -0
  937. package/dist/ink-runner/node_modules/es-toolkit/compat/get.d.ts +1 -0
  938. package/dist/ink-runner/node_modules/es-toolkit/compat/get.js +1 -0
  939. package/dist/ink-runner/node_modules/es-toolkit/compat/groupBy.d.ts +1 -0
  940. package/dist/ink-runner/node_modules/es-toolkit/compat/groupBy.js +1 -0
  941. package/dist/ink-runner/node_modules/es-toolkit/compat/gt.d.ts +1 -0
  942. package/dist/ink-runner/node_modules/es-toolkit/compat/gt.js +1 -0
  943. package/dist/ink-runner/node_modules/es-toolkit/compat/gte.d.ts +1 -0
  944. package/dist/ink-runner/node_modules/es-toolkit/compat/gte.js +1 -0
  945. package/dist/ink-runner/node_modules/es-toolkit/compat/has.d.ts +1 -0
  946. package/dist/ink-runner/node_modules/es-toolkit/compat/has.js +1 -0
  947. package/dist/ink-runner/node_modules/es-toolkit/compat/hasIn.d.ts +1 -0
  948. package/dist/ink-runner/node_modules/es-toolkit/compat/hasIn.js +1 -0
  949. package/dist/ink-runner/node_modules/es-toolkit/compat/head.d.ts +1 -0
  950. package/dist/ink-runner/node_modules/es-toolkit/compat/head.js +1 -0
  951. package/dist/ink-runner/node_modules/es-toolkit/compat/identity.d.ts +1 -0
  952. package/dist/ink-runner/node_modules/es-toolkit/compat/identity.js +1 -0
  953. package/dist/ink-runner/node_modules/es-toolkit/compat/inRange.d.ts +1 -0
  954. package/dist/ink-runner/node_modules/es-toolkit/compat/inRange.js +1 -0
  955. package/dist/ink-runner/node_modules/es-toolkit/compat/includes.d.ts +1 -0
  956. package/dist/ink-runner/node_modules/es-toolkit/compat/includes.js +1 -0
  957. package/dist/ink-runner/node_modules/es-toolkit/compat/indexOf.d.ts +1 -0
  958. package/dist/ink-runner/node_modules/es-toolkit/compat/indexOf.js +1 -0
  959. package/dist/ink-runner/node_modules/es-toolkit/compat/initial.d.ts +1 -0
  960. package/dist/ink-runner/node_modules/es-toolkit/compat/initial.js +1 -0
  961. package/dist/ink-runner/node_modules/es-toolkit/compat/intersection.d.ts +1 -0
  962. package/dist/ink-runner/node_modules/es-toolkit/compat/intersection.js +1 -0
  963. package/dist/ink-runner/node_modules/es-toolkit/compat/intersectionBy.d.ts +1 -0
  964. package/dist/ink-runner/node_modules/es-toolkit/compat/intersectionBy.js +1 -0
  965. package/dist/ink-runner/node_modules/es-toolkit/compat/intersectionWith.d.ts +1 -0
  966. package/dist/ink-runner/node_modules/es-toolkit/compat/intersectionWith.js +1 -0
  967. package/dist/ink-runner/node_modules/es-toolkit/compat/invert.d.ts +1 -0
  968. package/dist/ink-runner/node_modules/es-toolkit/compat/invert.js +1 -0
  969. package/dist/ink-runner/node_modules/es-toolkit/compat/invertBy.d.ts +1 -0
  970. package/dist/ink-runner/node_modules/es-toolkit/compat/invertBy.js +1 -0
  971. package/dist/ink-runner/node_modules/es-toolkit/compat/invoke.d.ts +1 -0
  972. package/dist/ink-runner/node_modules/es-toolkit/compat/invoke.js +1 -0
  973. package/dist/ink-runner/node_modules/es-toolkit/compat/invokeMap.d.ts +1 -0
  974. package/dist/ink-runner/node_modules/es-toolkit/compat/invokeMap.js +1 -0
  975. package/dist/ink-runner/node_modules/es-toolkit/compat/isArguments.d.ts +1 -0
  976. package/dist/ink-runner/node_modules/es-toolkit/compat/isArguments.js +1 -0
  977. package/dist/ink-runner/node_modules/es-toolkit/compat/isArray.d.ts +1 -0
  978. package/dist/ink-runner/node_modules/es-toolkit/compat/isArray.js +1 -0
  979. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayBuffer.d.ts +1 -0
  980. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayBuffer.js +1 -0
  981. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayLike.d.ts +1 -0
  982. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayLike.js +1 -0
  983. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayLikeObject.d.ts +1 -0
  984. package/dist/ink-runner/node_modules/es-toolkit/compat/isArrayLikeObject.js +1 -0
  985. package/dist/ink-runner/node_modules/es-toolkit/compat/isBoolean.d.ts +1 -0
  986. package/dist/ink-runner/node_modules/es-toolkit/compat/isBoolean.js +1 -0
  987. package/dist/ink-runner/node_modules/es-toolkit/compat/isBuffer.d.ts +1 -0
  988. package/dist/ink-runner/node_modules/es-toolkit/compat/isBuffer.js +1 -0
  989. package/dist/ink-runner/node_modules/es-toolkit/compat/isDate.d.ts +1 -0
  990. package/dist/ink-runner/node_modules/es-toolkit/compat/isDate.js +1 -0
  991. package/dist/ink-runner/node_modules/es-toolkit/compat/isElement.d.ts +1 -0
  992. package/dist/ink-runner/node_modules/es-toolkit/compat/isElement.js +1 -0
  993. package/dist/ink-runner/node_modules/es-toolkit/compat/isEmpty.d.ts +1 -0
  994. package/dist/ink-runner/node_modules/es-toolkit/compat/isEmpty.js +1 -0
  995. package/dist/ink-runner/node_modules/es-toolkit/compat/isEqual.d.ts +1 -0
  996. package/dist/ink-runner/node_modules/es-toolkit/compat/isEqual.js +1 -0
  997. package/dist/ink-runner/node_modules/es-toolkit/compat/isEqualWith.d.ts +1 -0
  998. package/dist/ink-runner/node_modules/es-toolkit/compat/isEqualWith.js +1 -0
  999. package/dist/ink-runner/node_modules/es-toolkit/compat/isError.d.ts +1 -0
  1000. package/dist/ink-runner/node_modules/es-toolkit/compat/isError.js +1 -0
  1001. package/dist/ink-runner/node_modules/es-toolkit/compat/isFinite.d.ts +1 -0
  1002. package/dist/ink-runner/node_modules/es-toolkit/compat/isFinite.js +1 -0
  1003. package/dist/ink-runner/node_modules/es-toolkit/compat/isFunction.d.ts +1 -0
  1004. package/dist/ink-runner/node_modules/es-toolkit/compat/isFunction.js +1 -0
  1005. package/dist/ink-runner/node_modules/es-toolkit/compat/isInteger.d.ts +1 -0
  1006. package/dist/ink-runner/node_modules/es-toolkit/compat/isInteger.js +1 -0
  1007. package/dist/ink-runner/node_modules/es-toolkit/compat/isLength.d.ts +1 -0
  1008. package/dist/ink-runner/node_modules/es-toolkit/compat/isLength.js +1 -0
  1009. package/dist/ink-runner/node_modules/es-toolkit/compat/isMap.d.ts +1 -0
  1010. package/dist/ink-runner/node_modules/es-toolkit/compat/isMap.js +1 -0
  1011. package/dist/ink-runner/node_modules/es-toolkit/compat/isMatch.d.ts +1 -0
  1012. package/dist/ink-runner/node_modules/es-toolkit/compat/isMatch.js +1 -0
  1013. package/dist/ink-runner/node_modules/es-toolkit/compat/isMatchWith.d.ts +1 -0
  1014. package/dist/ink-runner/node_modules/es-toolkit/compat/isMatchWith.js +1 -0
  1015. package/dist/ink-runner/node_modules/es-toolkit/compat/isNaN.d.ts +1 -0
  1016. package/dist/ink-runner/node_modules/es-toolkit/compat/isNaN.js +1 -0
  1017. package/dist/ink-runner/node_modules/es-toolkit/compat/isNative.d.ts +1 -0
  1018. package/dist/ink-runner/node_modules/es-toolkit/compat/isNative.js +1 -0
  1019. package/dist/ink-runner/node_modules/es-toolkit/compat/isNil.d.ts +1 -0
  1020. package/dist/ink-runner/node_modules/es-toolkit/compat/isNil.js +1 -0
  1021. package/dist/ink-runner/node_modules/es-toolkit/compat/isNull.d.ts +1 -0
  1022. package/dist/ink-runner/node_modules/es-toolkit/compat/isNull.js +1 -0
  1023. package/dist/ink-runner/node_modules/es-toolkit/compat/isNumber.d.ts +1 -0
  1024. package/dist/ink-runner/node_modules/es-toolkit/compat/isNumber.js +1 -0
  1025. package/dist/ink-runner/node_modules/es-toolkit/compat/isObject.d.ts +1 -0
  1026. package/dist/ink-runner/node_modules/es-toolkit/compat/isObject.js +1 -0
  1027. package/dist/ink-runner/node_modules/es-toolkit/compat/isObjectLike.d.ts +1 -0
  1028. package/dist/ink-runner/node_modules/es-toolkit/compat/isObjectLike.js +1 -0
  1029. package/dist/ink-runner/node_modules/es-toolkit/compat/isPlainObject.d.ts +1 -0
  1030. package/dist/ink-runner/node_modules/es-toolkit/compat/isPlainObject.js +1 -0
  1031. package/dist/ink-runner/node_modules/es-toolkit/compat/isRegExp.d.ts +1 -0
  1032. package/dist/ink-runner/node_modules/es-toolkit/compat/isRegExp.js +1 -0
  1033. package/dist/ink-runner/node_modules/es-toolkit/compat/isSafeInteger.d.ts +1 -0
  1034. package/dist/ink-runner/node_modules/es-toolkit/compat/isSafeInteger.js +1 -0
  1035. package/dist/ink-runner/node_modules/es-toolkit/compat/isSet.d.ts +1 -0
  1036. package/dist/ink-runner/node_modules/es-toolkit/compat/isSet.js +1 -0
  1037. package/dist/ink-runner/node_modules/es-toolkit/compat/isString.d.ts +1 -0
  1038. package/dist/ink-runner/node_modules/es-toolkit/compat/isString.js +1 -0
  1039. package/dist/ink-runner/node_modules/es-toolkit/compat/isSymbol.d.ts +1 -0
  1040. package/dist/ink-runner/node_modules/es-toolkit/compat/isSymbol.js +1 -0
  1041. package/dist/ink-runner/node_modules/es-toolkit/compat/isTypedArray.d.ts +1 -0
  1042. package/dist/ink-runner/node_modules/es-toolkit/compat/isTypedArray.js +1 -0
  1043. package/dist/ink-runner/node_modules/es-toolkit/compat/isUndefined.d.ts +1 -0
  1044. package/dist/ink-runner/node_modules/es-toolkit/compat/isUndefined.js +1 -0
  1045. package/dist/ink-runner/node_modules/es-toolkit/compat/isWeakMap.d.ts +1 -0
  1046. package/dist/ink-runner/node_modules/es-toolkit/compat/isWeakMap.js +1 -0
  1047. package/dist/ink-runner/node_modules/es-toolkit/compat/isWeakSet.d.ts +1 -0
  1048. package/dist/ink-runner/node_modules/es-toolkit/compat/isWeakSet.js +1 -0
  1049. package/dist/ink-runner/node_modules/es-toolkit/compat/iteratee.d.ts +1 -0
  1050. package/dist/ink-runner/node_modules/es-toolkit/compat/iteratee.js +1 -0
  1051. package/dist/ink-runner/node_modules/es-toolkit/compat/join.d.ts +1 -0
  1052. package/dist/ink-runner/node_modules/es-toolkit/compat/join.js +1 -0
  1053. package/dist/ink-runner/node_modules/es-toolkit/compat/kebabCase.d.ts +1 -0
  1054. package/dist/ink-runner/node_modules/es-toolkit/compat/kebabCase.js +1 -0
  1055. package/dist/ink-runner/node_modules/es-toolkit/compat/keyBy.d.ts +1 -0
  1056. package/dist/ink-runner/node_modules/es-toolkit/compat/keyBy.js +1 -0
  1057. package/dist/ink-runner/node_modules/es-toolkit/compat/keys.d.ts +1 -0
  1058. package/dist/ink-runner/node_modules/es-toolkit/compat/keys.js +1 -0
  1059. package/dist/ink-runner/node_modules/es-toolkit/compat/keysIn.d.ts +1 -0
  1060. package/dist/ink-runner/node_modules/es-toolkit/compat/keysIn.js +1 -0
  1061. package/dist/ink-runner/node_modules/es-toolkit/compat/last.d.ts +1 -0
  1062. package/dist/ink-runner/node_modules/es-toolkit/compat/last.js +1 -0
  1063. package/dist/ink-runner/node_modules/es-toolkit/compat/lastIndexOf.d.ts +1 -0
  1064. package/dist/ink-runner/node_modules/es-toolkit/compat/lastIndexOf.js +1 -0
  1065. package/dist/ink-runner/node_modules/es-toolkit/compat/lowerCase.d.ts +1 -0
  1066. package/dist/ink-runner/node_modules/es-toolkit/compat/lowerCase.js +1 -0
  1067. package/dist/ink-runner/node_modules/es-toolkit/compat/lowerFirst.d.ts +1 -0
  1068. package/dist/ink-runner/node_modules/es-toolkit/compat/lowerFirst.js +1 -0
  1069. package/dist/ink-runner/node_modules/es-toolkit/compat/lt.d.ts +1 -0
  1070. package/dist/ink-runner/node_modules/es-toolkit/compat/lt.js +1 -0
  1071. package/dist/ink-runner/node_modules/es-toolkit/compat/lte.d.ts +1 -0
  1072. package/dist/ink-runner/node_modules/es-toolkit/compat/lte.js +1 -0
  1073. package/dist/ink-runner/node_modules/es-toolkit/compat/map.d.ts +1 -0
  1074. package/dist/ink-runner/node_modules/es-toolkit/compat/map.js +1 -0
  1075. package/dist/ink-runner/node_modules/es-toolkit/compat/mapKeys.d.ts +1 -0
  1076. package/dist/ink-runner/node_modules/es-toolkit/compat/mapKeys.js +1 -0
  1077. package/dist/ink-runner/node_modules/es-toolkit/compat/mapValues.d.ts +1 -0
  1078. package/dist/ink-runner/node_modules/es-toolkit/compat/mapValues.js +1 -0
  1079. package/dist/ink-runner/node_modules/es-toolkit/compat/matches.d.ts +1 -0
  1080. package/dist/ink-runner/node_modules/es-toolkit/compat/matches.js +1 -0
  1081. package/dist/ink-runner/node_modules/es-toolkit/compat/matchesProperty.d.ts +1 -0
  1082. package/dist/ink-runner/node_modules/es-toolkit/compat/matchesProperty.js +1 -0
  1083. package/dist/ink-runner/node_modules/es-toolkit/compat/max.d.ts +1 -0
  1084. package/dist/ink-runner/node_modules/es-toolkit/compat/max.js +1 -0
  1085. package/dist/ink-runner/node_modules/es-toolkit/compat/maxBy.d.ts +1 -0
  1086. package/dist/ink-runner/node_modules/es-toolkit/compat/maxBy.js +1 -0
  1087. package/dist/ink-runner/node_modules/es-toolkit/compat/mean.d.ts +1 -0
  1088. package/dist/ink-runner/node_modules/es-toolkit/compat/mean.js +1 -0
  1089. package/dist/ink-runner/node_modules/es-toolkit/compat/meanBy.d.ts +1 -0
  1090. package/dist/ink-runner/node_modules/es-toolkit/compat/meanBy.js +1 -0
  1091. package/dist/ink-runner/node_modules/es-toolkit/compat/memoize.d.ts +1 -0
  1092. package/dist/ink-runner/node_modules/es-toolkit/compat/memoize.js +1 -0
  1093. package/dist/ink-runner/node_modules/es-toolkit/compat/merge.d.ts +1 -0
  1094. package/dist/ink-runner/node_modules/es-toolkit/compat/merge.js +1 -0
  1095. package/dist/ink-runner/node_modules/es-toolkit/compat/mergeWith.d.ts +1 -0
  1096. package/dist/ink-runner/node_modules/es-toolkit/compat/mergeWith.js +1 -0
  1097. package/dist/ink-runner/node_modules/es-toolkit/compat/method.d.ts +1 -0
  1098. package/dist/ink-runner/node_modules/es-toolkit/compat/method.js +1 -0
  1099. package/dist/ink-runner/node_modules/es-toolkit/compat/methodOf.d.ts +1 -0
  1100. package/dist/ink-runner/node_modules/es-toolkit/compat/methodOf.js +1 -0
  1101. package/dist/ink-runner/node_modules/es-toolkit/compat/min.d.ts +1 -0
  1102. package/dist/ink-runner/node_modules/es-toolkit/compat/min.js +1 -0
  1103. package/dist/ink-runner/node_modules/es-toolkit/compat/minBy.d.ts +1 -0
  1104. package/dist/ink-runner/node_modules/es-toolkit/compat/minBy.js +1 -0
  1105. package/dist/ink-runner/node_modules/es-toolkit/compat/multiply.d.ts +1 -0
  1106. package/dist/ink-runner/node_modules/es-toolkit/compat/multiply.js +1 -0
  1107. package/dist/ink-runner/node_modules/es-toolkit/compat/negate.d.ts +1 -0
  1108. package/dist/ink-runner/node_modules/es-toolkit/compat/negate.js +1 -0
  1109. package/dist/ink-runner/node_modules/es-toolkit/compat/noop.d.ts +1 -0
  1110. package/dist/ink-runner/node_modules/es-toolkit/compat/noop.js +1 -0
  1111. package/dist/ink-runner/node_modules/es-toolkit/compat/now.d.ts +1 -0
  1112. package/dist/ink-runner/node_modules/es-toolkit/compat/now.js +1 -0
  1113. package/dist/ink-runner/node_modules/es-toolkit/compat/nth.d.ts +1 -0
  1114. package/dist/ink-runner/node_modules/es-toolkit/compat/nth.js +1 -0
  1115. package/dist/ink-runner/node_modules/es-toolkit/compat/nthArg.d.ts +1 -0
  1116. package/dist/ink-runner/node_modules/es-toolkit/compat/nthArg.js +1 -0
  1117. package/dist/ink-runner/node_modules/es-toolkit/compat/omit.d.ts +1 -0
  1118. package/dist/ink-runner/node_modules/es-toolkit/compat/omit.js +1 -0
  1119. package/dist/ink-runner/node_modules/es-toolkit/compat/omitBy.d.ts +1 -0
  1120. package/dist/ink-runner/node_modules/es-toolkit/compat/omitBy.js +1 -0
  1121. package/dist/ink-runner/node_modules/es-toolkit/compat/once.d.ts +1 -0
  1122. package/dist/ink-runner/node_modules/es-toolkit/compat/once.js +1 -0
  1123. package/dist/ink-runner/node_modules/es-toolkit/compat/orderBy.d.ts +1 -0
  1124. package/dist/ink-runner/node_modules/es-toolkit/compat/orderBy.js +1 -0
  1125. package/dist/ink-runner/node_modules/es-toolkit/compat/over.d.ts +1 -0
  1126. package/dist/ink-runner/node_modules/es-toolkit/compat/over.js +1 -0
  1127. package/dist/ink-runner/node_modules/es-toolkit/compat/overArgs.d.ts +1 -0
  1128. package/dist/ink-runner/node_modules/es-toolkit/compat/overArgs.js +1 -0
  1129. package/dist/ink-runner/node_modules/es-toolkit/compat/overEvery.d.ts +1 -0
  1130. package/dist/ink-runner/node_modules/es-toolkit/compat/overEvery.js +1 -0
  1131. package/dist/ink-runner/node_modules/es-toolkit/compat/overSome.d.ts +1 -0
  1132. package/dist/ink-runner/node_modules/es-toolkit/compat/overSome.js +1 -0
  1133. package/dist/ink-runner/node_modules/es-toolkit/compat/pad.d.ts +1 -0
  1134. package/dist/ink-runner/node_modules/es-toolkit/compat/pad.js +1 -0
  1135. package/dist/ink-runner/node_modules/es-toolkit/compat/padEnd.d.ts +1 -0
  1136. package/dist/ink-runner/node_modules/es-toolkit/compat/padEnd.js +1 -0
  1137. package/dist/ink-runner/node_modules/es-toolkit/compat/padStart.d.ts +1 -0
  1138. package/dist/ink-runner/node_modules/es-toolkit/compat/padStart.js +1 -0
  1139. package/dist/ink-runner/node_modules/es-toolkit/compat/parseInt.d.ts +1 -0
  1140. package/dist/ink-runner/node_modules/es-toolkit/compat/parseInt.js +1 -0
  1141. package/dist/ink-runner/node_modules/es-toolkit/compat/partial.d.ts +1 -0
  1142. package/dist/ink-runner/node_modules/es-toolkit/compat/partial.js +1 -0
  1143. package/dist/ink-runner/node_modules/es-toolkit/compat/partialRight.d.ts +1 -0
  1144. package/dist/ink-runner/node_modules/es-toolkit/compat/partialRight.js +1 -0
  1145. package/dist/ink-runner/node_modules/es-toolkit/compat/partition.d.ts +1 -0
  1146. package/dist/ink-runner/node_modules/es-toolkit/compat/partition.js +1 -0
  1147. package/dist/ink-runner/node_modules/es-toolkit/compat/pick.d.ts +1 -0
  1148. package/dist/ink-runner/node_modules/es-toolkit/compat/pick.js +1 -0
  1149. package/dist/ink-runner/node_modules/es-toolkit/compat/pickBy.d.ts +1 -0
  1150. package/dist/ink-runner/node_modules/es-toolkit/compat/pickBy.js +1 -0
  1151. package/dist/ink-runner/node_modules/es-toolkit/compat/property.d.ts +1 -0
  1152. package/dist/ink-runner/node_modules/es-toolkit/compat/property.js +1 -0
  1153. package/dist/ink-runner/node_modules/es-toolkit/compat/propertyOf.d.ts +1 -0
  1154. package/dist/ink-runner/node_modules/es-toolkit/compat/propertyOf.js +1 -0
  1155. package/dist/ink-runner/node_modules/es-toolkit/compat/pull.d.ts +1 -0
  1156. package/dist/ink-runner/node_modules/es-toolkit/compat/pull.js +1 -0
  1157. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAll.d.ts +1 -0
  1158. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAll.js +1 -0
  1159. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAllBy.d.ts +1 -0
  1160. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAllBy.js +1 -0
  1161. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAllWith.d.ts +1 -0
  1162. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAllWith.js +1 -0
  1163. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAt.d.ts +1 -0
  1164. package/dist/ink-runner/node_modules/es-toolkit/compat/pullAt.js +1 -0
  1165. package/dist/ink-runner/node_modules/es-toolkit/compat/random.d.ts +1 -0
  1166. package/dist/ink-runner/node_modules/es-toolkit/compat/random.js +1 -0
  1167. package/dist/ink-runner/node_modules/es-toolkit/compat/range.d.ts +1 -0
  1168. package/dist/ink-runner/node_modules/es-toolkit/compat/range.js +1 -0
  1169. package/dist/ink-runner/node_modules/es-toolkit/compat/rangeRight.d.ts +1 -0
  1170. package/dist/ink-runner/node_modules/es-toolkit/compat/rangeRight.js +1 -0
  1171. package/dist/ink-runner/node_modules/es-toolkit/compat/rearg.d.ts +1 -0
  1172. package/dist/ink-runner/node_modules/es-toolkit/compat/rearg.js +1 -0
  1173. package/dist/ink-runner/node_modules/es-toolkit/compat/reduce.d.ts +1 -0
  1174. package/dist/ink-runner/node_modules/es-toolkit/compat/reduce.js +1 -0
  1175. package/dist/ink-runner/node_modules/es-toolkit/compat/reduceRight.d.ts +1 -0
  1176. package/dist/ink-runner/node_modules/es-toolkit/compat/reduceRight.js +1 -0
  1177. package/dist/ink-runner/node_modules/es-toolkit/compat/reject.d.ts +1 -0
  1178. package/dist/ink-runner/node_modules/es-toolkit/compat/reject.js +1 -0
  1179. package/dist/ink-runner/node_modules/es-toolkit/compat/remove.d.ts +1 -0
  1180. package/dist/ink-runner/node_modules/es-toolkit/compat/remove.js +1 -0
  1181. package/dist/ink-runner/node_modules/es-toolkit/compat/repeat.d.ts +1 -0
  1182. package/dist/ink-runner/node_modules/es-toolkit/compat/repeat.js +1 -0
  1183. package/dist/ink-runner/node_modules/es-toolkit/compat/replace.d.ts +1 -0
  1184. package/dist/ink-runner/node_modules/es-toolkit/compat/replace.js +1 -0
  1185. package/dist/ink-runner/node_modules/es-toolkit/compat/rest.d.ts +1 -0
  1186. package/dist/ink-runner/node_modules/es-toolkit/compat/rest.js +1 -0
  1187. package/dist/ink-runner/node_modules/es-toolkit/compat/result.d.ts +1 -0
  1188. package/dist/ink-runner/node_modules/es-toolkit/compat/result.js +1 -0
  1189. package/dist/ink-runner/node_modules/es-toolkit/compat/reverse.d.ts +1 -0
  1190. package/dist/ink-runner/node_modules/es-toolkit/compat/reverse.js +1 -0
  1191. package/dist/ink-runner/node_modules/es-toolkit/compat/round.d.ts +1 -0
  1192. package/dist/ink-runner/node_modules/es-toolkit/compat/round.js +1 -0
  1193. package/dist/ink-runner/node_modules/es-toolkit/compat/sample.d.ts +1 -0
  1194. package/dist/ink-runner/node_modules/es-toolkit/compat/sample.js +1 -0
  1195. package/dist/ink-runner/node_modules/es-toolkit/compat/sampleSize.d.ts +1 -0
  1196. package/dist/ink-runner/node_modules/es-toolkit/compat/sampleSize.js +1 -0
  1197. package/dist/ink-runner/node_modules/es-toolkit/compat/set.d.ts +1 -0
  1198. package/dist/ink-runner/node_modules/es-toolkit/compat/set.js +1 -0
  1199. package/dist/ink-runner/node_modules/es-toolkit/compat/setWith.d.ts +1 -0
  1200. package/dist/ink-runner/node_modules/es-toolkit/compat/setWith.js +1 -0
  1201. package/dist/ink-runner/node_modules/es-toolkit/compat/shuffle.d.ts +1 -0
  1202. package/dist/ink-runner/node_modules/es-toolkit/compat/shuffle.js +1 -0
  1203. package/dist/ink-runner/node_modules/es-toolkit/compat/size.d.ts +1 -0
  1204. package/dist/ink-runner/node_modules/es-toolkit/compat/size.js +1 -0
  1205. package/dist/ink-runner/node_modules/es-toolkit/compat/slice.d.ts +1 -0
  1206. package/dist/ink-runner/node_modules/es-toolkit/compat/slice.js +1 -0
  1207. package/dist/ink-runner/node_modules/es-toolkit/compat/snakeCase.d.ts +1 -0
  1208. package/dist/ink-runner/node_modules/es-toolkit/compat/snakeCase.js +1 -0
  1209. package/dist/ink-runner/node_modules/es-toolkit/compat/some.d.ts +1 -0
  1210. package/dist/ink-runner/node_modules/es-toolkit/compat/some.js +1 -0
  1211. package/dist/ink-runner/node_modules/es-toolkit/compat/sortBy.d.ts +1 -0
  1212. package/dist/ink-runner/node_modules/es-toolkit/compat/sortBy.js +1 -0
  1213. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndex.d.ts +1 -0
  1214. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndex.js +1 -0
  1215. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndexBy.d.ts +1 -0
  1216. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndexBy.js +1 -0
  1217. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndexOf.d.ts +1 -0
  1218. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedIndexOf.js +1 -0
  1219. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndex.d.ts +1 -0
  1220. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndex.js +1 -0
  1221. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndexBy.d.ts +1 -0
  1222. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndexBy.js +1 -0
  1223. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndexOf.d.ts +1 -0
  1224. package/dist/ink-runner/node_modules/es-toolkit/compat/sortedLastIndexOf.js +1 -0
  1225. package/dist/ink-runner/node_modules/es-toolkit/compat/split.d.ts +1 -0
  1226. package/dist/ink-runner/node_modules/es-toolkit/compat/split.js +1 -0
  1227. package/dist/ink-runner/node_modules/es-toolkit/compat/spread.d.ts +1 -0
  1228. package/dist/ink-runner/node_modules/es-toolkit/compat/spread.js +1 -0
  1229. package/dist/ink-runner/node_modules/es-toolkit/compat/startCase.d.ts +1 -0
  1230. package/dist/ink-runner/node_modules/es-toolkit/compat/startCase.js +1 -0
  1231. package/dist/ink-runner/node_modules/es-toolkit/compat/startsWith.d.ts +1 -0
  1232. package/dist/ink-runner/node_modules/es-toolkit/compat/startsWith.js +1 -0
  1233. package/dist/ink-runner/node_modules/es-toolkit/compat/stubArray.d.ts +1 -0
  1234. package/dist/ink-runner/node_modules/es-toolkit/compat/stubArray.js +1 -0
  1235. package/dist/ink-runner/node_modules/es-toolkit/compat/stubFalse.d.ts +1 -0
  1236. package/dist/ink-runner/node_modules/es-toolkit/compat/stubFalse.js +1 -0
  1237. package/dist/ink-runner/node_modules/es-toolkit/compat/stubObject.d.ts +1 -0
  1238. package/dist/ink-runner/node_modules/es-toolkit/compat/stubObject.js +1 -0
  1239. package/dist/ink-runner/node_modules/es-toolkit/compat/stubString.d.ts +1 -0
  1240. package/dist/ink-runner/node_modules/es-toolkit/compat/stubString.js +1 -0
  1241. package/dist/ink-runner/node_modules/es-toolkit/compat/stubTrue.d.ts +1 -0
  1242. package/dist/ink-runner/node_modules/es-toolkit/compat/stubTrue.js +1 -0
  1243. package/dist/ink-runner/node_modules/es-toolkit/compat/subtract.d.ts +1 -0
  1244. package/dist/ink-runner/node_modules/es-toolkit/compat/subtract.js +1 -0
  1245. package/dist/ink-runner/node_modules/es-toolkit/compat/sum.d.ts +1 -0
  1246. package/dist/ink-runner/node_modules/es-toolkit/compat/sum.js +1 -0
  1247. package/dist/ink-runner/node_modules/es-toolkit/compat/sumBy.d.ts +1 -0
  1248. package/dist/ink-runner/node_modules/es-toolkit/compat/sumBy.js +1 -0
  1249. package/dist/ink-runner/node_modules/es-toolkit/compat/tail.d.ts +1 -0
  1250. package/dist/ink-runner/node_modules/es-toolkit/compat/tail.js +1 -0
  1251. package/dist/ink-runner/node_modules/es-toolkit/compat/take.d.ts +1 -0
  1252. package/dist/ink-runner/node_modules/es-toolkit/compat/take.js +1 -0
  1253. package/dist/ink-runner/node_modules/es-toolkit/compat/takeRight.d.ts +1 -0
  1254. package/dist/ink-runner/node_modules/es-toolkit/compat/takeRight.js +1 -0
  1255. package/dist/ink-runner/node_modules/es-toolkit/compat/takeRightWhile.d.ts +1 -0
  1256. package/dist/ink-runner/node_modules/es-toolkit/compat/takeRightWhile.js +1 -0
  1257. package/dist/ink-runner/node_modules/es-toolkit/compat/takeWhile.d.ts +1 -0
  1258. package/dist/ink-runner/node_modules/es-toolkit/compat/takeWhile.js +1 -0
  1259. package/dist/ink-runner/node_modules/es-toolkit/compat/template.d.ts +1 -0
  1260. package/dist/ink-runner/node_modules/es-toolkit/compat/template.js +1 -0
  1261. package/dist/ink-runner/node_modules/es-toolkit/compat/templateSettings.d.ts +1 -0
  1262. package/dist/ink-runner/node_modules/es-toolkit/compat/templateSettings.js +1 -0
  1263. package/dist/ink-runner/node_modules/es-toolkit/compat/throttle.d.ts +1 -0
  1264. package/dist/ink-runner/node_modules/es-toolkit/compat/throttle.js +1 -0
  1265. package/dist/ink-runner/node_modules/es-toolkit/compat/times.d.ts +1 -0
  1266. package/dist/ink-runner/node_modules/es-toolkit/compat/times.js +1 -0
  1267. package/dist/ink-runner/node_modules/es-toolkit/compat/toArray.d.ts +1 -0
  1268. package/dist/ink-runner/node_modules/es-toolkit/compat/toArray.js +1 -0
  1269. package/dist/ink-runner/node_modules/es-toolkit/compat/toDefaulted.d.ts +1 -0
  1270. package/dist/ink-runner/node_modules/es-toolkit/compat/toDefaulted.js +1 -0
  1271. package/dist/ink-runner/node_modules/es-toolkit/compat/toFinite.d.ts +1 -0
  1272. package/dist/ink-runner/node_modules/es-toolkit/compat/toFinite.js +1 -0
  1273. package/dist/ink-runner/node_modules/es-toolkit/compat/toInteger.d.ts +1 -0
  1274. package/dist/ink-runner/node_modules/es-toolkit/compat/toInteger.js +1 -0
  1275. package/dist/ink-runner/node_modules/es-toolkit/compat/toLength.d.ts +1 -0
  1276. package/dist/ink-runner/node_modules/es-toolkit/compat/toLength.js +1 -0
  1277. package/dist/ink-runner/node_modules/es-toolkit/compat/toLower.d.ts +1 -0
  1278. package/dist/ink-runner/node_modules/es-toolkit/compat/toLower.js +1 -0
  1279. package/dist/ink-runner/node_modules/es-toolkit/compat/toNumber.d.ts +1 -0
  1280. package/dist/ink-runner/node_modules/es-toolkit/compat/toNumber.js +1 -0
  1281. package/dist/ink-runner/node_modules/es-toolkit/compat/toPairs.d.ts +1 -0
  1282. package/dist/ink-runner/node_modules/es-toolkit/compat/toPairs.js +1 -0
  1283. package/dist/ink-runner/node_modules/es-toolkit/compat/toPairsIn.d.ts +1 -0
  1284. package/dist/ink-runner/node_modules/es-toolkit/compat/toPairsIn.js +1 -0
  1285. package/dist/ink-runner/node_modules/es-toolkit/compat/toPath.d.ts +1 -0
  1286. package/dist/ink-runner/node_modules/es-toolkit/compat/toPath.js +1 -0
  1287. package/dist/ink-runner/node_modules/es-toolkit/compat/toPlainObject.d.ts +1 -0
  1288. package/dist/ink-runner/node_modules/es-toolkit/compat/toPlainObject.js +1 -0
  1289. package/dist/ink-runner/node_modules/es-toolkit/compat/toSafeInteger.d.ts +1 -0
  1290. package/dist/ink-runner/node_modules/es-toolkit/compat/toSafeInteger.js +1 -0
  1291. package/dist/ink-runner/node_modules/es-toolkit/compat/toString.d.ts +1 -0
  1292. package/dist/ink-runner/node_modules/es-toolkit/compat/toString.js +1 -0
  1293. package/dist/ink-runner/node_modules/es-toolkit/compat/toUpper.d.ts +1 -0
  1294. package/dist/ink-runner/node_modules/es-toolkit/compat/toUpper.js +1 -0
  1295. package/dist/ink-runner/node_modules/es-toolkit/compat/transform.d.ts +1 -0
  1296. package/dist/ink-runner/node_modules/es-toolkit/compat/transform.js +1 -0
  1297. package/dist/ink-runner/node_modules/es-toolkit/compat/trim.d.ts +1 -0
  1298. package/dist/ink-runner/node_modules/es-toolkit/compat/trim.js +1 -0
  1299. package/dist/ink-runner/node_modules/es-toolkit/compat/trimEnd.d.ts +1 -0
  1300. package/dist/ink-runner/node_modules/es-toolkit/compat/trimEnd.js +1 -0
  1301. package/dist/ink-runner/node_modules/es-toolkit/compat/trimStart.d.ts +1 -0
  1302. package/dist/ink-runner/node_modules/es-toolkit/compat/trimStart.js +1 -0
  1303. package/dist/ink-runner/node_modules/es-toolkit/compat/truncate.d.ts +1 -0
  1304. package/dist/ink-runner/node_modules/es-toolkit/compat/truncate.js +1 -0
  1305. package/dist/ink-runner/node_modules/es-toolkit/compat/unary.d.ts +1 -0
  1306. package/dist/ink-runner/node_modules/es-toolkit/compat/unary.js +1 -0
  1307. package/dist/ink-runner/node_modules/es-toolkit/compat/unescape.d.ts +1 -0
  1308. package/dist/ink-runner/node_modules/es-toolkit/compat/unescape.js +1 -0
  1309. package/dist/ink-runner/node_modules/es-toolkit/compat/union.d.ts +1 -0
  1310. package/dist/ink-runner/node_modules/es-toolkit/compat/union.js +1 -0
  1311. package/dist/ink-runner/node_modules/es-toolkit/compat/unionBy.d.ts +1 -0
  1312. package/dist/ink-runner/node_modules/es-toolkit/compat/unionBy.js +1 -0
  1313. package/dist/ink-runner/node_modules/es-toolkit/compat/unionWith.d.ts +1 -0
  1314. package/dist/ink-runner/node_modules/es-toolkit/compat/unionWith.js +1 -0
  1315. package/dist/ink-runner/node_modules/es-toolkit/compat/uniq.d.ts +1 -0
  1316. package/dist/ink-runner/node_modules/es-toolkit/compat/uniq.js +1 -0
  1317. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqBy.d.ts +1 -0
  1318. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqBy.js +1 -0
  1319. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqWith.d.ts +1 -0
  1320. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqWith.js +1 -0
  1321. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqueId.d.ts +1 -0
  1322. package/dist/ink-runner/node_modules/es-toolkit/compat/uniqueId.js +1 -0
  1323. package/dist/ink-runner/node_modules/es-toolkit/compat/unset.d.ts +1 -0
  1324. package/dist/ink-runner/node_modules/es-toolkit/compat/unset.js +1 -0
  1325. package/dist/ink-runner/node_modules/es-toolkit/compat/unzip.d.ts +1 -0
  1326. package/dist/ink-runner/node_modules/es-toolkit/compat/unzip.js +1 -0
  1327. package/dist/ink-runner/node_modules/es-toolkit/compat/unzipWith.d.ts +1 -0
  1328. package/dist/ink-runner/node_modules/es-toolkit/compat/unzipWith.js +1 -0
  1329. package/dist/ink-runner/node_modules/es-toolkit/compat/update.d.ts +1 -0
  1330. package/dist/ink-runner/node_modules/es-toolkit/compat/update.js +1 -0
  1331. package/dist/ink-runner/node_modules/es-toolkit/compat/updateWith.d.ts +1 -0
  1332. package/dist/ink-runner/node_modules/es-toolkit/compat/updateWith.js +1 -0
  1333. package/dist/ink-runner/node_modules/es-toolkit/compat/upperCase.d.ts +1 -0
  1334. package/dist/ink-runner/node_modules/es-toolkit/compat/upperCase.js +1 -0
  1335. package/dist/ink-runner/node_modules/es-toolkit/compat/upperFirst.d.ts +1 -0
  1336. package/dist/ink-runner/node_modules/es-toolkit/compat/upperFirst.js +1 -0
  1337. package/dist/ink-runner/node_modules/es-toolkit/compat/values.d.ts +1 -0
  1338. package/dist/ink-runner/node_modules/es-toolkit/compat/values.js +1 -0
  1339. package/dist/ink-runner/node_modules/es-toolkit/compat/valuesIn.d.ts +1 -0
  1340. package/dist/ink-runner/node_modules/es-toolkit/compat/valuesIn.js +1 -0
  1341. package/dist/ink-runner/node_modules/es-toolkit/compat/without.d.ts +1 -0
  1342. package/dist/ink-runner/node_modules/es-toolkit/compat/without.js +1 -0
  1343. package/dist/ink-runner/node_modules/es-toolkit/compat/words.d.ts +1 -0
  1344. package/dist/ink-runner/node_modules/es-toolkit/compat/words.js +1 -0
  1345. package/dist/ink-runner/node_modules/es-toolkit/compat/wrap.d.ts +1 -0
  1346. package/dist/ink-runner/node_modules/es-toolkit/compat/wrap.js +1 -0
  1347. package/dist/ink-runner/node_modules/es-toolkit/compat/xor.d.ts +1 -0
  1348. package/dist/ink-runner/node_modules/es-toolkit/compat/xor.js +1 -0
  1349. package/dist/ink-runner/node_modules/es-toolkit/compat/xorBy.d.ts +1 -0
  1350. package/dist/ink-runner/node_modules/es-toolkit/compat/xorBy.js +1 -0
  1351. package/dist/ink-runner/node_modules/es-toolkit/compat/xorWith.d.ts +1 -0
  1352. package/dist/ink-runner/node_modules/es-toolkit/compat/xorWith.js +1 -0
  1353. package/dist/ink-runner/node_modules/es-toolkit/compat/zip.d.ts +1 -0
  1354. package/dist/ink-runner/node_modules/es-toolkit/compat/zip.js +1 -0
  1355. package/dist/ink-runner/node_modules/es-toolkit/compat/zipObject.d.ts +1 -0
  1356. package/dist/ink-runner/node_modules/es-toolkit/compat/zipObject.js +1 -0
  1357. package/dist/ink-runner/node_modules/es-toolkit/compat/zipObjectDeep.d.ts +1 -0
  1358. package/dist/ink-runner/node_modules/es-toolkit/compat/zipObjectDeep.js +1 -0
  1359. package/dist/ink-runner/node_modules/es-toolkit/compat/zipWith.d.ts +1 -0
  1360. package/dist/ink-runner/node_modules/es-toolkit/compat/zipWith.js +1 -0
  1361. package/dist/ink-runner/node_modules/es-toolkit/compat.d.ts +1 -0
  1362. package/dist/ink-runner/node_modules/es-toolkit/compat.js +1 -0
  1363. package/dist/ink-runner/node_modules/es-toolkit/dist/_internal/compareValues.js +15 -0
  1364. package/dist/ink-runner/node_modules/es-toolkit/dist/_internal/compareValues.mjs +11 -0
  1365. package/dist/ink-runner/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.js +9 -0
  1366. package/dist/ink-runner/node_modules/es-toolkit/dist/_internal/isUnsafeProperty.mjs +5 -0
  1367. package/dist/ink-runner/node_modules/es-toolkit/dist/array/at.d.mts +18 -0
  1368. package/dist/ink-runner/node_modules/es-toolkit/dist/array/at.d.ts +18 -0
  1369. package/dist/ink-runner/node_modules/es-toolkit/dist/array/at.js +19 -0
  1370. package/dist/ink-runner/node_modules/es-toolkit/dist/array/at.mjs +15 -0
  1371. package/dist/ink-runner/node_modules/es-toolkit/dist/array/chunk.d.mts +26 -0
  1372. package/dist/ink-runner/node_modules/es-toolkit/dist/array/chunk.d.ts +26 -0
  1373. package/dist/ink-runner/node_modules/es-toolkit/dist/array/chunk.js +19 -0
  1374. package/dist/ink-runner/node_modules/es-toolkit/dist/array/chunk.mjs +15 -0
  1375. package/dist/ink-runner/node_modules/es-toolkit/dist/array/compact.d.mts +15 -0
  1376. package/dist/ink-runner/node_modules/es-toolkit/dist/array/compact.d.ts +15 -0
  1377. package/dist/ink-runner/node_modules/es-toolkit/dist/array/compact.js +16 -0
  1378. package/dist/ink-runner/node_modules/es-toolkit/dist/array/compact.mjs +12 -0
  1379. package/dist/ink-runner/node_modules/es-toolkit/dist/array/countBy.d.mts +30 -0
  1380. package/dist/ink-runner/node_modules/es-toolkit/dist/array/countBy.d.ts +30 -0
  1381. package/dist/ink-runner/node_modules/es-toolkit/dist/array/countBy.js +15 -0
  1382. package/dist/ink-runner/node_modules/es-toolkit/dist/array/countBy.mjs +11 -0
  1383. package/dist/ink-runner/node_modules/es-toolkit/dist/array/difference.d.mts +25 -0
  1384. package/dist/ink-runner/node_modules/es-toolkit/dist/array/difference.d.ts +25 -0
  1385. package/dist/ink-runner/node_modules/es-toolkit/dist/array/difference.js +10 -0
  1386. package/dist/ink-runner/node_modules/es-toolkit/dist/array/difference.mjs +6 -0
  1387. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceBy.d.mts +35 -0
  1388. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceBy.d.ts +35 -0
  1389. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceBy.js +12 -0
  1390. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceBy.mjs +8 -0
  1391. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceWith.d.mts +31 -0
  1392. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceWith.d.ts +31 -0
  1393. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceWith.js +13 -0
  1394. package/dist/ink-runner/node_modules/es-toolkit/dist/array/differenceWith.mjs +9 -0
  1395. package/dist/ink-runner/node_modules/es-toolkit/dist/array/drop.d.mts +19 -0
  1396. package/dist/ink-runner/node_modules/es-toolkit/dist/array/drop.d.ts +19 -0
  1397. package/dist/ink-runner/node_modules/es-toolkit/dist/array/drop.js +10 -0
  1398. package/dist/ink-runner/node_modules/es-toolkit/dist/array/drop.mjs +6 -0
  1399. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRight.d.mts +19 -0
  1400. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRight.d.ts +19 -0
  1401. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRight.js +13 -0
  1402. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRight.mjs +9 -0
  1403. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRightWhile.d.mts +21 -0
  1404. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRightWhile.d.ts +21 -0
  1405. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRightWhile.js +14 -0
  1406. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropRightWhile.mjs +10 -0
  1407. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropWhile.d.mts +21 -0
  1408. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropWhile.d.ts +21 -0
  1409. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropWhile.js +13 -0
  1410. package/dist/ink-runner/node_modules/es-toolkit/dist/array/dropWhile.mjs +9 -0
  1411. package/dist/ink-runner/node_modules/es-toolkit/dist/array/fill.d.mts +88 -0
  1412. package/dist/ink-runner/node_modules/es-toolkit/dist/array/fill.d.ts +88 -0
  1413. package/dist/ink-runner/node_modules/es-toolkit/dist/array/fill.js +15 -0
  1414. package/dist/ink-runner/node_modules/es-toolkit/dist/array/fill.mjs +11 -0
  1415. package/dist/ink-runner/node_modules/es-toolkit/dist/array/filterAsync.d.mts +35 -0
  1416. package/dist/ink-runner/node_modules/es-toolkit/dist/array/filterAsync.d.ts +35 -0
  1417. package/dist/ink-runner/node_modules/es-toolkit/dist/array/filterAsync.js +15 -0
  1418. package/dist/ink-runner/node_modules/es-toolkit/dist/array/filterAsync.mjs +11 -0
  1419. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMap.d.mts +23 -0
  1420. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMap.d.ts +23 -0
  1421. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMap.js +11 -0
  1422. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMap.mjs +7 -0
  1423. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapAsync.d.mts +37 -0
  1424. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapAsync.d.ts +37 -0
  1425. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapAsync.js +16 -0
  1426. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapAsync.mjs +12 -0
  1427. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapDeep.d.mts +18 -0
  1428. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapDeep.d.ts +18 -0
  1429. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapDeep.js +11 -0
  1430. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatMapDeep.mjs +7 -0
  1431. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatten.d.mts +19 -0
  1432. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatten.d.ts +19 -0
  1433. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatten.js +23 -0
  1434. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flatten.mjs +19 -0
  1435. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flattenDeep.d.mts +25 -0
  1436. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flattenDeep.d.ts +25 -0
  1437. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flattenDeep.js +11 -0
  1438. package/dist/ink-runner/node_modules/es-toolkit/dist/array/flattenDeep.mjs +7 -0
  1439. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachAsync.d.mts +35 -0
  1440. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachAsync.d.ts +35 -0
  1441. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachAsync.js +14 -0
  1442. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachAsync.mjs +10 -0
  1443. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachRight.d.mts +48 -0
  1444. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachRight.d.ts +48 -0
  1445. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachRight.js +12 -0
  1446. package/dist/ink-runner/node_modules/es-toolkit/dist/array/forEachRight.mjs +8 -0
  1447. package/dist/ink-runner/node_modules/es-toolkit/dist/array/groupBy.d.mts +35 -0
  1448. package/dist/ink-runner/node_modules/es-toolkit/dist/array/groupBy.d.ts +35 -0
  1449. package/dist/ink-runner/node_modules/es-toolkit/dist/array/groupBy.js +18 -0
  1450. package/dist/ink-runner/node_modules/es-toolkit/dist/array/groupBy.mjs +14 -0
  1451. package/dist/ink-runner/node_modules/es-toolkit/dist/array/head.d.mts +34 -0
  1452. package/dist/ink-runner/node_modules/es-toolkit/dist/array/head.d.ts +34 -0
  1453. package/dist/ink-runner/node_modules/es-toolkit/dist/array/head.js +9 -0
  1454. package/dist/ink-runner/node_modules/es-toolkit/dist/array/head.mjs +5 -0
  1455. package/dist/ink-runner/node_modules/es-toolkit/dist/array/index.d.mts +66 -0
  1456. package/dist/ink-runner/node_modules/es-toolkit/dist/array/index.d.ts +66 -0
  1457. package/dist/ink-runner/node_modules/es-toolkit/dist/array/index.js +139 -0
  1458. package/dist/ink-runner/node_modules/es-toolkit/dist/array/index.mjs +66 -0
  1459. package/dist/ink-runner/node_modules/es-toolkit/dist/array/initial.d.mts +54 -0
  1460. package/dist/ink-runner/node_modules/es-toolkit/dist/array/initial.d.ts +54 -0
  1461. package/dist/ink-runner/node_modules/es-toolkit/dist/array/initial.js +9 -0
  1462. package/dist/ink-runner/node_modules/es-toolkit/dist/array/initial.mjs +5 -0
  1463. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersection.d.mts +21 -0
  1464. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersection.d.ts +21 -0
  1465. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersection.js +12 -0
  1466. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersection.mjs +8 -0
  1467. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionBy.d.mts +36 -0
  1468. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionBy.d.ts +36 -0
  1469. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionBy.js +19 -0
  1470. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionBy.mjs +15 -0
  1471. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionWith.d.mts +37 -0
  1472. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionWith.d.ts +37 -0
  1473. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionWith.js +13 -0
  1474. package/dist/ink-runner/node_modules/es-toolkit/dist/array/intersectionWith.mjs +9 -0
  1475. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubset.d.mts +26 -0
  1476. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubset.d.ts +26 -0
  1477. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubset.js +11 -0
  1478. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubset.mjs +7 -0
  1479. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubsetWith.d.mts +33 -0
  1480. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubsetWith.d.ts +33 -0
  1481. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubsetWith.js +11 -0
  1482. package/dist/ink-runner/node_modules/es-toolkit/dist/array/isSubsetWith.mjs +7 -0
  1483. package/dist/ink-runner/node_modules/es-toolkit/dist/array/keyBy.d.mts +30 -0
  1484. package/dist/ink-runner/node_modules/es-toolkit/dist/array/keyBy.d.ts +30 -0
  1485. package/dist/ink-runner/node_modules/es-toolkit/dist/array/keyBy.js +15 -0
  1486. package/dist/ink-runner/node_modules/es-toolkit/dist/array/keyBy.mjs +11 -0
  1487. package/dist/ink-runner/node_modules/es-toolkit/dist/array/last.d.mts +48 -0
  1488. package/dist/ink-runner/node_modules/es-toolkit/dist/array/last.d.ts +48 -0
  1489. package/dist/ink-runner/node_modules/es-toolkit/dist/array/last.js +9 -0
  1490. package/dist/ink-runner/node_modules/es-toolkit/dist/array/last.mjs +5 -0
  1491. package/dist/ink-runner/node_modules/es-toolkit/dist/array/limitAsync.d.mts +34 -0
  1492. package/dist/ink-runner/node_modules/es-toolkit/dist/array/limitAsync.d.ts +34 -0
  1493. package/dist/ink-runner/node_modules/es-toolkit/dist/array/limitAsync.js +20 -0
  1494. package/dist/ink-runner/node_modules/es-toolkit/dist/array/limitAsync.mjs +16 -0
  1495. package/dist/ink-runner/node_modules/es-toolkit/dist/array/mapAsync.d.mts +34 -0
  1496. package/dist/ink-runner/node_modules/es-toolkit/dist/array/mapAsync.d.ts +34 -0
  1497. package/dist/ink-runner/node_modules/es-toolkit/dist/array/mapAsync.js +14 -0
  1498. package/dist/ink-runner/node_modules/es-toolkit/dist/array/mapAsync.mjs +10 -0
  1499. package/dist/ink-runner/node_modules/es-toolkit/dist/array/maxBy.d.mts +45 -0
  1500. package/dist/ink-runner/node_modules/es-toolkit/dist/array/maxBy.d.ts +45 -0
  1501. package/dist/ink-runner/node_modules/es-toolkit/dist/array/maxBy.js +22 -0
  1502. package/dist/ink-runner/node_modules/es-toolkit/dist/array/maxBy.mjs +18 -0
  1503. package/dist/ink-runner/node_modules/es-toolkit/dist/array/minBy.d.mts +45 -0
  1504. package/dist/ink-runner/node_modules/es-toolkit/dist/array/minBy.d.ts +45 -0
  1505. package/dist/ink-runner/node_modules/es-toolkit/dist/array/minBy.js +22 -0
  1506. package/dist/ink-runner/node_modules/es-toolkit/dist/array/minBy.mjs +18 -0
  1507. package/dist/ink-runner/node_modules/es-toolkit/dist/array/orderBy.d.mts +37 -0
  1508. package/dist/ink-runner/node_modules/es-toolkit/dist/array/orderBy.d.ts +37 -0
  1509. package/dist/ink-runner/node_modules/es-toolkit/dist/array/orderBy.js +25 -0
  1510. package/dist/ink-runner/node_modules/es-toolkit/dist/array/orderBy.mjs +21 -0
  1511. package/dist/ink-runner/node_modules/es-toolkit/dist/array/partition.d.mts +49 -0
  1512. package/dist/ink-runner/node_modules/es-toolkit/dist/array/partition.d.ts +49 -0
  1513. package/dist/ink-runner/node_modules/es-toolkit/dist/array/partition.js +20 -0
  1514. package/dist/ink-runner/node_modules/es-toolkit/dist/array/partition.mjs +16 -0
  1515. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pull.d.mts +19 -0
  1516. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pull.d.ts +19 -0
  1517. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pull.js +22 -0
  1518. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pull.mjs +18 -0
  1519. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pullAt.d.mts +19 -0
  1520. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pullAt.d.ts +19 -0
  1521. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pullAt.js +16 -0
  1522. package/dist/ink-runner/node_modules/es-toolkit/dist/array/pullAt.mjs +12 -0
  1523. package/dist/ink-runner/node_modules/es-toolkit/dist/array/reduceAsync.d.mts +71 -0
  1524. package/dist/ink-runner/node_modules/es-toolkit/dist/array/reduceAsync.d.ts +71 -0
  1525. package/dist/ink-runner/node_modules/es-toolkit/dist/array/reduceAsync.js +18 -0
  1526. package/dist/ink-runner/node_modules/es-toolkit/dist/array/reduceAsync.mjs +14 -0
  1527. package/dist/ink-runner/node_modules/es-toolkit/dist/array/remove.d.mts +19 -0
  1528. package/dist/ink-runner/node_modules/es-toolkit/dist/array/remove.d.ts +19 -0
  1529. package/dist/ink-runner/node_modules/es-toolkit/dist/array/remove.js +24 -0
  1530. package/dist/ink-runner/node_modules/es-toolkit/dist/array/remove.mjs +20 -0
  1531. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sample.d.mts +17 -0
  1532. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sample.d.ts +17 -0
  1533. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sample.js +10 -0
  1534. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sample.mjs +6 -0
  1535. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sampleSize.d.mts +21 -0
  1536. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sampleSize.d.ts +21 -0
  1537. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sampleSize.js +24 -0
  1538. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sampleSize.mjs +20 -0
  1539. package/dist/ink-runner/node_modules/es-toolkit/dist/array/shuffle.d.mts +17 -0
  1540. package/dist/ink-runner/node_modules/es-toolkit/dist/array/shuffle.d.ts +17 -0
  1541. package/dist/ink-runner/node_modules/es-toolkit/dist/array/shuffle.js +14 -0
  1542. package/dist/ink-runner/node_modules/es-toolkit/dist/array/shuffle.mjs +10 -0
  1543. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sortBy.d.mts +35 -0
  1544. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sortBy.d.ts +35 -0
  1545. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sortBy.js +11 -0
  1546. package/dist/ink-runner/node_modules/es-toolkit/dist/array/sortBy.mjs +7 -0
  1547. package/dist/ink-runner/node_modules/es-toolkit/dist/array/tail.d.mts +67 -0
  1548. package/dist/ink-runner/node_modules/es-toolkit/dist/array/tail.d.ts +67 -0
  1549. package/dist/ink-runner/node_modules/es-toolkit/dist/array/tail.js +9 -0
  1550. package/dist/ink-runner/node_modules/es-toolkit/dist/array/tail.mjs +5 -0
  1551. package/dist/ink-runner/node_modules/es-toolkit/dist/array/take.d.mts +31 -0
  1552. package/dist/ink-runner/node_modules/es-toolkit/dist/array/take.d.ts +31 -0
  1553. package/dist/ink-runner/node_modules/es-toolkit/dist/array/take.js +12 -0
  1554. package/dist/ink-runner/node_modules/es-toolkit/dist/array/take.mjs +8 -0
  1555. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRight.d.mts +24 -0
  1556. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRight.d.ts +24 -0
  1557. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRight.js +15 -0
  1558. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRight.mjs +11 -0
  1559. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRightWhile.d.mts +20 -0
  1560. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRightWhile.d.ts +20 -0
  1561. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRightWhile.js +14 -0
  1562. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeRightWhile.mjs +10 -0
  1563. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeWhile.d.mts +21 -0
  1564. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeWhile.d.ts +21 -0
  1565. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeWhile.js +17 -0
  1566. package/dist/ink-runner/node_modules/es-toolkit/dist/array/takeWhile.mjs +13 -0
  1567. package/dist/ink-runner/node_modules/es-toolkit/dist/array/toFilled.d.mts +92 -0
  1568. package/dist/ink-runner/node_modules/es-toolkit/dist/array/toFilled.d.ts +92 -0
  1569. package/dist/ink-runner/node_modules/es-toolkit/dist/array/toFilled.js +16 -0
  1570. package/dist/ink-runner/node_modules/es-toolkit/dist/array/toFilled.mjs +12 -0
  1571. package/dist/ink-runner/node_modules/es-toolkit/dist/array/union.d.mts +20 -0
  1572. package/dist/ink-runner/node_modules/es-toolkit/dist/array/union.d.ts +20 -0
  1573. package/dist/ink-runner/node_modules/es-toolkit/dist/array/union.js +11 -0
  1574. package/dist/ink-runner/node_modules/es-toolkit/dist/array/union.mjs +7 -0
  1575. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionBy.d.mts +25 -0
  1576. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionBy.d.ts +25 -0
  1577. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionBy.js +11 -0
  1578. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionBy.mjs +7 -0
  1579. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionWith.d.mts +23 -0
  1580. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionWith.d.ts +23 -0
  1581. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionWith.js +11 -0
  1582. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unionWith.mjs +7 -0
  1583. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniq.d.mts +18 -0
  1584. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniq.d.ts +18 -0
  1585. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniq.js +9 -0
  1586. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniq.mjs +5 -0
  1587. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqBy.d.mts +31 -0
  1588. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqBy.d.ts +31 -0
  1589. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqBy.js +17 -0
  1590. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqBy.mjs +13 -0
  1591. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqWith.d.mts +18 -0
  1592. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqWith.d.ts +18 -0
  1593. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqWith.js +17 -0
  1594. package/dist/ink-runner/node_modules/es-toolkit/dist/array/uniqWith.mjs +13 -0
  1595. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzip.d.mts +19 -0
  1596. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzip.d.ts +19 -0
  1597. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzip.js +22 -0
  1598. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzip.mjs +18 -0
  1599. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzipWith.d.mts +17 -0
  1600. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzipWith.d.ts +17 -0
  1601. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzipWith.js +18 -0
  1602. package/dist/ink-runner/node_modules/es-toolkit/dist/array/unzipWith.mjs +14 -0
  1603. package/dist/ink-runner/node_modules/es-toolkit/dist/array/windowed.d.mts +50 -0
  1604. package/dist/ink-runner/node_modules/es-toolkit/dist/array/windowed.d.ts +50 -0
  1605. package/dist/ink-runner/node_modules/es-toolkit/dist/array/windowed.js +20 -0
  1606. package/dist/ink-runner/node_modules/es-toolkit/dist/array/windowed.mjs +16 -0
  1607. package/dist/ink-runner/node_modules/es-toolkit/dist/array/without.d.mts +23 -0
  1608. package/dist/ink-runner/node_modules/es-toolkit/dist/array/without.d.ts +23 -0
  1609. package/dist/ink-runner/node_modules/es-toolkit/dist/array/without.js +11 -0
  1610. package/dist/ink-runner/node_modules/es-toolkit/dist/array/without.mjs +7 -0
  1611. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xor.d.mts +20 -0
  1612. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xor.d.ts +20 -0
  1613. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xor.js +13 -0
  1614. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xor.mjs +9 -0
  1615. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorBy.d.mts +22 -0
  1616. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorBy.d.ts +22 -0
  1617. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorBy.js +15 -0
  1618. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorBy.mjs +11 -0
  1619. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorWith.d.mts +21 -0
  1620. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorWith.d.ts +21 -0
  1621. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorWith.js +15 -0
  1622. package/dist/ink-runner/node_modules/es-toolkit/dist/array/xorWith.mjs +11 -0
  1623. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zip.d.mts +106 -0
  1624. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zip.d.ts +106 -0
  1625. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zip.js +24 -0
  1626. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zip.mjs +20 -0
  1627. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipObject.d.mts +33 -0
  1628. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipObject.d.ts +33 -0
  1629. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipObject.js +13 -0
  1630. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipObject.mjs +9 -0
  1631. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipWith.d.mts +72 -0
  1632. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipWith.d.ts +72 -0
  1633. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipWith.js +17 -0
  1634. package/dist/ink-runner/node_modules/es-toolkit/dist/array/zipWith.mjs +13 -0
  1635. package/dist/ink-runner/node_modules/es-toolkit/dist/browser.global.js +1 -0
  1636. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.mts +3 -0
  1637. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ArrayIterator.d.ts +3 -0
  1638. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.mts +5 -0
  1639. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.ts +5 -0
  1640. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.mts +6 -0
  1641. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/EmptyObjectOf.d.ts +6 -0
  1642. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.mts +3 -0
  1643. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/Equals.d.d.ts +3 -0
  1644. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.mts +12 -0
  1645. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/GetFieldType.d.ts +12 -0
  1646. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.mts +3 -0
  1647. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsEqualCustomizer.d.ts +3 -0
  1648. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.mts +3 -0
  1649. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsMatchWithCustomizer.d.ts +3 -0
  1650. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.mts +5 -0
  1651. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IsWritable.d.d.ts +5 -0
  1652. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.mts +5 -0
  1653. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/IterateeShorthand.d.ts +5 -0
  1654. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.mts +5 -0
  1655. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIteratee.d.ts +5 -0
  1656. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.mts +5 -0
  1657. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIterateeCustom.d.ts +5 -0
  1658. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.mts +3 -0
  1659. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIterator.d.ts +3 -0
  1660. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.mts +3 -0
  1661. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListIteratorTypeGuard.d.ts +3 -0
  1662. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.mts +6 -0
  1663. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ListOfRecursiveArraysOrValues.d.ts +6 -0
  1664. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.js +7 -0
  1665. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MAX_ARRAY_LENGTH.mjs +3 -0
  1666. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.js +7 -0
  1667. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MAX_SAFE_INTEGER.mjs +3 -0
  1668. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/Many.d.mts +3 -0
  1669. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/Many.d.ts +3 -0
  1670. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.mts +3 -0
  1671. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MemoListIterator.d.ts +3 -0
  1672. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.mts +3 -0
  1673. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MemoObjectIterator.d.ts +3 -0
  1674. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.mts +6 -0
  1675. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/MutableList.d.d.ts +6 -0
  1676. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.mts +7 -0
  1677. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ObjectIteratee.d.ts +7 -0
  1678. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.mts +4 -0
  1679. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ObjectIterator.d.ts +4 -0
  1680. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.mts +5 -0
  1681. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/PartialShallow.d.ts +5 -0
  1682. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.mts +5 -0
  1683. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/PropertyPath.d.ts +5 -0
  1684. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.mts +4 -0
  1685. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/RecursiveArray.d.ts +4 -0
  1686. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.mts +6 -0
  1687. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/RejectReadonly.d.d.ts +6 -0
  1688. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.mts +3 -0
  1689. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/StringIterator.d.ts +3 -0
  1690. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.mts +3 -0
  1691. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/TupleIterator.d.ts +3 -0
  1692. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.mts +5 -0
  1693. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIteratee.d.ts +5 -0
  1694. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.mts +5 -0
  1695. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIterateeCustom.d.ts +5 -0
  1696. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.mts +3 -0
  1697. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueIteratorTypeGuard.d.ts +3 -0
  1698. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.mts +5 -0
  1699. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIteratee.d.ts +5 -0
  1700. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.mts +3 -0
  1701. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/ValueKeyIterateeTypeGuard.d.ts +3 -0
  1702. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/assignValue.js +14 -0
  1703. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/assignValue.mjs +10 -0
  1704. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/compareValues.js +37 -0
  1705. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/compareValues.mjs +33 -0
  1706. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/copyArray.js +14 -0
  1707. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/copyArray.mjs +12 -0
  1708. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.js +23 -0
  1709. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/decimalAdjust.mjs +19 -0
  1710. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.js +21 -0
  1711. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/flattenArrayLike.mjs +17 -0
  1712. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getSymbols.js +9 -0
  1713. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getSymbols.mjs +5 -0
  1714. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.js +16 -0
  1715. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getSymbolsIn.mjs +12 -0
  1716. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getTag.js +12 -0
  1717. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/getTag.mjs +8 -0
  1718. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.js +17 -0
  1719. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isDeepKey.mjs +13 -0
  1720. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isIndex.js +20 -0
  1721. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isIndex.mjs +16 -0
  1722. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.js +21 -0
  1723. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isIterateeCall.mjs +17 -0
  1724. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isKey.js +20 -0
  1725. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isKey.mjs +16 -0
  1726. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isPrototype.js +11 -0
  1727. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/isPrototype.mjs +7 -0
  1728. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.js +15 -0
  1729. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/mapToEntries.mjs +11 -0
  1730. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.js +14 -0
  1731. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/normalizeForCase.mjs +10 -0
  1732. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/setToEntries.js +15 -0
  1733. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/setToEntries.mjs +11 -0
  1734. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/tags.js +57 -0
  1735. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/tags.mjs +28 -0
  1736. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/toArray.js +9 -0
  1737. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/toArray.mjs +5 -0
  1738. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/toKey.js +15 -0
  1739. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/_internal/toKey.mjs +11 -0
  1740. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/castArray.d.mts +29 -0
  1741. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/castArray.d.ts +29 -0
  1742. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/castArray.js +12 -0
  1743. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/castArray.mjs +8 -0
  1744. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/chunk.d.mts +25 -0
  1745. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/chunk.d.ts +25 -0
  1746. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/chunk.js +17 -0
  1747. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/chunk.mjs +13 -0
  1748. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/compact.d.mts +15 -0
  1749. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/compact.d.ts +15 -0
  1750. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/compact.js +15 -0
  1751. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/compact.mjs +11 -0
  1752. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/concat.d.mts +30 -0
  1753. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/concat.d.ts +30 -0
  1754. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/concat.js +11 -0
  1755. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/concat.mjs +7 -0
  1756. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/countBy.d.mts +19 -0
  1757. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/countBy.d.ts +19 -0
  1758. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/countBy.js +23 -0
  1759. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/countBy.mjs +19 -0
  1760. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/difference.d.mts +28 -0
  1761. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/difference.d.ts +28 -0
  1762. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/difference.js +24 -0
  1763. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/difference.mjs +20 -0
  1764. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceBy.d.mts +108 -0
  1765. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceBy.d.ts +108 -0
  1766. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceBy.js +24 -0
  1767. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceBy.mjs +20 -0
  1768. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceWith.d.mts +91 -0
  1769. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceWith.d.ts +91 -0
  1770. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceWith.js +23 -0
  1771. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/differenceWith.mjs +19 -0
  1772. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/drop.d.mts +20 -0
  1773. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/drop.d.ts +20 -0
  1774. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/drop.js +18 -0
  1775. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/drop.mjs +14 -0
  1776. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRight.d.mts +20 -0
  1777. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRight.d.ts +20 -0
  1778. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRight.js +18 -0
  1779. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRight.mjs +14 -0
  1780. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.mts +37 -0
  1781. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRightWhile.d.ts +37 -0
  1782. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRightWhile.js +41 -0
  1783. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropRightWhile.mjs +37 -0
  1784. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropWhile.d.mts +28 -0
  1785. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropWhile.d.ts +28 -0
  1786. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropWhile.js +42 -0
  1787. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/dropWhile.mjs +38 -0
  1788. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/every.d.mts +64 -0
  1789. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/every.d.ts +64 -0
  1790. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/every.js +64 -0
  1791. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/every.mjs +60 -0
  1792. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/fill.d.mts +53 -0
  1793. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/fill.d.ts +53 -0
  1794. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/fill.js +27 -0
  1795. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/fill.mjs +23 -0
  1796. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/filter.d.mts +74 -0
  1797. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/filter.d.ts +74 -0
  1798. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/filter.js +38 -0
  1799. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/filter.mjs +34 -0
  1800. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/find.d.mts +65 -0
  1801. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/find.d.ts +65 -0
  1802. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/find.js +30 -0
  1803. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/find.mjs +26 -0
  1804. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findIndex.d.mts +21 -0
  1805. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findIndex.d.ts +21 -0
  1806. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findIndex.js +43 -0
  1807. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findIndex.mjs +39 -0
  1808. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLast.d.mts +82 -0
  1809. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLast.d.ts +82 -0
  1810. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLast.js +36 -0
  1811. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLast.mjs +32 -0
  1812. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.mts +33 -0
  1813. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLastIndex.d.ts +33 -0
  1814. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLastIndex.js +44 -0
  1815. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/findLastIndex.mjs +40 -0
  1816. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMap.d.mts +93 -0
  1817. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMap.d.ts +93 -0
  1818. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMap.js +17 -0
  1819. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMap.mjs +13 -0
  1820. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.mts +82 -0
  1821. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDeep.d.ts +82 -0
  1822. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDeep.js +11 -0
  1823. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDeep.mjs +7 -0
  1824. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.mts +86 -0
  1825. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDepth.d.ts +86 -0
  1826. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDepth.js +19 -0
  1827. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatMapDepth.mjs +15 -0
  1828. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatten.d.mts +15 -0
  1829. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatten.d.ts +15 -0
  1830. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatten.js +36 -0
  1831. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flatten.mjs +32 -0
  1832. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.mts +16 -0
  1833. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDeep.d.ts +16 -0
  1834. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDeep.js +11 -0
  1835. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDeep.mjs +7 -0
  1836. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.mts +22 -0
  1837. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDepth.d.ts +22 -0
  1838. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDepth.js +11 -0
  1839. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/flattenDepth.mjs +7 -0
  1840. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEach.d.mts +110 -0
  1841. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEach.d.ts +110 -0
  1842. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEach.js +25 -0
  1843. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEach.mjs +21 -0
  1844. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEachRight.d.mts +110 -0
  1845. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEachRight.d.ts +110 -0
  1846. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEachRight.js +25 -0
  1847. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/forEachRight.mjs +21 -0
  1848. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/groupBy.d.mts +35 -0
  1849. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/groupBy.d.ts +35 -0
  1850. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/groupBy.js +19 -0
  1851. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/groupBy.mjs +15 -0
  1852. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/head.d.mts +32 -0
  1853. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/head.d.ts +32 -0
  1854. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/head.js +16 -0
  1855. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/head.mjs +12 -0
  1856. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/includes.d.mts +22 -0
  1857. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/includes.d.ts +22 -0
  1858. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/includes.js +44 -0
  1859. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/includes.mjs +40 -0
  1860. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/indexOf.d.mts +20 -0
  1861. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/indexOf.d.ts +20 -0
  1862. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/indexOf.js +26 -0
  1863. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/indexOf.mjs +22 -0
  1864. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/initial.d.mts +16 -0
  1865. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/initial.d.ts +16 -0
  1866. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/initial.js +15 -0
  1867. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/initial.mjs +11 -0
  1868. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersection.d.mts +20 -0
  1869. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersection.d.ts +20 -0
  1870. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersection.js +27 -0
  1871. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersection.mjs +23 -0
  1872. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.mts +73 -0
  1873. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionBy.d.ts +73 -0
  1874. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionBy.js +40 -0
  1875. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionBy.mjs +36 -0
  1876. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.mts +68 -0
  1877. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionWith.d.ts +68 -0
  1878. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionWith.js +46 -0
  1879. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/intersectionWith.mjs +42 -0
  1880. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/invokeMap.d.mts +32 -0
  1881. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/invokeMap.d.ts +32 -0
  1882. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/invokeMap.js +40 -0
  1883. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/invokeMap.mjs +36 -0
  1884. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/join.d.mts +15 -0
  1885. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/join.d.ts +15 -0
  1886. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/join.js +14 -0
  1887. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/join.mjs +10 -0
  1888. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/keyBy.d.mts +39 -0
  1889. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/keyBy.d.ts +39 -0
  1890. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/keyBy.js +23 -0
  1891. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/keyBy.mjs +19 -0
  1892. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/last.d.mts +25 -0
  1893. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/last.d.ts +25 -0
  1894. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/last.js +16 -0
  1895. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/last.mjs +12 -0
  1896. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.mts +22 -0
  1897. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/lastIndexOf.d.ts +22 -0
  1898. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/lastIndexOf.js +26 -0
  1899. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/lastIndexOf.mjs +22 -0
  1900. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/map.d.mts +112 -0
  1901. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/map.d.ts +112 -0
  1902. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/map.js +25 -0
  1903. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/map.mjs +21 -0
  1904. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/nth.d.mts +14 -0
  1905. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/nth.d.ts +14 -0
  1906. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/nth.js +19 -0
  1907. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/nth.mjs +15 -0
  1908. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/orderBy.d.mts +84 -0
  1909. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/orderBy.d.ts +84 -0
  1910. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/orderBy.js +82 -0
  1911. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/orderBy.mjs +78 -0
  1912. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/partition.d.mts +50 -0
  1913. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/partition.d.ts +50 -0
  1914. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/partition.js +29 -0
  1915. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/partition.mjs +25 -0
  1916. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pull.d.mts +38 -0
  1917. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pull.d.ts +38 -0
  1918. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pull.js +11 -0
  1919. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pull.mjs +7 -0
  1920. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAll.d.mts +41 -0
  1921. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAll.d.ts +41 -0
  1922. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAll.js +11 -0
  1923. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAll.mjs +7 -0
  1924. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.mts +86 -0
  1925. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllBy.d.ts +86 -0
  1926. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllBy.js +26 -0
  1927. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllBy.mjs +22 -0
  1928. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.mts +89 -0
  1929. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllWith.d.ts +89 -0
  1930. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllWith.js +37 -0
  1931. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAllWith.mjs +33 -0
  1932. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAt.d.mts +50 -0
  1933. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAt.d.ts +50 -0
  1934. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAt.js +38 -0
  1935. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/pullAt.mjs +34 -0
  1936. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduce.d.mts +80 -0
  1937. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduce.d.ts +80 -0
  1938. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduce.js +37 -0
  1939. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduce.mjs +33 -0
  1940. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduceRight.d.mts +118 -0
  1941. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduceRight.d.ts +118 -0
  1942. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduceRight.js +43 -0
  1943. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reduceRight.mjs +39 -0
  1944. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reject.d.mts +50 -0
  1945. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reject.d.ts +50 -0
  1946. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reject.js +14 -0
  1947. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reject.mjs +10 -0
  1948. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/remove.d.mts +21 -0
  1949. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/remove.d.ts +21 -0
  1950. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/remove.js +13 -0
  1951. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/remove.mjs +9 -0
  1952. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reverse.d.mts +18 -0
  1953. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reverse.d.ts +18 -0
  1954. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reverse.js +12 -0
  1955. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/reverse.mjs +8 -0
  1956. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sample.d.mts +38 -0
  1957. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sample.d.ts +38 -0
  1958. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sample.js +19 -0
  1959. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sample.mjs +15 -0
  1960. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sampleSize.d.mts +28 -0
  1961. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sampleSize.d.ts +28 -0
  1962. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sampleSize.js +22 -0
  1963. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sampleSize.mjs +18 -0
  1964. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/shuffle.d.mts +22 -0
  1965. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/shuffle.d.ts +22 -0
  1966. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/shuffle.js +28 -0
  1967. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/shuffle.mjs +24 -0
  1968. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/size.d.mts +39 -0
  1969. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/size.d.ts +39 -0
  1970. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/size.js +17 -0
  1971. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/size.mjs +13 -0
  1972. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/slice.d.mts +18 -0
  1973. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/slice.d.ts +18 -0
  1974. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/slice.js +43 -0
  1975. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/slice.mjs +39 -0
  1976. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/some.d.mts +31 -0
  1977. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/some.d.ts +31 -0
  1978. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/some.js +86 -0
  1979. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/some.mjs +82 -0
  1980. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortBy.d.mts +73 -0
  1981. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortBy.d.ts +73 -0
  1982. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortBy.js +20 -0
  1983. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortBy.mjs +16 -0
  1984. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.mts +30 -0
  1985. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndex.d.ts +30 -0
  1986. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndex.js +35 -0
  1987. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndex.mjs +31 -0
  1988. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.mts +25 -0
  1989. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.d.ts +25 -0
  1990. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.js +63 -0
  1991. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexBy.mjs +59 -0
  1992. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.mts +34 -0
  1993. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.d.ts +34 -0
  1994. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.js +19 -0
  1995. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedIndexOf.mjs +15 -0
  1996. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.mts +16 -0
  1997. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.d.ts +16 -0
  1998. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.js +35 -0
  1999. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndex.mjs +31 -0
  2000. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.mts +20 -0
  2001. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.d.ts +20 -0
  2002. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.js +11 -0
  2003. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexBy.mjs +7 -0
  2004. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.mts +35 -0
  2005. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.d.ts +35 -0
  2006. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.js +19 -0
  2007. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/sortedLastIndexOf.mjs +15 -0
  2008. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/tail.d.mts +26 -0
  2009. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/tail.d.ts +26 -0
  2010. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/tail.js +16 -0
  2011. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/tail.mjs +12 -0
  2012. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/take.d.mts +27 -0
  2013. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/take.d.ts +27 -0
  2014. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/take.js +18 -0
  2015. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/take.mjs +14 -0
  2016. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRight.d.mts +27 -0
  2017. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRight.d.ts +27 -0
  2018. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRight.js +18 -0
  2019. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRight.mjs +14 -0
  2020. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.mts +36 -0
  2021. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRightWhile.d.ts +36 -0
  2022. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRightWhile.js +20 -0
  2023. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeRightWhile.mjs +16 -0
  2024. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeWhile.d.mts +36 -0
  2025. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeWhile.d.ts +36 -0
  2026. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeWhile.js +20 -0
  2027. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/takeWhile.mjs +16 -0
  2028. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/union.d.mts +30 -0
  2029. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/union.d.ts +30 -0
  2030. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/union.js +15 -0
  2031. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/union.mjs +11 -0
  2032. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionBy.d.mts +93 -0
  2033. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionBy.d.ts +93 -0
  2034. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionBy.js +21 -0
  2035. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionBy.mjs +17 -0
  2036. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionWith.d.mts +52 -0
  2037. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionWith.d.ts +52 -0
  2038. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionWith.js +20 -0
  2039. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unionWith.mjs +16 -0
  2040. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniq.d.mts +18 -0
  2041. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniq.d.ts +18 -0
  2042. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniq.js +15 -0
  2043. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniq.mjs +11 -0
  2044. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqBy.d.mts +17 -0
  2045. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqBy.d.ts +17 -0
  2046. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqBy.js +17 -0
  2047. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqBy.mjs +13 -0
  2048. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqWith.d.mts +27 -0
  2049. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqWith.d.ts +27 -0
  2050. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqWith.js +16 -0
  2051. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/uniqWith.mjs +12 -0
  2052. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzip.d.mts +16 -0
  2053. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzip.d.ts +16 -0
  2054. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzip.js +18 -0
  2055. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzip.mjs +14 -0
  2056. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzipWith.d.mts +30 -0
  2057. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzipWith.d.ts +30 -0
  2058. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzipWith.js +25 -0
  2059. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/unzipWith.mjs +21 -0
  2060. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/without.d.mts +23 -0
  2061. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/without.d.ts +23 -0
  2062. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/without.js +15 -0
  2063. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/without.mjs +11 -0
  2064. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xor.d.mts +23 -0
  2065. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xor.d.ts +23 -0
  2066. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xor.js +34 -0
  2067. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xor.mjs +30 -0
  2068. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorBy.d.mts +56 -0
  2069. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorBy.d.ts +56 -0
  2070. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorBy.js +27 -0
  2071. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorBy.mjs +23 -0
  2072. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorWith.d.mts +52 -0
  2073. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorWith.d.ts +52 -0
  2074. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorWith.js +25 -0
  2075. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/xorWith.mjs +21 -0
  2076. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zip.d.mts +186 -0
  2077. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zip.d.ts +186 -0
  2078. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zip.js +15 -0
  2079. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zip.mjs +11 -0
  2080. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObject.d.mts +29 -0
  2081. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObject.d.ts +29 -0
  2082. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObject.js +15 -0
  2083. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObject.mjs +11 -0
  2084. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.mts +38 -0
  2085. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.d.ts +38 -0
  2086. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.js +27 -0
  2087. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipObjectDeep.mjs +23 -0
  2088. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipWith.d.mts +92 -0
  2089. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipWith.d.ts +92 -0
  2090. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipWith.js +24 -0
  2091. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/array/zipWith.mjs +20 -0
  2092. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/compat.d.mts +291 -0
  2093. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/compat.d.ts +291 -0
  2094. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/compat.js +595 -0
  2095. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/compat.mjs +291 -0
  2096. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/after.d.mts +24 -0
  2097. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/after.d.ts +24 -0
  2098. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/after.js +19 -0
  2099. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/after.mjs +15 -0
  2100. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/ary.d.mts +24 -0
  2101. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/ary.d.ts +24 -0
  2102. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/ary.js +17 -0
  2103. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/ary.mjs +13 -0
  2104. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/attempt.d.mts +33 -0
  2105. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/attempt.d.ts +33 -0
  2106. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/attempt.js +14 -0
  2107. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/attempt.mjs +10 -0
  2108. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/before.d.mts +26 -0
  2109. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/before.d.ts +26 -0
  2110. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/before.js +24 -0
  2111. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/before.mjs +20 -0
  2112. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bind.d.mts +32 -0
  2113. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bind.d.ts +32 -0
  2114. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bind.js +31 -0
  2115. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bind.mjs +27 -0
  2116. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bindKey.d.mts +45 -0
  2117. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bindKey.d.ts +45 -0
  2118. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bindKey.js +31 -0
  2119. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/bindKey.mjs +27 -0
  2120. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curry.d.mts +154 -0
  2121. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curry.d.ts +154 -0
  2122. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curry.js +61 -0
  2123. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curry.mjs +57 -0
  2124. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curryRight.d.mts +85 -0
  2125. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curryRight.d.ts +85 -0
  2126. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curryRight.js +68 -0
  2127. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/curryRight.mjs +64 -0
  2128. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/debounce.d.mts +144 -0
  2129. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/debounce.d.ts +144 -0
  2130. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/debounce.js +50 -0
  2131. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/debounce.mjs +46 -0
  2132. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/defer.d.mts +14 -0
  2133. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/defer.d.ts +14 -0
  2134. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/defer.js +12 -0
  2135. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/defer.mjs +8 -0
  2136. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/delay.d.mts +29 -0
  2137. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/delay.d.ts +29 -0
  2138. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/delay.js +14 -0
  2139. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/delay.mjs +10 -0
  2140. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flip.d.mts +18 -0
  2141. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flip.d.ts +18 -0
  2142. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flip.js +11 -0
  2143. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flip.mjs +7 -0
  2144. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flow.d.mts +119 -0
  2145. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flow.d.ts +119 -0
  2146. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flow.js +16 -0
  2147. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flow.mjs +12 -0
  2148. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flowRight.d.mts +117 -0
  2149. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flowRight.d.ts +117 -0
  2150. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flowRight.js +16 -0
  2151. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/flowRight.mjs +12 -0
  2152. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/identity.d.mts +42 -0
  2153. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/identity.d.ts +42 -0
  2154. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/identity.js +9 -0
  2155. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/identity.mjs +5 -0
  2156. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/memoize.d.mts +119 -0
  2157. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/memoize.d.ts +119 -0
  2158. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/memoize.js +25 -0
  2159. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/memoize.mjs +21 -0
  2160. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/negate.d.mts +18 -0
  2161. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/negate.d.ts +18 -0
  2162. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/negate.js +14 -0
  2163. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/negate.mjs +10 -0
  2164. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/noop.d.mts +12 -0
  2165. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/noop.d.ts +12 -0
  2166. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/noop.js +7 -0
  2167. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/noop.mjs +3 -0
  2168. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/nthArg.d.mts +18 -0
  2169. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/nthArg.d.ts +18 -0
  2170. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/nthArg.js +13 -0
  2171. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/nthArg.mjs +9 -0
  2172. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/once.d.mts +3 -0
  2173. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/once.d.ts +3 -0
  2174. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/once.js +11 -0
  2175. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/once.mjs +7 -0
  2176. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/overArgs.d.mts +50 -0
  2177. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/overArgs.d.ts +50 -0
  2178. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/overArgs.js +24 -0
  2179. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/overArgs.mjs +20 -0
  2180. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partial.d.mts +204 -0
  2181. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partial.d.ts +204 -0
  2182. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partial.js +12 -0
  2183. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partial.mjs +8 -0
  2184. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partialRight.d.mts +622 -0
  2185. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partialRight.d.ts +622 -0
  2186. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partialRight.js +12 -0
  2187. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/partialRight.mjs +8 -0
  2188. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rearg.d.mts +19 -0
  2189. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rearg.d.ts +19 -0
  2190. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rearg.js +18 -0
  2191. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rearg.mjs +14 -0
  2192. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rest.d.mts +32 -0
  2193. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rest.d.ts +32 -0
  2194. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rest.js +15 -0
  2195. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/rest.mjs +11 -0
  2196. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/spread.d.mts +47 -0
  2197. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/spread.d.ts +47 -0
  2198. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/spread.js +20 -0
  2199. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/spread.mjs +16 -0
  2200. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/throttle.d.mts +81 -0
  2201. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/throttle.d.ts +81 -0
  2202. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/throttle.js +16 -0
  2203. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/throttle.mjs +12 -0
  2204. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/unary.d.mts +17 -0
  2205. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/unary.d.ts +17 -0
  2206. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/unary.js +11 -0
  2207. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/unary.mjs +7 -0
  2208. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/wrap.d.mts +27 -0
  2209. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/wrap.d.ts +27 -0
  2210. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/wrap.js +15 -0
  2211. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/function/wrap.mjs +11 -0
  2212. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/index.d.mts +292 -0
  2213. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/index.d.ts +292 -0
  2214. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/index.js +597 -0
  2215. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/index.mjs +292 -0
  2216. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/add.d.mts +18 -0
  2217. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/add.d.ts +18 -0
  2218. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/add.js +26 -0
  2219. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/add.mjs +22 -0
  2220. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/ceil.d.mts +15 -0
  2221. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/ceil.d.ts +15 -0
  2222. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/ceil.js +11 -0
  2223. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/ceil.mjs +7 -0
  2224. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/clamp.d.mts +26 -0
  2225. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/clamp.d.ts +26 -0
  2226. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/clamp.js +17 -0
  2227. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/clamp.mjs +13 -0
  2228. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/divide.d.mts +18 -0
  2229. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/divide.d.ts +18 -0
  2230. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/divide.js +26 -0
  2231. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/divide.mjs +22 -0
  2232. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/floor.d.mts +15 -0
  2233. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/floor.d.ts +15 -0
  2234. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/floor.js +11 -0
  2235. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/floor.mjs +7 -0
  2236. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/inRange.d.mts +17 -0
  2237. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/inRange.d.ts +17 -0
  2238. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/inRange.js +32 -0
  2239. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/inRange.mjs +28 -0
  2240. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/max.d.mts +10 -0
  2241. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/max.d.ts +10 -0
  2242. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/max.js +22 -0
  2243. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/max.mjs +18 -0
  2244. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/maxBy.d.mts +33 -0
  2245. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/maxBy.d.ts +33 -0
  2246. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/maxBy.js +16 -0
  2247. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/maxBy.mjs +12 -0
  2248. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/mean.d.mts +16 -0
  2249. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/mean.d.ts +16 -0
  2250. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/mean.js +12 -0
  2251. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/mean.mjs +8 -0
  2252. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/meanBy.d.mts +27 -0
  2253. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/meanBy.d.ts +27 -0
  2254. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/meanBy.js +16 -0
  2255. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/meanBy.mjs +12 -0
  2256. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/min.d.mts +10 -0
  2257. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/min.d.ts +10 -0
  2258. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/min.js +22 -0
  2259. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/min.mjs +18 -0
  2260. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/minBy.d.mts +33 -0
  2261. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/minBy.d.ts +33 -0
  2262. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/minBy.js +16 -0
  2263. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/minBy.mjs +12 -0
  2264. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/multiply.d.mts +18 -0
  2265. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/multiply.d.ts +18 -0
  2266. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/multiply.js +26 -0
  2267. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/multiply.mjs +22 -0
  2268. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/parseInt.d.mts +20 -0
  2269. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/parseInt.d.ts +20 -0
  2270. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/parseInt.js +12 -0
  2271. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/parseInt.mjs +8 -0
  2272. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/random.d.mts +46 -0
  2273. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/random.d.ts +46 -0
  2274. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/random.js +74 -0
  2275. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/random.mjs +70 -0
  2276. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/range.d.mts +33 -0
  2277. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/range.d.ts +33 -0
  2278. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/range.js +30 -0
  2279. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/range.mjs +26 -0
  2280. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/rangeRight.d.mts +31 -0
  2281. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/rangeRight.d.ts +31 -0
  2282. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/rangeRight.js +30 -0
  2283. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/rangeRight.mjs +26 -0
  2284. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/round.d.mts +15 -0
  2285. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/round.d.ts +15 -0
  2286. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/round.js +11 -0
  2287. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/round.mjs +7 -0
  2288. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/subtract.d.mts +17 -0
  2289. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/subtract.d.ts +17 -0
  2290. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/subtract.js +26 -0
  2291. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/subtract.mjs +22 -0
  2292. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sum.d.mts +19 -0
  2293. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sum.d.ts +19 -0
  2294. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sum.js +11 -0
  2295. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sum.mjs +7 -0
  2296. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sumBy.d.mts +21 -0
  2297. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sumBy.d.ts +21 -0
  2298. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sumBy.js +29 -0
  2299. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/math/sumBy.mjs +25 -0
  2300. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assign.d.mts +110 -0
  2301. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assign.d.ts +110 -0
  2302. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assign.js +24 -0
  2303. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assign.mjs +20 -0
  2304. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignIn.d.mts +111 -0
  2305. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignIn.d.ts +111 -0
  2306. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignIn.js +24 -0
  2307. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignIn.mjs +20 -0
  2308. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignInWith.d.mts +126 -0
  2309. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignInWith.d.ts +126 -0
  2310. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignInWith.js +34 -0
  2311. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignInWith.mjs +30 -0
  2312. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignWith.d.mts +126 -0
  2313. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignWith.d.ts +126 -0
  2314. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignWith.js +34 -0
  2315. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/assignWith.mjs +30 -0
  2316. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/at.d.mts +33 -0
  2317. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/at.d.ts +33 -0
  2318. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/at.js +31 -0
  2319. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/at.mjs +27 -0
  2320. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/clone.d.mts +31 -0
  2321. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/clone.d.ts +31 -0
  2322. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/clone.js +164 -0
  2323. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/clone.mjs +160 -0
  2324. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.mts +49 -0
  2325. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeep.d.ts +49 -0
  2326. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeep.js +11 -0
  2327. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeep.mjs +7 -0
  2328. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.mts +34 -0
  2329. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.d.ts +34 -0
  2330. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.js +39 -0
  2331. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneDeepWith.mjs +35 -0
  2332. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneWith.d.mts +54 -0
  2333. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneWith.d.ts +54 -0
  2334. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneWith.js +18 -0
  2335. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/cloneWith.mjs +14 -0
  2336. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/create.d.mts +16 -0
  2337. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/create.d.ts +16 -0
  2338. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/create.js +22 -0
  2339. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/create.mjs +18 -0
  2340. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaults.d.mts +100 -0
  2341. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaults.d.ts +100 -0
  2342. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaults.js +35 -0
  2343. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaults.mjs +31 -0
  2344. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.mts +23 -0
  2345. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaultsDeep.d.ts +23 -0
  2346. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaultsDeep.js +66 -0
  2347. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/defaultsDeep.mjs +62 -0
  2348. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findKey.d.mts +17 -0
  2349. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findKey.d.ts +17 -0
  2350. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findKey.js +18 -0
  2351. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findKey.mjs +14 -0
  2352. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findLastKey.d.mts +17 -0
  2353. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findLastKey.d.ts +17 -0
  2354. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findLastKey.js +18 -0
  2355. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/findLastKey.mjs +14 -0
  2356. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forIn.d.mts +58 -0
  2357. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forIn.d.ts +58 -0
  2358. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forIn.js +20 -0
  2359. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forIn.mjs +16 -0
  2360. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forInRight.d.mts +58 -0
  2361. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forInRight.d.ts +58 -0
  2362. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forInRight.js +25 -0
  2363. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forInRight.mjs +21 -0
  2364. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwn.d.mts +54 -0
  2365. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwn.d.ts +54 -0
  2366. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwn.js +23 -0
  2367. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwn.mjs +19 -0
  2368. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.mts +54 -0
  2369. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwnRight.d.ts +54 -0
  2370. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwnRight.js +23 -0
  2371. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/forOwnRight.mjs +19 -0
  2372. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/fromPairs.d.mts +28 -0
  2373. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/fromPairs.d.ts +28 -0
  2374. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/fromPairs.js +19 -0
  2375. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/fromPairs.mjs +15 -0
  2376. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functions.d.mts +20 -0
  2377. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functions.d.ts +20 -0
  2378. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functions.js +14 -0
  2379. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functions.mjs +10 -0
  2380. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functionsIn.d.mts +20 -0
  2381. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functionsIn.d.ts +20 -0
  2382. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functionsIn.js +20 -0
  2383. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/functionsIn.mjs +16 -0
  2384. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/get.d.mts +327 -0
  2385. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/get.d.ts +327 -0
  2386. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/get.js +82 -0
  2387. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/get.mjs +78 -0
  2388. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/has.d.mts +52 -0
  2389. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/has.d.ts +52 -0
  2390. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/has.js +38 -0
  2391. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/has.mjs +34 -0
  2392. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/hasIn.d.mts +43 -0
  2393. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/hasIn.d.ts +43 -0
  2394. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/hasIn.js +41 -0
  2395. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/hasIn.mjs +37 -0
  2396. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invert.d.mts +13 -0
  2397. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invert.d.ts +13 -0
  2398. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invert.js +11 -0
  2399. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invert.mjs +7 -0
  2400. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invertBy.d.mts +34 -0
  2401. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invertBy.d.ts +34 -0
  2402. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invertBy.js +33 -0
  2403. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/invertBy.mjs +29 -0
  2404. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keys.d.mts +22 -0
  2405. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keys.d.ts +22 -0
  2406. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keys.js +40 -0
  2407. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keys.mjs +36 -0
  2408. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keysIn.d.mts +26 -0
  2409. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keysIn.d.ts +26 -0
  2410. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keysIn.js +61 -0
  2411. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/keysIn.mjs +57 -0
  2412. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapKeys.d.mts +31 -0
  2413. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapKeys.d.ts +31 -0
  2414. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapKeys.js +16 -0
  2415. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapKeys.mjs +12 -0
  2416. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapValues.d.mts +130 -0
  2417. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapValues.d.ts +130 -0
  2418. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapValues.js +16 -0
  2419. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mapValues.mjs +12 -0
  2420. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/merge.d.mts +84 -0
  2421. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/merge.d.ts +84 -0
  2422. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/merge.js +12 -0
  2423. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/merge.mjs +8 -0
  2424. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mergeWith.d.mts +125 -0
  2425. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mergeWith.d.ts +125 -0
  2426. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mergeWith.js +109 -0
  2427. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/mergeWith.mjs +105 -0
  2428. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omit.d.mts +45 -0
  2429. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omit.d.ts +45 -0
  2430. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omit.js +73 -0
  2431. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omit.mjs +69 -0
  2432. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omitBy.d.mts +43 -0
  2433. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omitBy.d.ts +43 -0
  2434. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omitBy.js +32 -0
  2435. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/omitBy.mjs +28 -0
  2436. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pick.d.mts +34 -0
  2437. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pick.d.ts +34 -0
  2438. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pick.js +53 -0
  2439. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pick.mjs +49 -0
  2440. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pickBy.d.mts +80 -0
  2441. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pickBy.d.ts +80 -0
  2442. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pickBy.js +30 -0
  2443. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/pickBy.mjs +26 -0
  2444. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/property.d.mts +5 -0
  2445. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/property.d.ts +5 -0
  2446. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/property.js +13 -0
  2447. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/property.mjs +9 -0
  2448. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/propertyOf.d.mts +5 -0
  2449. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/propertyOf.d.ts +5 -0
  2450. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/propertyOf.js +13 -0
  2451. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/propertyOf.mjs +9 -0
  2452. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/result.d.mts +37 -0
  2453. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/result.d.ts +37 -0
  2454. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/result.js +28 -0
  2455. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/result.mjs +24 -0
  2456. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/set.d.mts +60 -0
  2457. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/set.d.ts +60 -0
  2458. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/set.js +11 -0
  2459. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/set.mjs +7 -0
  2460. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/setWith.d.mts +51 -0
  2461. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/setWith.d.ts +51 -0
  2462. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/setWith.js +18 -0
  2463. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/setWith.mjs +14 -0
  2464. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.mts +122 -0
  2465. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toDefaulted.d.ts +122 -0
  2466. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toDefaulted.js +13 -0
  2467. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toDefaulted.mjs +9 -0
  2468. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairs.d.mts +25 -0
  2469. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairs.d.ts +25 -0
  2470. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairs.js +29 -0
  2471. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairs.mjs +25 -0
  2472. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.mts +25 -0
  2473. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairsIn.d.ts +25 -0
  2474. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairsIn.js +29 -0
  2475. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/toPairsIn.mjs +25 -0
  2476. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/transform.d.mts +74 -0
  2477. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/transform.d.ts +74 -0
  2478. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/transform.js +34 -0
  2479. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/transform.mjs +30 -0
  2480. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/unset.d.mts +20 -0
  2481. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/unset.d.ts +20 -0
  2482. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/unset.js +82 -0
  2483. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/unset.mjs +78 -0
  2484. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/update.d.mts +14 -0
  2485. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/update.d.ts +14 -0
  2486. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/update.js +11 -0
  2487. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/update.mjs +7 -0
  2488. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/updateWith.d.mts +39 -0
  2489. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/updateWith.d.ts +39 -0
  2490. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/updateWith.js +57 -0
  2491. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/updateWith.mjs +53 -0
  2492. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/values.d.mts +37 -0
  2493. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/values.d.ts +37 -0
  2494. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/values.js +12 -0
  2495. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/values.mjs +8 -0
  2496. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/valuesIn.d.mts +26 -0
  2497. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/valuesIn.d.ts +26 -0
  2498. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/valuesIn.js +17 -0
  2499. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/object/valuesIn.mjs +13 -0
  2500. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conforms.d.mts +24 -0
  2501. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conforms.d.ts +24 -0
  2502. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conforms.js +15 -0
  2503. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conforms.mjs +11 -0
  2504. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.mts +32 -0
  2505. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conformsTo.d.ts +32 -0
  2506. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conformsTo.js +27 -0
  2507. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/conformsTo.mjs +23 -0
  2508. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.mts +23 -0
  2509. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArguments.d.ts +23 -0
  2510. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArguments.js +11 -0
  2511. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArguments.mjs +7 -0
  2512. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArray.d.mts +45 -0
  2513. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArray.d.ts +45 -0
  2514. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArray.js +9 -0
  2515. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArray.mjs +5 -0
  2516. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.mts +20 -0
  2517. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.d.ts +20 -0
  2518. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.js +11 -0
  2519. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayBuffer.mjs +7 -0
  2520. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.mts +27 -0
  2521. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.d.ts +27 -0
  2522. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.js +11 -0
  2523. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLike.mjs +7 -0
  2524. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.mts +9 -0
  2525. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.d.ts +9 -0
  2526. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.js +12 -0
  2527. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isArrayLikeObject.mjs +8 -0
  2528. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.mts +25 -0
  2529. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBoolean.d.ts +25 -0
  2530. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBoolean.js +9 -0
  2531. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBoolean.mjs +5 -0
  2532. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.mts +21 -0
  2533. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBuffer.d.ts +21 -0
  2534. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBuffer.js +11 -0
  2535. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isBuffer.mjs +7 -0
  2536. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isDate.d.mts +16 -0
  2537. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isDate.d.ts +16 -0
  2538. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isDate.js +11 -0
  2539. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isDate.mjs +7 -0
  2540. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isElement.d.mts +13 -0
  2541. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isElement.d.ts +13 -0
  2542. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isElement.js +12 -0
  2543. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isElement.mjs +8 -0
  2544. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.mts +12 -0
  2545. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEmpty.d.ts +12 -0
  2546. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEmpty.js +37 -0
  2547. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEmpty.mjs +33 -0
  2548. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.mts +40 -0
  2549. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.d.ts +40 -0
  2550. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.js +26 -0
  2551. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isEqualWith.mjs +22 -0
  2552. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isError.d.mts +16 -0
  2553. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isError.d.ts +16 -0
  2554. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isError.js +11 -0
  2555. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isError.mjs +7 -0
  2556. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.mts +27 -0
  2557. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFinite.d.ts +27 -0
  2558. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFinite.js +9 -0
  2559. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFinite.mjs +5 -0
  2560. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.mts +16 -0
  2561. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFunction.d.ts +16 -0
  2562. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFunction.js +9 -0
  2563. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isFunction.mjs +5 -0
  2564. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.mts +17 -0
  2565. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isInteger.d.ts +17 -0
  2566. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isInteger.js +9 -0
  2567. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isInteger.mjs +5 -0
  2568. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isLength.d.mts +24 -0
  2569. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isLength.d.ts +24 -0
  2570. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isLength.js +9 -0
  2571. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isLength.mjs +5 -0
  2572. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMap.d.mts +20 -0
  2573. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMap.d.ts +20 -0
  2574. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMap.js +11 -0
  2575. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMap.mjs +7 -0
  2576. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.mts +31 -0
  2577. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatch.d.ts +31 -0
  2578. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatch.js +11 -0
  2579. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatch.mjs +7 -0
  2580. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.mts +29 -0
  2581. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.d.ts +29 -0
  2582. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.js +154 -0
  2583. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isMatchWith.mjs +149 -0
  2584. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.mts +15 -0
  2585. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNaN.d.ts +15 -0
  2586. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNaN.js +9 -0
  2587. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNaN.mjs +5 -0
  2588. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNative.d.mts +18 -0
  2589. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNative.d.ts +18 -0
  2590. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNative.js +21 -0
  2591. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNative.mjs +17 -0
  2592. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNil.d.mts +22 -0
  2593. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNil.d.ts +22 -0
  2594. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNil.js +9 -0
  2595. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNil.mjs +5 -0
  2596. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNull.d.mts +14 -0
  2597. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNull.d.ts +14 -0
  2598. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNull.js +9 -0
  2599. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNull.mjs +5 -0
  2600. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.mts +20 -0
  2601. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNumber.d.ts +20 -0
  2602. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNumber.js +9 -0
  2603. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isNumber.mjs +5 -0
  2604. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObject.d.mts +26 -0
  2605. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObject.d.ts +26 -0
  2606. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObject.js +9 -0
  2607. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObject.mjs +5 -0
  2608. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.mts +26 -0
  2609. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.d.ts +26 -0
  2610. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.js +9 -0
  2611. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isObjectLike.mjs +5 -0
  2612. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.mts +25 -0
  2613. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.d.ts +25 -0
  2614. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.js +33 -0
  2615. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isPlainObject.mjs +29 -0
  2616. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.mts +16 -0
  2617. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isRegExp.d.ts +16 -0
  2618. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isRegExp.js +11 -0
  2619. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isRegExp.mjs +7 -0
  2620. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.mts +21 -0
  2621. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.d.ts +21 -0
  2622. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.js +9 -0
  2623. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSafeInteger.mjs +5 -0
  2624. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSet.d.mts +20 -0
  2625. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSet.d.ts +20 -0
  2626. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSet.js +11 -0
  2627. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSet.mjs +7 -0
  2628. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isString.d.mts +20 -0
  2629. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isString.d.ts +20 -0
  2630. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isString.js +9 -0
  2631. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isString.mjs +5 -0
  2632. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.mts +17 -0
  2633. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSymbol.d.ts +17 -0
  2634. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSymbol.js +9 -0
  2635. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isSymbol.mjs +5 -0
  2636. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.mts +18 -0
  2637. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.d.ts +18 -0
  2638. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.js +11 -0
  2639. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isTypedArray.mjs +7 -0
  2640. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.mts +23 -0
  2641. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isUndefined.d.ts +23 -0
  2642. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isUndefined.js +11 -0
  2643. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isUndefined.mjs +7 -0
  2644. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.mts +23 -0
  2645. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.d.ts +23 -0
  2646. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.js +11 -0
  2647. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakMap.mjs +7 -0
  2648. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.mts +23 -0
  2649. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.d.ts +23 -0
  2650. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.js +11 -0
  2651. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/isWeakSet.mjs +7 -0
  2652. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matches.d.mts +29 -0
  2653. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matches.d.ts +29 -0
  2654. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matches.js +15 -0
  2655. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matches.mjs +11 -0
  2656. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.mts +38 -0
  2657. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.d.ts +38 -0
  2658. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.js +37 -0
  2659. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/predicate/matchesProperty.mjs +33 -0
  2660. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/camelCase.d.mts +18 -0
  2661. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/camelCase.d.ts +18 -0
  2662. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/camelCase.js +13 -0
  2663. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/camelCase.mjs +9 -0
  2664. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/capitalize.d.mts +14 -0
  2665. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/capitalize.d.ts +14 -0
  2666. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/capitalize.js +12 -0
  2667. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/capitalize.mjs +8 -0
  2668. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/deburr.d.mts +22 -0
  2669. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/deburr.d.ts +22 -0
  2670. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/deburr.js +12 -0
  2671. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/deburr.mjs +8 -0
  2672. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/endsWith.d.mts +20 -0
  2673. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/endsWith.d.ts +20 -0
  2674. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/endsWith.js +15 -0
  2675. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/endsWith.mjs +11 -0
  2676. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escape.d.mts +16 -0
  2677. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escape.d.ts +16 -0
  2678. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escape.js +12 -0
  2679. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escape.mjs +8 -0
  2680. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.mts +14 -0
  2681. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escapeRegExp.d.ts +14 -0
  2682. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escapeRegExp.js +12 -0
  2683. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/escapeRegExp.mjs +8 -0
  2684. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/kebabCase.d.mts +17 -0
  2685. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/kebabCase.d.ts +17 -0
  2686. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/kebabCase.js +13 -0
  2687. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/kebabCase.mjs +9 -0
  2688. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerCase.d.mts +17 -0
  2689. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerCase.d.ts +17 -0
  2690. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerCase.js +13 -0
  2691. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerCase.mjs +9 -0
  2692. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.mts +14 -0
  2693. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerFirst.d.ts +14 -0
  2694. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerFirst.js +12 -0
  2695. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/lowerFirst.mjs +8 -0
  2696. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/pad.d.mts +19 -0
  2697. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/pad.d.ts +19 -0
  2698. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/pad.js +12 -0
  2699. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/pad.mjs +8 -0
  2700. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padEnd.d.mts +20 -0
  2701. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padEnd.d.ts +20 -0
  2702. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padEnd.js +11 -0
  2703. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padEnd.mjs +7 -0
  2704. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padStart.d.mts +20 -0
  2705. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padStart.d.ts +20 -0
  2706. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padStart.js +11 -0
  2707. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/padStart.mjs +7 -0
  2708. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/repeat.d.mts +17 -0
  2709. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/repeat.d.ts +17 -0
  2710. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/repeat.js +23 -0
  2711. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/repeat.mjs +19 -0
  2712. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/replace.d.mts +5 -0
  2713. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/replace.d.ts +5 -0
  2714. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/replace.js +14 -0
  2715. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/replace.mjs +10 -0
  2716. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/snakeCase.d.mts +17 -0
  2717. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/snakeCase.d.ts +17 -0
  2718. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/snakeCase.js +13 -0
  2719. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/snakeCase.mjs +9 -0
  2720. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/split.d.mts +36 -0
  2721. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/split.d.ts +36 -0
  2722. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/split.js +11 -0
  2723. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/split.mjs +7 -0
  2724. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startCase.d.mts +16 -0
  2725. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startCase.d.ts +16 -0
  2726. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startCase.js +27 -0
  2727. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startCase.mjs +23 -0
  2728. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startsWith.d.mts +20 -0
  2729. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startsWith.d.ts +20 -0
  2730. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startsWith.js +15 -0
  2731. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/startsWith.mjs +11 -0
  2732. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/template.d.mts +29 -0
  2733. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/template.d.ts +29 -0
  2734. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/template.js +92 -0
  2735. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/template.mjs +87 -0
  2736. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toLower.d.mts +20 -0
  2737. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toLower.d.ts +20 -0
  2738. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toLower.js +11 -0
  2739. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toLower.mjs +7 -0
  2740. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toUpper.d.mts +20 -0
  2741. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toUpper.d.ts +20 -0
  2742. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toUpper.js +11 -0
  2743. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/toUpper.mjs +7 -0
  2744. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trim.d.mts +28 -0
  2745. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trim.d.ts +28 -0
  2746. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trim.js +29 -0
  2747. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trim.mjs +25 -0
  2748. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimEnd.d.mts +30 -0
  2749. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimEnd.d.ts +30 -0
  2750. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimEnd.js +17 -0
  2751. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimEnd.mjs +13 -0
  2752. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimStart.d.mts +30 -0
  2753. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimStart.d.ts +30 -0
  2754. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimStart.js +17 -0
  2755. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/trimStart.mjs +13 -0
  2756. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/truncate.d.mts +34 -0
  2757. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/truncate.d.ts +34 -0
  2758. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/truncate.js +52 -0
  2759. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/truncate.mjs +48 -0
  2760. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/unescape.d.mts +16 -0
  2761. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/unescape.d.ts +16 -0
  2762. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/unescape.js +12 -0
  2763. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/unescape.mjs +8 -0
  2764. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperCase.d.mts +17 -0
  2765. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperCase.d.ts +17 -0
  2766. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperCase.js +13 -0
  2767. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperCase.mjs +9 -0
  2768. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperFirst.d.mts +14 -0
  2769. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperFirst.d.ts +14 -0
  2770. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperFirst.js +12 -0
  2771. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/upperFirst.mjs +8 -0
  2772. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/words.d.mts +27 -0
  2773. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/words.d.ts +27 -0
  2774. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/words.js +40 -0
  2775. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/string/words.mjs +36 -0
  2776. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/toolkit.d.mts +9 -0
  2777. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/toolkit.d.ts +9 -0
  2778. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/toolkit.js +14 -0
  2779. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/toolkit.mjs +10 -0
  2780. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/bindAll.d.mts +31 -0
  2781. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/bindAll.d.ts +31 -0
  2782. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/bindAll.js +47 -0
  2783. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/bindAll.mjs +43 -0
  2784. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/cond.d.mts +58 -0
  2785. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/cond.d.ts +58 -0
  2786. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/cond.js +30 -0
  2787. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/cond.mjs +26 -0
  2788. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/constant.d.mts +10 -0
  2789. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/constant.d.ts +10 -0
  2790. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/constant.js +9 -0
  2791. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/constant.mjs +5 -0
  2792. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/defaultTo.d.mts +21 -0
  2793. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/defaultTo.d.ts +21 -0
  2794. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/defaultTo.js +12 -0
  2795. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/defaultTo.mjs +8 -0
  2796. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/eq.d.mts +16 -0
  2797. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/eq.d.ts +16 -0
  2798. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/eq.js +9 -0
  2799. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/eq.mjs +5 -0
  2800. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gt.d.mts +15 -0
  2801. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gt.d.ts +15 -0
  2802. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gt.js +14 -0
  2803. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gt.mjs +10 -0
  2804. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gte.d.mts +15 -0
  2805. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gte.d.ts +15 -0
  2806. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gte.js +14 -0
  2807. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/gte.mjs +10 -0
  2808. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/invoke.d.mts +23 -0
  2809. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/invoke.d.ts +23 -0
  2810. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/invoke.js +53 -0
  2811. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/invoke.mjs +49 -0
  2812. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/iteratee.d.mts +33 -0
  2813. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/iteratee.d.ts +33 -0
  2814. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/iteratee.js +32 -0
  2815. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/iteratee.mjs +28 -0
  2816. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lt.d.mts +15 -0
  2817. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lt.d.ts +15 -0
  2818. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lt.js +14 -0
  2819. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lt.mjs +10 -0
  2820. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lte.d.mts +15 -0
  2821. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lte.d.ts +15 -0
  2822. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lte.js +14 -0
  2823. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/lte.mjs +10 -0
  2824. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/method.d.mts +22 -0
  2825. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/method.d.ts +22 -0
  2826. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/method.js +13 -0
  2827. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/method.mjs +9 -0
  2828. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/methodOf.d.mts +22 -0
  2829. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/methodOf.d.ts +22 -0
  2830. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/methodOf.js +13 -0
  2831. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/methodOf.mjs +9 -0
  2832. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/now.d.mts +18 -0
  2833. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/now.d.ts +18 -0
  2834. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/now.js +9 -0
  2835. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/now.mjs +5 -0
  2836. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/over.d.mts +29 -0
  2837. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/over.d.ts +29 -0
  2838. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/over.js +17 -0
  2839. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/over.mjs +13 -0
  2840. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overEvery.d.mts +67 -0
  2841. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overEvery.d.ts +67 -0
  2842. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overEvery.js +27 -0
  2843. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overEvery.mjs +23 -0
  2844. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overSome.d.mts +69 -0
  2845. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overSome.d.ts +69 -0
  2846. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overSome.js +27 -0
  2847. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/overSome.mjs +23 -0
  2848. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubArray.d.mts +10 -0
  2849. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubArray.d.ts +10 -0
  2850. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubArray.js +9 -0
  2851. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubArray.mjs +5 -0
  2852. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubFalse.d.mts +18 -0
  2853. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubFalse.d.ts +18 -0
  2854. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubFalse.js +9 -0
  2855. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubFalse.mjs +5 -0
  2856. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubObject.d.mts +10 -0
  2857. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubObject.d.ts +10 -0
  2858. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubObject.js +9 -0
  2859. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubObject.mjs +5 -0
  2860. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubString.d.mts +10 -0
  2861. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubString.d.ts +10 -0
  2862. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubString.js +9 -0
  2863. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubString.mjs +5 -0
  2864. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubTrue.d.mts +18 -0
  2865. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubTrue.d.ts +18 -0
  2866. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubTrue.js +9 -0
  2867. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/stubTrue.mjs +5 -0
  2868. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/times.d.mts +23 -0
  2869. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/times.d.ts +23 -0
  2870. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/times.js +19 -0
  2871. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/times.mjs +15 -0
  2872. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toArray.d.mts +35 -0
  2873. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toArray.d.ts +35 -0
  2874. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toArray.js +21 -0
  2875. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toArray.mjs +17 -0
  2876. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toFinite.d.mts +17 -0
  2877. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toFinite.d.ts +17 -0
  2878. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toFinite.js +19 -0
  2879. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toFinite.mjs +15 -0
  2880. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toInteger.d.mts +20 -0
  2881. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toInteger.d.ts +20 -0
  2882. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toInteger.js +13 -0
  2883. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toInteger.mjs +9 -0
  2884. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toLength.d.mts +18 -0
  2885. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toLength.d.ts +18 -0
  2886. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toLength.js +16 -0
  2887. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toLength.mjs +12 -0
  2888. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toNumber.d.mts +19 -0
  2889. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toNumber.d.ts +19 -0
  2890. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toNumber.js +14 -0
  2891. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toNumber.mjs +10 -0
  2892. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPath.d.mts +20 -0
  2893. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPath.d.ts +20 -0
  2894. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPath.js +82 -0
  2895. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPath.mjs +78 -0
  2896. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.mts +16 -0
  2897. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPlainObject.d.ts +16 -0
  2898. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPlainObject.js +28 -0
  2899. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toPlainObject.mjs +24 -0
  2900. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.mts +20 -0
  2901. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toSafeInteger.d.ts +20 -0
  2902. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toSafeInteger.js +16 -0
  2903. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toSafeInteger.mjs +12 -0
  2904. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toString.d.mts +19 -0
  2905. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toString.d.ts +19 -0
  2906. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toString.js +22 -0
  2907. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/toString.mjs +18 -0
  2908. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/uniqueId.d.mts +25 -0
  2909. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/uniqueId.d.ts +25 -0
  2910. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/uniqueId.js +11 -0
  2911. package/dist/ink-runner/node_modules/es-toolkit/dist/compat/util/uniqueId.mjs +7 -0
  2912. package/dist/ink-runner/node_modules/es-toolkit/dist/error/AbortError.d.mts +9 -0
  2913. package/dist/ink-runner/node_modules/es-toolkit/dist/error/AbortError.d.ts +9 -0
  2914. package/dist/ink-runner/node_modules/es-toolkit/dist/error/AbortError.js +12 -0
  2915. package/dist/ink-runner/node_modules/es-toolkit/dist/error/AbortError.mjs +8 -0
  2916. package/dist/ink-runner/node_modules/es-toolkit/dist/error/TimeoutError.d.mts +9 -0
  2917. package/dist/ink-runner/node_modules/es-toolkit/dist/error/TimeoutError.d.ts +9 -0
  2918. package/dist/ink-runner/node_modules/es-toolkit/dist/error/TimeoutError.js +12 -0
  2919. package/dist/ink-runner/node_modules/es-toolkit/dist/error/TimeoutError.mjs +8 -0
  2920. package/dist/ink-runner/node_modules/es-toolkit/dist/error/index.d.mts +2 -0
  2921. package/dist/ink-runner/node_modules/es-toolkit/dist/error/index.d.ts +2 -0
  2922. package/dist/ink-runner/node_modules/es-toolkit/dist/error/index.js +11 -0
  2923. package/dist/ink-runner/node_modules/es-toolkit/dist/error/index.mjs +2 -0
  2924. package/dist/ink-runner/node_modules/es-toolkit/dist/function/after.d.mts +31 -0
  2925. package/dist/ink-runner/node_modules/es-toolkit/dist/function/after.d.ts +31 -0
  2926. package/dist/ink-runner/node_modules/es-toolkit/dist/function/after.js +18 -0
  2927. package/dist/ink-runner/node_modules/es-toolkit/dist/function/after.mjs +14 -0
  2928. package/dist/ink-runner/node_modules/es-toolkit/dist/function/ary.d.mts +21 -0
  2929. package/dist/ink-runner/node_modules/es-toolkit/dist/function/ary.d.ts +21 -0
  2930. package/dist/ink-runner/node_modules/es-toolkit/dist/function/ary.js +11 -0
  2931. package/dist/ink-runner/node_modules/es-toolkit/dist/function/ary.mjs +7 -0
  2932. package/dist/ink-runner/node_modules/es-toolkit/dist/function/asyncNoop.d.mts +12 -0
  2933. package/dist/ink-runner/node_modules/es-toolkit/dist/function/asyncNoop.d.ts +12 -0
  2934. package/dist/ink-runner/node_modules/es-toolkit/dist/function/asyncNoop.js +7 -0
  2935. package/dist/ink-runner/node_modules/es-toolkit/dist/function/asyncNoop.mjs +3 -0
  2936. package/dist/ink-runner/node_modules/es-toolkit/dist/function/before.d.mts +31 -0
  2937. package/dist/ink-runner/node_modules/es-toolkit/dist/function/before.d.ts +31 -0
  2938. package/dist/ink-runner/node_modules/es-toolkit/dist/function/before.js +18 -0
  2939. package/dist/ink-runner/node_modules/es-toolkit/dist/function/before.mjs +14 -0
  2940. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curry.d.mts +126 -0
  2941. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curry.d.ts +126 -0
  2942. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curry.js +25 -0
  2943. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curry.mjs +21 -0
  2944. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curryRight.d.mts +140 -0
  2945. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curryRight.d.ts +140 -0
  2946. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curryRight.js +25 -0
  2947. package/dist/ink-runner/node_modules/es-toolkit/dist/function/curryRight.mjs +21 -0
  2948. package/dist/ink-runner/node_modules/es-toolkit/dist/function/debounce.d.mts +74 -0
  2949. package/dist/ink-runner/node_modules/es-toolkit/dist/function/debounce.d.ts +74 -0
  2950. package/dist/ink-runner/node_modules/es-toolkit/dist/function/debounce.js +66 -0
  2951. package/dist/ink-runner/node_modules/es-toolkit/dist/function/debounce.mjs +62 -0
  2952. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flow.d.mts +132 -0
  2953. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flow.d.ts +132 -0
  2954. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flow.js +15 -0
  2955. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flow.mjs +11 -0
  2956. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flowRight.d.mts +144 -0
  2957. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flowRight.d.ts +144 -0
  2958. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flowRight.js +11 -0
  2959. package/dist/ink-runner/node_modules/es-toolkit/dist/function/flowRight.mjs +7 -0
  2960. package/dist/ink-runner/node_modules/es-toolkit/dist/function/identity.d.mts +22 -0
  2961. package/dist/ink-runner/node_modules/es-toolkit/dist/function/identity.d.ts +22 -0
  2962. package/dist/ink-runner/node_modules/es-toolkit/dist/function/identity.js +9 -0
  2963. package/dist/ink-runner/node_modules/es-toolkit/dist/function/identity.mjs +5 -0
  2964. package/dist/ink-runner/node_modules/es-toolkit/dist/function/index.d.mts +21 -0
  2965. package/dist/ink-runner/node_modules/es-toolkit/dist/function/index.d.ts +21 -0
  2966. package/dist/ink-runner/node_modules/es-toolkit/dist/function/index.js +49 -0
  2967. package/dist/ink-runner/node_modules/es-toolkit/dist/function/index.mjs +21 -0
  2968. package/dist/ink-runner/node_modules/es-toolkit/dist/function/memoize.d.mts +124 -0
  2969. package/dist/ink-runner/node_modules/es-toolkit/dist/function/memoize.d.ts +124 -0
  2970. package/dist/ink-runner/node_modules/es-toolkit/dist/function/memoize.js +20 -0
  2971. package/dist/ink-runner/node_modules/es-toolkit/dist/function/memoize.mjs +16 -0
  2972. package/dist/ink-runner/node_modules/es-toolkit/dist/function/negate.d.mts +16 -0
  2973. package/dist/ink-runner/node_modules/es-toolkit/dist/function/negate.d.ts +16 -0
  2974. package/dist/ink-runner/node_modules/es-toolkit/dist/function/negate.js +9 -0
  2975. package/dist/ink-runner/node_modules/es-toolkit/dist/function/negate.mjs +5 -0
  2976. package/dist/ink-runner/node_modules/es-toolkit/dist/function/noop.d.mts +12 -0
  2977. package/dist/ink-runner/node_modules/es-toolkit/dist/function/noop.d.ts +12 -0
  2978. package/dist/ink-runner/node_modules/es-toolkit/dist/function/noop.js +7 -0
  2979. package/dist/ink-runner/node_modules/es-toolkit/dist/function/noop.mjs +3 -0
  2980. package/dist/ink-runner/node_modules/es-toolkit/dist/function/once.d.mts +17 -0
  2981. package/dist/ink-runner/node_modules/es-toolkit/dist/function/once.d.ts +17 -0
  2982. package/dist/ink-runner/node_modules/es-toolkit/dist/function/once.js +17 -0
  2983. package/dist/ink-runner/node_modules/es-toolkit/dist/function/once.mjs +13 -0
  2984. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partial.d.mts +551 -0
  2985. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partial.d.ts +551 -0
  2986. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partial.js +26 -0
  2987. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partial.mjs +21 -0
  2988. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partialRight.d.mts +628 -0
  2989. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partialRight.d.ts +628 -0
  2990. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partialRight.js +28 -0
  2991. package/dist/ink-runner/node_modules/es-toolkit/dist/function/partialRight.mjs +23 -0
  2992. package/dist/ink-runner/node_modules/es-toolkit/dist/function/rest.d.mts +33 -0
  2993. package/dist/ink-runner/node_modules/es-toolkit/dist/function/rest.d.ts +33 -0
  2994. package/dist/ink-runner/node_modules/es-toolkit/dist/function/rest.js +16 -0
  2995. package/dist/ink-runner/node_modules/es-toolkit/dist/function/rest.mjs +12 -0
  2996. package/dist/ink-runner/node_modules/es-toolkit/dist/function/retry.d.mts +77 -0
  2997. package/dist/ink-runner/node_modules/es-toolkit/dist/function/retry.d.ts +77 -0
  2998. package/dist/ink-runner/node_modules/es-toolkit/dist/function/retry.js +40 -0
  2999. package/dist/ink-runner/node_modules/es-toolkit/dist/function/retry.mjs +36 -0
  3000. package/dist/ink-runner/node_modules/es-toolkit/dist/function/spread.d.mts +19 -0
  3001. package/dist/ink-runner/node_modules/es-toolkit/dist/function/spread.d.ts +19 -0
  3002. package/dist/ink-runner/node_modules/es-toolkit/dist/function/spread.js +11 -0
  3003. package/dist/ink-runner/node_modules/es-toolkit/dist/function/spread.mjs +7 -0
  3004. package/dist/ink-runner/node_modules/es-toolkit/dist/function/throttle.d.mts +48 -0
  3005. package/dist/ink-runner/node_modules/es-toolkit/dist/function/throttle.d.ts +48 -0
  3006. package/dist/ink-runner/node_modules/es-toolkit/dist/function/throttle.js +31 -0
  3007. package/dist/ink-runner/node_modules/es-toolkit/dist/function/throttle.mjs +27 -0
  3008. package/dist/ink-runner/node_modules/es-toolkit/dist/function/unary.d.mts +17 -0
  3009. package/dist/ink-runner/node_modules/es-toolkit/dist/function/unary.d.ts +17 -0
  3010. package/dist/ink-runner/node_modules/es-toolkit/dist/function/unary.js +11 -0
  3011. package/dist/ink-runner/node_modules/es-toolkit/dist/function/unary.mjs +7 -0
  3012. package/dist/ink-runner/node_modules/es-toolkit/dist/index.d.mts +178 -0
  3013. package/dist/ink-runner/node_modules/es-toolkit/dist/index.d.ts +178 -0
  3014. package/dist/ink-runner/node_modules/es-toolkit/dist/index.js +366 -0
  3015. package/dist/ink-runner/node_modules/es-toolkit/dist/index.mjs +178 -0
  3016. package/dist/ink-runner/node_modules/es-toolkit/dist/math/clamp.d.mts +32 -0
  3017. package/dist/ink-runner/node_modules/es-toolkit/dist/math/clamp.d.ts +32 -0
  3018. package/dist/ink-runner/node_modules/es-toolkit/dist/math/clamp.js +12 -0
  3019. package/dist/ink-runner/node_modules/es-toolkit/dist/math/clamp.mjs +8 -0
  3020. package/dist/ink-runner/node_modules/es-toolkit/dist/math/inRange.d.mts +27 -0
  3021. package/dist/ink-runner/node_modules/es-toolkit/dist/math/inRange.d.ts +27 -0
  3022. package/dist/ink-runner/node_modules/es-toolkit/dist/math/inRange.js +16 -0
  3023. package/dist/ink-runner/node_modules/es-toolkit/dist/math/inRange.mjs +12 -0
  3024. package/dist/ink-runner/node_modules/es-toolkit/dist/math/index.d.mts +13 -0
  3025. package/dist/ink-runner/node_modules/es-toolkit/dist/math/index.d.ts +13 -0
  3026. package/dist/ink-runner/node_modules/es-toolkit/dist/math/index.js +33 -0
  3027. package/dist/ink-runner/node_modules/es-toolkit/dist/math/index.mjs +13 -0
  3028. package/dist/ink-runner/node_modules/es-toolkit/dist/math/mean.d.mts +16 -0
  3029. package/dist/ink-runner/node_modules/es-toolkit/dist/math/mean.d.ts +16 -0
  3030. package/dist/ink-runner/node_modules/es-toolkit/dist/math/mean.js +11 -0
  3031. package/dist/ink-runner/node_modules/es-toolkit/dist/math/mean.mjs +7 -0
  3032. package/dist/ink-runner/node_modules/es-toolkit/dist/math/meanBy.d.mts +18 -0
  3033. package/dist/ink-runner/node_modules/es-toolkit/dist/math/meanBy.d.ts +18 -0
  3034. package/dist/ink-runner/node_modules/es-toolkit/dist/math/meanBy.js +11 -0
  3035. package/dist/ink-runner/node_modules/es-toolkit/dist/math/meanBy.mjs +7 -0
  3036. package/dist/ink-runner/node_modules/es-toolkit/dist/math/median.d.mts +25 -0
  3037. package/dist/ink-runner/node_modules/es-toolkit/dist/math/median.d.ts +25 -0
  3038. package/dist/ink-runner/node_modules/es-toolkit/dist/math/median.js +19 -0
  3039. package/dist/ink-runner/node_modules/es-toolkit/dist/math/median.mjs +15 -0
  3040. package/dist/ink-runner/node_modules/es-toolkit/dist/math/medianBy.d.mts +23 -0
  3041. package/dist/ink-runner/node_modules/es-toolkit/dist/math/medianBy.d.ts +23 -0
  3042. package/dist/ink-runner/node_modules/es-toolkit/dist/math/medianBy.js +12 -0
  3043. package/dist/ink-runner/node_modules/es-toolkit/dist/math/medianBy.mjs +8 -0
  3044. package/dist/ink-runner/node_modules/es-toolkit/dist/math/random.d.mts +30 -0
  3045. package/dist/ink-runner/node_modules/es-toolkit/dist/math/random.d.ts +30 -0
  3046. package/dist/ink-runner/node_modules/es-toolkit/dist/math/random.js +16 -0
  3047. package/dist/ink-runner/node_modules/es-toolkit/dist/math/random.mjs +12 -0
  3048. package/dist/ink-runner/node_modules/es-toolkit/dist/math/randomInt.d.mts +26 -0
  3049. package/dist/ink-runner/node_modules/es-toolkit/dist/math/randomInt.d.ts +26 -0
  3050. package/dist/ink-runner/node_modules/es-toolkit/dist/math/randomInt.js +11 -0
  3051. package/dist/ink-runner/node_modules/es-toolkit/dist/math/randomInt.mjs +7 -0
  3052. package/dist/ink-runner/node_modules/es-toolkit/dist/math/range.d.mts +38 -0
  3053. package/dist/ink-runner/node_modules/es-toolkit/dist/math/range.d.ts +38 -0
  3054. package/dist/ink-runner/node_modules/es-toolkit/dist/math/range.js +21 -0
  3055. package/dist/ink-runner/node_modules/es-toolkit/dist/math/range.mjs +17 -0
  3056. package/dist/ink-runner/node_modules/es-toolkit/dist/math/rangeRight.d.mts +38 -0
  3057. package/dist/ink-runner/node_modules/es-toolkit/dist/math/rangeRight.d.ts +38 -0
  3058. package/dist/ink-runner/node_modules/es-toolkit/dist/math/rangeRight.js +21 -0
  3059. package/dist/ink-runner/node_modules/es-toolkit/dist/math/rangeRight.mjs +17 -0
  3060. package/dist/ink-runner/node_modules/es-toolkit/dist/math/round.d.mts +20 -0
  3061. package/dist/ink-runner/node_modules/es-toolkit/dist/math/round.d.ts +20 -0
  3062. package/dist/ink-runner/node_modules/es-toolkit/dist/math/round.js +13 -0
  3063. package/dist/ink-runner/node_modules/es-toolkit/dist/math/round.mjs +9 -0
  3064. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sum.d.mts +16 -0
  3065. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sum.d.ts +16 -0
  3066. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sum.js +13 -0
  3067. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sum.mjs +9 -0
  3068. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sumBy.d.mts +19 -0
  3069. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sumBy.d.ts +19 -0
  3070. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sumBy.js +13 -0
  3071. package/dist/ink-runner/node_modules/es-toolkit/dist/math/sumBy.mjs +9 -0
  3072. package/dist/ink-runner/node_modules/es-toolkit/dist/object/clone.d.mts +31 -0
  3073. package/dist/ink-runner/node_modules/es-toolkit/dist/object/clone.d.ts +31 -0
  3074. package/dist/ink-runner/node_modules/es-toolkit/dist/object/clone.js +49 -0
  3075. package/dist/ink-runner/node_modules/es-toolkit/dist/object/clone.mjs +45 -0
  3076. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeep.d.mts +49 -0
  3077. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeep.d.ts +49 -0
  3078. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeep.js +11 -0
  3079. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeep.mjs +7 -0
  3080. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeepWith.d.mts +43 -0
  3081. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeepWith.d.ts +43 -0
  3082. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeepWith.js +178 -0
  3083. package/dist/ink-runner/node_modules/es-toolkit/dist/object/cloneDeepWith.mjs +172 -0
  3084. package/dist/ink-runner/node_modules/es-toolkit/dist/object/findKey.d.mts +21 -0
  3085. package/dist/ink-runner/node_modules/es-toolkit/dist/object/findKey.d.ts +21 -0
  3086. package/dist/ink-runner/node_modules/es-toolkit/dist/object/findKey.js +10 -0
  3087. package/dist/ink-runner/node_modules/es-toolkit/dist/object/findKey.mjs +6 -0
  3088. package/dist/ink-runner/node_modules/es-toolkit/dist/object/flattenObject.d.mts +36 -0
  3089. package/dist/ink-runner/node_modules/es-toolkit/dist/object/flattenObject.d.ts +36 -0
  3090. package/dist/ink-runner/node_modules/es-toolkit/dist/object/flattenObject.js +30 -0
  3091. package/dist/ink-runner/node_modules/es-toolkit/dist/object/flattenObject.mjs +26 -0
  3092. package/dist/ink-runner/node_modules/es-toolkit/dist/object/index.d.mts +17 -0
  3093. package/dist/ink-runner/node_modules/es-toolkit/dist/object/index.d.ts +17 -0
  3094. package/dist/ink-runner/node_modules/es-toolkit/dist/object/index.js +41 -0
  3095. package/dist/ink-runner/node_modules/es-toolkit/dist/object/index.mjs +17 -0
  3096. package/dist/ink-runner/node_modules/es-toolkit/dist/object/invert.d.mts +21 -0
  3097. package/dist/ink-runner/node_modules/es-toolkit/dist/object/invert.d.ts +21 -0
  3098. package/dist/ink-runner/node_modules/es-toolkit/dist/object/invert.js +16 -0
  3099. package/dist/ink-runner/node_modules/es-toolkit/dist/object/invert.mjs +12 -0
  3100. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapKeys.d.mts +20 -0
  3101. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapKeys.d.ts +20 -0
  3102. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapKeys.js +16 -0
  3103. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapKeys.mjs +12 -0
  3104. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapValues.d.mts +21 -0
  3105. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapValues.d.ts +21 -0
  3106. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapValues.js +16 -0
  3107. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mapValues.mjs +12 -0
  3108. package/dist/ink-runner/node_modules/es-toolkit/dist/object/merge.d.mts +43 -0
  3109. package/dist/ink-runner/node_modules/es-toolkit/dist/object/merge.d.ts +43 -0
  3110. package/dist/ink-runner/node_modules/es-toolkit/dist/object/merge.js +36 -0
  3111. package/dist/ink-runner/node_modules/es-toolkit/dist/object/merge.mjs +32 -0
  3112. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mergeWith.d.mts +51 -0
  3113. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mergeWith.d.ts +51 -0
  3114. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mergeWith.js +44 -0
  3115. package/dist/ink-runner/node_modules/es-toolkit/dist/object/mergeWith.mjs +40 -0
  3116. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omit.d.mts +38 -0
  3117. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omit.d.ts +38 -0
  3118. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omit.js +14 -0
  3119. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omit.mjs +10 -0
  3120. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omitBy.d.mts +22 -0
  3121. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omitBy.d.ts +22 -0
  3122. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omitBy.js +18 -0
  3123. package/dist/ink-runner/node_modules/es-toolkit/dist/object/omitBy.mjs +14 -0
  3124. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pick.d.mts +20 -0
  3125. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pick.d.ts +20 -0
  3126. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pick.js +16 -0
  3127. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pick.mjs +12 -0
  3128. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pickBy.d.mts +22 -0
  3129. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pickBy.d.ts +22 -0
  3130. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pickBy.js +18 -0
  3131. package/dist/ink-runner/node_modules/es-toolkit/dist/object/pickBy.mjs +14 -0
  3132. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.mts +57 -0
  3133. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toCamelCaseKeys.d.ts +57 -0
  3134. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toCamelCaseKeys.js +27 -0
  3135. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toCamelCaseKeys.mjs +23 -0
  3136. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toMerged.d.mts +45 -0
  3137. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toMerged.d.ts +45 -0
  3138. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toMerged.js +30 -0
  3139. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toMerged.mjs +26 -0
  3140. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.mts +54 -0
  3141. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.d.ts +54 -0
  3142. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.js +27 -0
  3143. package/dist/ink-runner/node_modules/es-toolkit/dist/object/toSnakeCaseKeys.mjs +23 -0
  3144. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/index.d.mts +30 -0
  3145. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/index.d.ts +30 -0
  3146. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/index.js +69 -0
  3147. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/index.mjs +30 -0
  3148. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.mts +20 -0
  3149. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isArrayBuffer.d.ts +20 -0
  3150. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isArrayBuffer.js +9 -0
  3151. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isArrayBuffer.mjs +5 -0
  3152. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBlob.d.mts +19 -0
  3153. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBlob.d.ts +19 -0
  3154. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBlob.js +12 -0
  3155. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBlob.mjs +8 -0
  3156. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBoolean.d.mts +25 -0
  3157. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBoolean.d.ts +25 -0
  3158. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBoolean.js +9 -0
  3159. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBoolean.mjs +5 -0
  3160. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBrowser.d.mts +17 -0
  3161. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBrowser.d.ts +17 -0
  3162. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBrowser.js +9 -0
  3163. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBrowser.mjs +5 -0
  3164. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBuffer.d.mts +21 -0
  3165. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBuffer.d.ts +21 -0
  3166. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBuffer.js +9 -0
  3167. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isBuffer.mjs +5 -0
  3168. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isDate.d.mts +16 -0
  3169. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isDate.d.ts +16 -0
  3170. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isDate.js +9 -0
  3171. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isDate.mjs +5 -0
  3172. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqual.d.mts +17 -0
  3173. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqual.d.ts +17 -0
  3174. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqual.js +12 -0
  3175. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqual.mjs +8 -0
  3176. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqualWith.d.mts +38 -0
  3177. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqualWith.d.ts +38 -0
  3178. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqualWith.js +189 -0
  3179. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isEqualWith.mjs +185 -0
  3180. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isError.d.mts +16 -0
  3181. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isError.d.ts +16 -0
  3182. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isError.js +9 -0
  3183. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isError.mjs +5 -0
  3184. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFile.d.mts +21 -0
  3185. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFile.d.ts +21 -0
  3186. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFile.js +14 -0
  3187. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFile.mjs +10 -0
  3188. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFunction.d.mts +16 -0
  3189. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFunction.d.ts +16 -0
  3190. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFunction.js +9 -0
  3191. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isFunction.mjs +5 -0
  3192. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSON.d.mts +31 -0
  3193. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSON.d.ts +31 -0
  3194. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSON.js +18 -0
  3195. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSON.mjs +14 -0
  3196. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSONValue.d.mts +56 -0
  3197. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSONValue.d.ts +56 -0
  3198. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSONValue.js +48 -0
  3199. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isJSONValue.mjs +42 -0
  3200. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isLength.d.mts +24 -0
  3201. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isLength.d.ts +24 -0
  3202. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isLength.js +9 -0
  3203. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isLength.mjs +5 -0
  3204. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isMap.d.mts +20 -0
  3205. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isMap.d.ts +20 -0
  3206. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isMap.js +9 -0
  3207. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isMap.mjs +5 -0
  3208. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNil.d.mts +22 -0
  3209. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNil.d.ts +22 -0
  3210. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNil.js +9 -0
  3211. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNil.mjs +5 -0
  3212. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNode.d.mts +17 -0
  3213. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNode.d.ts +17 -0
  3214. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNode.js +9 -0
  3215. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNode.mjs +5 -0
  3216. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNotNil.d.mts +19 -0
  3217. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNotNil.d.ts +19 -0
  3218. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNotNil.js +9 -0
  3219. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNotNil.mjs +5 -0
  3220. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNull.d.mts +23 -0
  3221. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNull.d.ts +23 -0
  3222. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNull.js +9 -0
  3223. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isNull.mjs +5 -0
  3224. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPlainObject.d.mts +45 -0
  3225. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPlainObject.d.ts +45 -0
  3226. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPlainObject.js +19 -0
  3227. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPlainObject.mjs +15 -0
  3228. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPrimitive.d.mts +31 -0
  3229. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPrimitive.d.ts +31 -0
  3230. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPrimitive.js +9 -0
  3231. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPrimitive.mjs +5 -0
  3232. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPromise.d.mts +20 -0
  3233. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPromise.d.ts +20 -0
  3234. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPromise.js +9 -0
  3235. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isPromise.mjs +5 -0
  3236. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isRegExp.d.mts +16 -0
  3237. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isRegExp.d.ts +16 -0
  3238. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isRegExp.js +9 -0
  3239. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isRegExp.mjs +5 -0
  3240. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSet.d.mts +20 -0
  3241. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSet.d.ts +20 -0
  3242. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSet.js +9 -0
  3243. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSet.mjs +5 -0
  3244. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isString.d.mts +20 -0
  3245. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isString.d.ts +20 -0
  3246. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isString.js +9 -0
  3247. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isString.mjs +5 -0
  3248. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSymbol.d.mts +26 -0
  3249. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSymbol.d.ts +26 -0
  3250. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSymbol.js +9 -0
  3251. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isSymbol.mjs +5 -0
  3252. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isTypedArray.d.mts +29 -0
  3253. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isTypedArray.d.ts +29 -0
  3254. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isTypedArray.js +9 -0
  3255. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isTypedArray.mjs +5 -0
  3256. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isUndefined.d.mts +23 -0
  3257. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isUndefined.d.ts +23 -0
  3258. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isUndefined.js +9 -0
  3259. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isUndefined.mjs +5 -0
  3260. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakMap.d.mts +23 -0
  3261. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakMap.d.ts +23 -0
  3262. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakMap.js +9 -0
  3263. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakMap.mjs +5 -0
  3264. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakSet.d.mts +23 -0
  3265. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakSet.d.ts +23 -0
  3266. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakSet.js +9 -0
  3267. package/dist/ink-runner/node_modules/es-toolkit/dist/predicate/isWeakSet.mjs +5 -0
  3268. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/delay.d.mts +38 -0
  3269. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/delay.d.ts +38 -0
  3270. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/delay.js +27 -0
  3271. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/delay.mjs +23 -0
  3272. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/index.d.mts +5 -0
  3273. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/index.d.ts +5 -0
  3274. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/index.js +17 -0
  3275. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/index.mjs +5 -0
  3276. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/mutex.d.mts +64 -0
  3277. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/mutex.d.ts +64 -0
  3278. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/mutex.js +20 -0
  3279. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/mutex.mjs +16 -0
  3280. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/semaphore.d.mts +81 -0
  3281. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/semaphore.d.ts +81 -0
  3282. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/semaphore.js +34 -0
  3283. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/semaphore.mjs +30 -0
  3284. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/timeout.d.mts +17 -0
  3285. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/timeout.d.ts +17 -0
  3286. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/timeout.js +13 -0
  3287. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/timeout.mjs +9 -0
  3288. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/withTimeout.d.mts +28 -0
  3289. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/withTimeout.d.ts +28 -0
  3290. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/withTimeout.js +11 -0
  3291. package/dist/ink-runner/node_modules/es-toolkit/dist/promise/withTimeout.mjs +7 -0
  3292. package/dist/ink-runner/node_modules/es-toolkit/dist/string/camelCase.d.mts +19 -0
  3293. package/dist/ink-runner/node_modules/es-toolkit/dist/string/camelCase.d.ts +19 -0
  3294. package/dist/ink-runner/node_modules/es-toolkit/dist/string/camelCase.js +17 -0
  3295. package/dist/ink-runner/node_modules/es-toolkit/dist/string/camelCase.mjs +13 -0
  3296. package/dist/ink-runner/node_modules/es-toolkit/dist/string/capitalize.d.mts +15 -0
  3297. package/dist/ink-runner/node_modules/es-toolkit/dist/string/capitalize.d.ts +15 -0
  3298. package/dist/ink-runner/node_modules/es-toolkit/dist/string/capitalize.js +9 -0
  3299. package/dist/ink-runner/node_modules/es-toolkit/dist/string/capitalize.mjs +5 -0
  3300. package/dist/ink-runner/node_modules/es-toolkit/dist/string/constantCase.d.mts +17 -0
  3301. package/dist/ink-runner/node_modules/es-toolkit/dist/string/constantCase.d.ts +17 -0
  3302. package/dist/ink-runner/node_modules/es-toolkit/dist/string/constantCase.js +12 -0
  3303. package/dist/ink-runner/node_modules/es-toolkit/dist/string/constantCase.mjs +8 -0
  3304. package/dist/ink-runner/node_modules/es-toolkit/dist/string/deburr.d.mts +22 -0
  3305. package/dist/ink-runner/node_modules/es-toolkit/dist/string/deburr.d.ts +22 -0
  3306. package/dist/ink-runner/node_modules/es-toolkit/dist/string/deburr.js +49 -0
  3307. package/dist/ink-runner/node_modules/es-toolkit/dist/string/deburr.mjs +45 -0
  3308. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escape.d.mts +16 -0
  3309. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escape.d.ts +16 -0
  3310. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escape.js +16 -0
  3311. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escape.mjs +12 -0
  3312. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escapeRegExp.d.mts +14 -0
  3313. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escapeRegExp.d.ts +14 -0
  3314. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escapeRegExp.js +9 -0
  3315. package/dist/ink-runner/node_modules/es-toolkit/dist/string/escapeRegExp.mjs +5 -0
  3316. package/dist/ink-runner/node_modules/es-toolkit/dist/string/index.d.mts +21 -0
  3317. package/dist/ink-runner/node_modules/es-toolkit/dist/string/index.d.ts +21 -0
  3318. package/dist/ink-runner/node_modules/es-toolkit/dist/string/index.js +49 -0
  3319. package/dist/ink-runner/node_modules/es-toolkit/dist/string/index.mjs +21 -0
  3320. package/dist/ink-runner/node_modules/es-toolkit/dist/string/kebabCase.d.mts +17 -0
  3321. package/dist/ink-runner/node_modules/es-toolkit/dist/string/kebabCase.d.ts +17 -0
  3322. package/dist/ink-runner/node_modules/es-toolkit/dist/string/kebabCase.js +12 -0
  3323. package/dist/ink-runner/node_modules/es-toolkit/dist/string/kebabCase.mjs +8 -0
  3324. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerCase.d.mts +17 -0
  3325. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerCase.d.ts +17 -0
  3326. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerCase.js +12 -0
  3327. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerCase.mjs +8 -0
  3328. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerFirst.d.mts +14 -0
  3329. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerFirst.d.ts +14 -0
  3330. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerFirst.js +9 -0
  3331. package/dist/ink-runner/node_modules/es-toolkit/dist/string/lowerFirst.mjs +5 -0
  3332. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pad.d.mts +19 -0
  3333. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pad.d.ts +19 -0
  3334. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pad.js +9 -0
  3335. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pad.mjs +5 -0
  3336. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pascalCase.d.mts +17 -0
  3337. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pascalCase.d.ts +17 -0
  3338. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pascalCase.js +13 -0
  3339. package/dist/ink-runner/node_modules/es-toolkit/dist/string/pascalCase.mjs +9 -0
  3340. package/dist/ink-runner/node_modules/es-toolkit/dist/string/reverseString.d.mts +16 -0
  3341. package/dist/ink-runner/node_modules/es-toolkit/dist/string/reverseString.d.ts +16 -0
  3342. package/dist/ink-runner/node_modules/es-toolkit/dist/string/reverseString.js +9 -0
  3343. package/dist/ink-runner/node_modules/es-toolkit/dist/string/reverseString.mjs +5 -0
  3344. package/dist/ink-runner/node_modules/es-toolkit/dist/string/snakeCase.d.mts +17 -0
  3345. package/dist/ink-runner/node_modules/es-toolkit/dist/string/snakeCase.d.ts +17 -0
  3346. package/dist/ink-runner/node_modules/es-toolkit/dist/string/snakeCase.js +12 -0
  3347. package/dist/ink-runner/node_modules/es-toolkit/dist/string/snakeCase.mjs +8 -0
  3348. package/dist/ink-runner/node_modules/es-toolkit/dist/string/startCase.d.mts +16 -0
  3349. package/dist/ink-runner/node_modules/es-toolkit/dist/string/startCase.d.ts +16 -0
  3350. package/dist/ink-runner/node_modules/es-toolkit/dist/string/startCase.js +20 -0
  3351. package/dist/ink-runner/node_modules/es-toolkit/dist/string/startCase.mjs +16 -0
  3352. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trim.d.mts +15 -0
  3353. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trim.d.ts +15 -0
  3354. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trim.js +15 -0
  3355. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trim.mjs +11 -0
  3356. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimEnd.d.mts +19 -0
  3357. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimEnd.d.ts +19 -0
  3358. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimEnd.js +29 -0
  3359. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimEnd.mjs +25 -0
  3360. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimStart.d.mts +19 -0
  3361. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimStart.d.ts +19 -0
  3362. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimStart.js +26 -0
  3363. package/dist/ink-runner/node_modules/es-toolkit/dist/string/trimStart.mjs +22 -0
  3364. package/dist/ink-runner/node_modules/es-toolkit/dist/string/unescape.d.mts +16 -0
  3365. package/dist/ink-runner/node_modules/es-toolkit/dist/string/unescape.d.ts +16 -0
  3366. package/dist/ink-runner/node_modules/es-toolkit/dist/string/unescape.js +16 -0
  3367. package/dist/ink-runner/node_modules/es-toolkit/dist/string/unescape.mjs +12 -0
  3368. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperCase.d.mts +17 -0
  3369. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperCase.d.ts +17 -0
  3370. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperCase.js +19 -0
  3371. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperCase.mjs +15 -0
  3372. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperFirst.d.mts +14 -0
  3373. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperFirst.d.ts +14 -0
  3374. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperFirst.js +9 -0
  3375. package/dist/ink-runner/node_modules/es-toolkit/dist/string/upperFirst.mjs +5 -0
  3376. package/dist/ink-runner/node_modules/es-toolkit/dist/string/words.d.mts +20 -0
  3377. package/dist/ink-runner/node_modules/es-toolkit/dist/string/words.d.ts +20 -0
  3378. package/dist/ink-runner/node_modules/es-toolkit/dist/string/words.js +11 -0
  3379. package/dist/ink-runner/node_modules/es-toolkit/dist/string/words.mjs +6 -0
  3380. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attempt.d.mts +42 -0
  3381. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attempt.d.ts +42 -0
  3382. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attempt.js +14 -0
  3383. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attempt.mjs +10 -0
  3384. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attemptAsync.d.mts +35 -0
  3385. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attemptAsync.d.ts +35 -0
  3386. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attemptAsync.js +15 -0
  3387. package/dist/ink-runner/node_modules/es-toolkit/dist/util/attemptAsync.mjs +11 -0
  3388. package/dist/ink-runner/node_modules/es-toolkit/dist/util/index.d.mts +3 -0
  3389. package/dist/ink-runner/node_modules/es-toolkit/dist/util/index.d.ts +3 -0
  3390. package/dist/ink-runner/node_modules/es-toolkit/dist/util/index.js +14 -0
  3391. package/dist/ink-runner/node_modules/es-toolkit/dist/util/index.mjs +3 -0
  3392. package/dist/ink-runner/node_modules/es-toolkit/dist/util/invariant.d.mts +40 -0
  3393. package/dist/ink-runner/node_modules/es-toolkit/dist/util/invariant.d.ts +40 -0
  3394. package/dist/ink-runner/node_modules/es-toolkit/dist/util/invariant.js +15 -0
  3395. package/dist/ink-runner/node_modules/es-toolkit/dist/util/invariant.mjs +11 -0
  3396. package/dist/ink-runner/node_modules/es-toolkit/error.d.ts +1 -0
  3397. package/dist/ink-runner/node_modules/es-toolkit/error.js +1 -0
  3398. package/dist/ink-runner/node_modules/es-toolkit/function.d.ts +1 -0
  3399. package/dist/ink-runner/node_modules/es-toolkit/function.js +1 -0
  3400. package/dist/ink-runner/node_modules/es-toolkit/math.d.ts +1 -0
  3401. package/dist/ink-runner/node_modules/es-toolkit/math.js +1 -0
  3402. package/dist/ink-runner/node_modules/es-toolkit/object.d.ts +1 -0
  3403. package/dist/ink-runner/node_modules/es-toolkit/object.js +1 -0
  3404. package/dist/ink-runner/node_modules/es-toolkit/package.json +343 -0
  3405. package/dist/ink-runner/node_modules/es-toolkit/predicate.d.ts +1 -0
  3406. package/dist/ink-runner/node_modules/es-toolkit/predicate.js +1 -0
  3407. package/dist/ink-runner/node_modules/es-toolkit/promise.d.ts +1 -0
  3408. package/dist/ink-runner/node_modules/es-toolkit/promise.js +1 -0
  3409. package/dist/ink-runner/node_modules/es-toolkit/src/compat/_internal/Equals.d.ts +1 -0
  3410. package/dist/ink-runner/node_modules/es-toolkit/src/compat/_internal/IsWritable.d.ts +3 -0
  3411. package/dist/ink-runner/node_modules/es-toolkit/src/compat/_internal/MutableList.d.ts +4 -0
  3412. package/dist/ink-runner/node_modules/es-toolkit/src/compat/_internal/RejectReadonly.d.ts +4 -0
  3413. package/dist/ink-runner/node_modules/es-toolkit/string.d.ts +1 -0
  3414. package/dist/ink-runner/node_modules/es-toolkit/string.js +1 -0
  3415. package/dist/ink-runner/node_modules/es-toolkit/util.d.ts +1 -0
  3416. package/dist/ink-runner/node_modules/es-toolkit/util.js +1 -0
  3417. package/dist/ink-runner/node_modules/esbuild/LICENSE.md +21 -0
  3418. package/dist/ink-runner/node_modules/esbuild/README.md +3 -0
  3419. package/dist/ink-runner/node_modules/esbuild/bin/esbuild +0 -0
  3420. package/dist/ink-runner/node_modules/esbuild/install.js +287 -0
  3421. package/dist/ink-runner/node_modules/esbuild/lib/main.d.ts +705 -0
  3422. package/dist/ink-runner/node_modules/esbuild/lib/main.js +2245 -0
  3423. package/dist/ink-runner/node_modules/esbuild/package.json +48 -0
  3424. package/dist/ink-runner/node_modules/escape-string-regexp/index.d.ts +18 -0
  3425. package/dist/ink-runner/node_modules/escape-string-regexp/index.js +11 -0
  3426. package/dist/ink-runner/node_modules/escape-string-regexp/license +9 -0
  3427. package/dist/ink-runner/node_modules/escape-string-regexp/package.json +43 -0
  3428. package/dist/ink-runner/node_modules/escape-string-regexp/readme.md +29 -0
  3429. package/dist/ink-runner/node_modules/figures/index.d.ts +279 -0
  3430. package/dist/ink-runner/node_modules/figures/index.js +292 -0
  3431. package/dist/ink-runner/node_modules/figures/license +9 -0
  3432. package/dist/ink-runner/node_modules/figures/package.json +49 -0
  3433. package/dist/ink-runner/node_modules/figures/readme.md +337 -0
  3434. package/dist/ink-runner/node_modules/fsevents/LICENSE +22 -0
  3435. package/dist/ink-runner/node_modules/fsevents/README.md +89 -0
  3436. package/dist/ink-runner/node_modules/fsevents/fsevents.d.ts +46 -0
  3437. package/dist/ink-runner/node_modules/fsevents/fsevents.js +83 -0
  3438. package/dist/ink-runner/node_modules/fsevents/fsevents.node +0 -0
  3439. package/dist/ink-runner/node_modules/fsevents/package.json +62 -0
  3440. package/dist/ink-runner/node_modules/get-east-asian-width/index.d.ts +60 -0
  3441. package/dist/ink-runner/node_modules/get-east-asian-width/index.js +30 -0
  3442. package/dist/ink-runner/node_modules/get-east-asian-width/license +9 -0
  3443. package/dist/ink-runner/node_modules/get-east-asian-width/lookup.js +403 -0
  3444. package/dist/ink-runner/node_modules/get-east-asian-width/package.json +70 -0
  3445. package/dist/ink-runner/node_modules/get-east-asian-width/readme.md +65 -0
  3446. package/dist/ink-runner/node_modules/get-tsconfig/LICENSE +21 -0
  3447. package/dist/ink-runner/node_modules/get-tsconfig/README.md +235 -0
  3448. package/dist/ink-runner/node_modules/get-tsconfig/dist/index.cjs +7 -0
  3449. package/dist/ink-runner/node_modules/get-tsconfig/dist/index.d.cts +2088 -0
  3450. package/dist/ink-runner/node_modules/get-tsconfig/dist/index.d.mts +2088 -0
  3451. package/dist/ink-runner/node_modules/get-tsconfig/dist/index.mjs +7 -0
  3452. package/dist/ink-runner/node_modules/get-tsconfig/package.json +46 -0
  3453. package/dist/ink-runner/node_modules/indent-string/index.d.ts +38 -0
  3454. package/dist/ink-runner/node_modules/indent-string/index.js +38 -0
  3455. package/dist/ink-runner/node_modules/indent-string/license +9 -0
  3456. package/dist/ink-runner/node_modules/indent-string/package.json +40 -0
  3457. package/dist/ink-runner/node_modules/indent-string/readme.md +73 -0
  3458. package/dist/ink-runner/node_modules/ink/build/apply-styles.js +175 -0
  3459. package/dist/ink-runner/node_modules/ink/build/build-layout.js +77 -0
  3460. package/dist/ink-runner/node_modules/ink/build/calculate-wrapped-text.js +53 -0
  3461. package/dist/ink-runner/node_modules/ink/build/colorize.d.ts +3 -0
  3462. package/dist/ink-runner/node_modules/ink/build/colorize.js +48 -0
  3463. package/dist/ink-runner/node_modules/ink/build/components/App.d.ts +59 -0
  3464. package/dist/ink-runner/node_modules/ink/build/components/App.js +286 -0
  3465. package/dist/ink-runner/node_modules/ink/build/components/AppContext.d.ts +11 -0
  3466. package/dist/ink-runner/node_modules/ink/build/components/AppContext.js +11 -0
  3467. package/dist/ink-runner/node_modules/ink/build/components/Box.d.ts +62 -0
  3468. package/dist/ink-runner/node_modules/ink/build/components/Box.js +20 -0
  3469. package/dist/ink-runner/node_modules/ink/build/components/Color.js +62 -0
  3470. package/dist/ink-runner/node_modules/ink/build/components/ErrorOverview.d.ts +6 -0
  3471. package/dist/ink-runner/node_modules/ink/build/components/ErrorOverview.js +79 -0
  3472. package/dist/ink-runner/node_modules/ink/build/components/FocusContext.d.ts +16 -0
  3473. package/dist/ink-runner/node_modules/ink/build/components/FocusContext.js +17 -0
  3474. package/dist/ink-runner/node_modules/ink/build/components/Newline.d.ts +13 -0
  3475. package/dist/ink-runner/node_modules/ink/build/components/Newline.js +8 -0
  3476. package/dist/ink-runner/node_modules/ink/build/components/Spacer.d.ts +6 -0
  3477. package/dist/ink-runner/node_modules/ink/build/components/Spacer.js +10 -0
  3478. package/dist/ink-runner/node_modules/ink/build/components/Static.d.ts +31 -0
  3479. package/dist/ink-runner/node_modules/ink/build/components/Static.js +33 -0
  3480. package/dist/ink-runner/node_modules/ink/build/components/StderrContext.d.ts +17 -0
  3481. package/dist/ink-runner/node_modules/ink/build/components/StderrContext.js +13 -0
  3482. package/dist/ink-runner/node_modules/ink/build/components/StdinContext.d.ts +23 -0
  3483. package/dist/ink-runner/node_modules/ink/build/components/StdinContext.js +19 -0
  3484. package/dist/ink-runner/node_modules/ink/build/components/StdoutContext.d.ts +17 -0
  3485. package/dist/ink-runner/node_modules/ink/build/components/StdoutContext.js +13 -0
  3486. package/dist/ink-runner/node_modules/ink/build/components/Text.d.ts +49 -0
  3487. package/dist/ink-runner/node_modules/ink/build/components/Text.js +40 -0
  3488. package/dist/ink-runner/node_modules/ink/build/components/Transform.d.ts +15 -0
  3489. package/dist/ink-runner/node_modules/ink/build/components/Transform.js +14 -0
  3490. package/dist/ink-runner/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
  3491. package/dist/ink-runner/node_modules/ink/build/devtools-window-polyfill.js +64 -0
  3492. package/dist/ink-runner/node_modules/ink/build/devtools.d.ts +1 -0
  3493. package/dist/ink-runner/node_modules/ink/build/devtools.js +9 -0
  3494. package/dist/ink-runner/node_modules/ink/build/dom.d.ts +42 -0
  3495. package/dist/ink-runner/node_modules/ink/build/dom.js +117 -0
  3496. package/dist/ink-runner/node_modules/ink/build/experimental/apply-style.js +140 -0
  3497. package/dist/ink-runner/node_modules/ink/build/experimental/dom.js +123 -0
  3498. package/dist/ink-runner/node_modules/ink/build/experimental/output.js +91 -0
  3499. package/dist/ink-runner/node_modules/ink/build/experimental/reconciler.js +141 -0
  3500. package/dist/ink-runner/node_modules/ink/build/experimental/renderer.js +81 -0
  3501. package/dist/ink-runner/node_modules/ink/build/get-max-width.d.ts +3 -0
  3502. package/dist/ink-runner/node_modules/ink/build/get-max-width.js +10 -0
  3503. package/dist/ink-runner/node_modules/ink/build/hooks/use-app.d.ts +5 -0
  3504. package/dist/ink-runner/node_modules/ink/build/hooks/use-app.js +8 -0
  3505. package/dist/ink-runner/node_modules/ink/build/hooks/use-focus-manager.d.ts +34 -0
  3506. package/dist/ink-runner/node_modules/ink/build/hooks/use-focus-manager.js +18 -0
  3507. package/dist/ink-runner/node_modules/ink/build/hooks/use-focus.d.ts +34 -0
  3508. package/dist/ink-runner/node_modules/ink/build/hooks/use-focus.js +47 -0
  3509. package/dist/ink-runner/node_modules/ink/build/hooks/use-input.d.ts +97 -0
  3510. package/dist/ink-runner/node_modules/ink/build/hooks/use-input.js +96 -0
  3511. package/dist/ink-runner/node_modules/ink/build/hooks/use-stderr.d.ts +5 -0
  3512. package/dist/ink-runner/node_modules/ink/build/hooks/use-stderr.js +8 -0
  3513. package/dist/ink-runner/node_modules/ink/build/hooks/use-stdin.d.ts +5 -0
  3514. package/dist/ink-runner/node_modules/ink/build/hooks/use-stdin.js +8 -0
  3515. package/dist/ink-runner/node_modules/ink/build/hooks/use-stdout.d.ts +5 -0
  3516. package/dist/ink-runner/node_modules/ink/build/hooks/use-stdout.js +8 -0
  3517. package/dist/ink-runner/node_modules/ink/build/hooks/useInput.js +38 -0
  3518. package/dist/ink-runner/node_modules/ink/build/index.d.ts +27 -0
  3519. package/dist/ink-runner/node_modules/ink/build/index.js +16 -0
  3520. package/dist/ink-runner/node_modules/ink/build/ink.d.ts +37 -0
  3521. package/dist/ink-runner/node_modules/ink/build/ink.js +235 -0
  3522. package/dist/ink-runner/node_modules/ink/build/instance.js +205 -0
  3523. package/dist/ink-runner/node_modules/ink/build/instances.d.ts +3 -0
  3524. package/dist/ink-runner/node_modules/ink/build/instances.js +8 -0
  3525. package/dist/ink-runner/node_modules/ink/build/log-update.d.ts +12 -0
  3526. package/dist/ink-runner/node_modules/ink/build/log-update.js +37 -0
  3527. package/dist/ink-runner/node_modules/ink/build/measure-element.d.ts +16 -0
  3528. package/dist/ink-runner/node_modules/ink/build/measure-element.js +9 -0
  3529. package/dist/ink-runner/node_modules/ink/build/measure-text.d.ts +6 -0
  3530. package/dist/ink-runner/node_modules/ink/build/measure-text.js +20 -0
  3531. package/dist/ink-runner/node_modules/ink/build/output.d.ts +35 -0
  3532. package/dist/ink-runner/node_modules/ink/build/output.js +148 -0
  3533. package/dist/ink-runner/node_modules/ink/build/parse-keypress.d.ts +14 -0
  3534. package/dist/ink-runner/node_modules/ink/build/parse-keypress.js +225 -0
  3535. package/dist/ink-runner/node_modules/ink/build/reconciler.d.ts +4 -0
  3536. package/dist/ink-runner/node_modules/ink/build/reconciler.js +219 -0
  3537. package/dist/ink-runner/node_modules/ink/build/render-border.d.ts +4 -0
  3538. package/dist/ink-runner/node_modules/ink/build/render-border.js +73 -0
  3539. package/dist/ink-runner/node_modules/ink/build/render-node-to-output.d.ts +10 -0
  3540. package/dist/ink-runner/node_modules/ink/build/render-node-to-output.js +99 -0
  3541. package/dist/ink-runner/node_modules/ink/build/render.d.ts +63 -0
  3542. package/dist/ink-runner/node_modules/ink/build/render.js +48 -0
  3543. package/dist/ink-runner/node_modules/ink/build/renderer.d.ts +8 -0
  3544. package/dist/ink-runner/node_modules/ink/build/renderer.js +36 -0
  3545. package/dist/ink-runner/node_modules/ink/build/squash-text-nodes.d.ts +3 -0
  3546. package/dist/ink-runner/node_modules/ink/build/squash-text-nodes.js +35 -0
  3547. package/dist/ink-runner/node_modules/ink/build/styles.d.ts +243 -0
  3548. package/dist/ink-runner/node_modules/ink/build/styles.js +232 -0
  3549. package/dist/ink-runner/node_modules/ink/build/wrap-text.d.ts +3 -0
  3550. package/dist/ink-runner/node_modules/ink/build/wrap-text.js +31 -0
  3551. package/dist/ink-runner/node_modules/ink/license +9 -0
  3552. package/dist/ink-runner/node_modules/ink/package.json +196 -0
  3553. package/dist/ink-runner/node_modules/ink/readme.md +2162 -0
  3554. package/dist/ink-runner/node_modules/ink-select-input/build/Indicator.d.ts +6 -0
  3555. package/dist/ink-runner/node_modules/ink-select-input/build/Indicator.js +8 -0
  3556. package/dist/ink-runner/node_modules/ink-select-input/build/Item.d.ts +7 -0
  3557. package/dist/ink-runner/node_modules/ink-select-input/build/Item.js +7 -0
  3558. package/dist/ink-runner/node_modules/ink-select-input/build/SelectInput.d.ts +49 -0
  3559. package/dist/ink-runner/node_modules/ink-select-input/build/SelectInput.js +96 -0
  3560. package/dist/ink-runner/node_modules/ink-select-input/build/index.d.ts +3 -0
  3561. package/dist/ink-runner/node_modules/ink-select-input/build/index.js +4 -0
  3562. package/dist/ink-runner/node_modules/ink-select-input/license +9 -0
  3563. package/dist/ink-runner/node_modules/ink-select-input/package.json +82 -0
  3564. package/dist/ink-runner/node_modules/ink-select-input/readme.md +100 -0
  3565. package/dist/ink-runner/node_modules/ink-text-input/build/index.d.ts +46 -0
  3566. package/dist/ink-runner/node_modules/ink-text-input/build/index.js +118 -0
  3567. package/dist/ink-runner/node_modules/ink-text-input/license +9 -0
  3568. package/dist/ink-runner/node_modules/ink-text-input/package.json +87 -0
  3569. package/dist/ink-runner/node_modules/ink-text-input/readme.md +122 -0
  3570. package/dist/ink-runner/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  3571. package/dist/ink-runner/node_modules/is-fullwidth-code-point/index.js +40 -0
  3572. package/dist/ink-runner/node_modules/is-fullwidth-code-point/license +9 -0
  3573. package/dist/ink-runner/node_modules/is-fullwidth-code-point/package.json +45 -0
  3574. package/dist/ink-runner/node_modules/is-fullwidth-code-point/readme.md +43 -0
  3575. package/dist/ink-runner/node_modules/is-in-ci/cli.js +5 -0
  3576. package/dist/ink-runner/node_modules/is-in-ci/index.d.ts +15 -0
  3577. package/dist/ink-runner/node_modules/is-in-ci/index.js +11 -0
  3578. package/dist/ink-runner/node_modules/is-in-ci/license +9 -0
  3579. package/dist/ink-runner/node_modules/is-in-ci/package.json +49 -0
  3580. package/dist/ink-runner/node_modules/is-in-ci/readme.md +44 -0
  3581. package/dist/ink-runner/node_modules/is-unicode-supported/index.d.ts +12 -0
  3582. package/dist/ink-runner/node_modules/is-unicode-supported/index.js +21 -0
  3583. package/dist/ink-runner/node_modules/is-unicode-supported/license +9 -0
  3584. package/dist/ink-runner/node_modules/is-unicode-supported/package.json +47 -0
  3585. package/dist/ink-runner/node_modules/is-unicode-supported/readme.md +35 -0
  3586. package/dist/ink-runner/node_modules/js-tokens/CHANGELOG.md +151 -0
  3587. package/dist/ink-runner/node_modules/js-tokens/LICENSE +21 -0
  3588. package/dist/ink-runner/node_modules/js-tokens/README.md +240 -0
  3589. package/dist/ink-runner/node_modules/js-tokens/index.js +23 -0
  3590. package/dist/ink-runner/node_modules/js-tokens/package.json +30 -0
  3591. package/dist/ink-runner/node_modules/loose-envify/LICENSE +21 -0
  3592. package/dist/ink-runner/node_modules/loose-envify/README.md +45 -0
  3593. package/dist/ink-runner/node_modules/loose-envify/cli.js +16 -0
  3594. package/dist/ink-runner/node_modules/loose-envify/custom.js +4 -0
  3595. package/dist/ink-runner/node_modules/loose-envify/index.js +3 -0
  3596. package/dist/ink-runner/node_modules/loose-envify/loose-envify.js +36 -0
  3597. package/dist/ink-runner/node_modules/loose-envify/package.json +36 -0
  3598. package/dist/ink-runner/node_modules/loose-envify/replace.js +65 -0
  3599. package/dist/ink-runner/node_modules/mimic-fn/index.d.ts +54 -0
  3600. package/dist/ink-runner/node_modules/mimic-fn/index.js +13 -0
  3601. package/dist/ink-runner/node_modules/mimic-fn/license +9 -0
  3602. package/dist/ink-runner/node_modules/mimic-fn/package.json +42 -0
  3603. package/dist/ink-runner/node_modules/mimic-fn/readme.md +69 -0
  3604. package/dist/ink-runner/node_modules/onetime/index.d.ts +64 -0
  3605. package/dist/ink-runner/node_modules/onetime/index.js +44 -0
  3606. package/dist/ink-runner/node_modules/onetime/license +9 -0
  3607. package/dist/ink-runner/node_modules/onetime/package.json +43 -0
  3608. package/dist/ink-runner/node_modules/onetime/readme.md +94 -0
  3609. package/dist/ink-runner/node_modules/patch-console/dist/index.d.ts +4 -0
  3610. package/dist/ink-runner/node_modules/patch-console/dist/index.js +45 -0
  3611. package/dist/ink-runner/node_modules/patch-console/license +9 -0
  3612. package/dist/ink-runner/node_modules/patch-console/package.json +53 -0
  3613. package/dist/ink-runner/node_modules/patch-console/readme.md +62 -0
  3614. package/dist/ink-runner/node_modules/react/LICENSE +21 -0
  3615. package/dist/ink-runner/node_modules/react/README.md +37 -0
  3616. package/dist/ink-runner/node_modules/react/cjs/react-jsx-dev-runtime.development.js +1315 -0
  3617. package/dist/ink-runner/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +10 -0
  3618. package/dist/ink-runner/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +10 -0
  3619. package/dist/ink-runner/node_modules/react/cjs/react-jsx-runtime.development.js +1333 -0
  3620. package/dist/ink-runner/node_modules/react/cjs/react-jsx-runtime.production.min.js +11 -0
  3621. package/dist/ink-runner/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +11 -0
  3622. package/dist/ink-runner/node_modules/react/cjs/react.development.js +2740 -0
  3623. package/dist/ink-runner/node_modules/react/cjs/react.production.min.js +26 -0
  3624. package/dist/ink-runner/node_modules/react/cjs/react.shared-subset.development.js +20 -0
  3625. package/dist/ink-runner/node_modules/react/cjs/react.shared-subset.production.min.js +10 -0
  3626. package/dist/ink-runner/node_modules/react/index.js +7 -0
  3627. package/dist/ink-runner/node_modules/react/jsx-dev-runtime.js +7 -0
  3628. package/dist/ink-runner/node_modules/react/jsx-runtime.js +7 -0
  3629. package/dist/ink-runner/node_modules/react/package.json +47 -0
  3630. package/dist/ink-runner/node_modules/react/react.shared-subset.js +7 -0
  3631. package/dist/ink-runner/node_modules/react/umd/react.development.js +3343 -0
  3632. package/dist/ink-runner/node_modules/react/umd/react.production.min.js +31 -0
  3633. package/dist/ink-runner/node_modules/react/umd/react.profiling.min.js +31 -0
  3634. package/dist/ink-runner/node_modules/react-reconciler/LICENSE +21 -0
  3635. package/dist/ink-runner/node_modules/react-reconciler/README.md +337 -0
  3636. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +45 -0
  3637. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler-constants.production.min.js +10 -0
  3638. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +660 -0
  3639. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.min.js +15 -0
  3640. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler.development.js +21531 -0
  3641. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler.production.min.js +234 -0
  3642. package/dist/ink-runner/node_modules/react-reconciler/cjs/react-reconciler.profiling.min.js +255 -0
  3643. package/dist/ink-runner/node_modules/react-reconciler/constants.js +7 -0
  3644. package/dist/ink-runner/node_modules/react-reconciler/index.js +7 -0
  3645. package/dist/ink-runner/node_modules/react-reconciler/package.json +40 -0
  3646. package/dist/ink-runner/node_modules/react-reconciler/reflection.js +7 -0
  3647. package/dist/ink-runner/node_modules/resolve-pkg-maps/LICENSE +21 -0
  3648. package/dist/ink-runner/node_modules/resolve-pkg-maps/README.md +216 -0
  3649. package/dist/ink-runner/node_modules/resolve-pkg-maps/dist/index.cjs +1 -0
  3650. package/dist/ink-runner/node_modules/resolve-pkg-maps/dist/index.d.cts +11 -0
  3651. package/dist/ink-runner/node_modules/resolve-pkg-maps/dist/index.d.mts +11 -0
  3652. package/dist/ink-runner/node_modules/resolve-pkg-maps/dist/index.mjs +1 -0
  3653. package/dist/ink-runner/node_modules/resolve-pkg-maps/package.json +42 -0
  3654. package/dist/ink-runner/node_modules/restore-cursor/index.d.ts +11 -0
  3655. package/dist/ink-runner/node_modules/restore-cursor/index.js +11 -0
  3656. package/dist/ink-runner/node_modules/restore-cursor/license +9 -0
  3657. package/dist/ink-runner/node_modules/restore-cursor/package.json +55 -0
  3658. package/dist/ink-runner/node_modules/restore-cursor/readme.md +31 -0
  3659. package/dist/ink-runner/node_modules/scheduler/LICENSE +21 -0
  3660. package/dist/ink-runner/node_modules/scheduler/README.md +9 -0
  3661. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +700 -0
  3662. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +20 -0
  3663. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +207 -0
  3664. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +14 -0
  3665. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler.development.js +634 -0
  3666. package/dist/ink-runner/node_modules/scheduler/cjs/scheduler.production.min.js +19 -0
  3667. package/dist/ink-runner/node_modules/scheduler/index.js +7 -0
  3668. package/dist/ink-runner/node_modules/scheduler/package.json +36 -0
  3669. package/dist/ink-runner/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +699 -0
  3670. package/dist/ink-runner/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +19 -0
  3671. package/dist/ink-runner/node_modules/scheduler/umd/scheduler.development.js +152 -0
  3672. package/dist/ink-runner/node_modules/scheduler/umd/scheduler.production.min.js +146 -0
  3673. package/dist/ink-runner/node_modules/scheduler/umd/scheduler.profiling.min.js +146 -0
  3674. package/dist/ink-runner/node_modules/scheduler/unstable_mock.js +7 -0
  3675. package/dist/ink-runner/node_modules/scheduler/unstable_post_task.js +7 -0
  3676. package/dist/ink-runner/node_modules/signal-exit/LICENSE.txt +16 -0
  3677. package/dist/ink-runner/node_modules/signal-exit/README.md +39 -0
  3678. package/dist/ink-runner/node_modules/signal-exit/index.js +202 -0
  3679. package/dist/ink-runner/node_modules/signal-exit/package.json +38 -0
  3680. package/dist/ink-runner/node_modules/signal-exit/signals.js +53 -0
  3681. package/dist/ink-runner/node_modules/slice-ansi/index.d.ts +19 -0
  3682. package/dist/ink-runner/node_modules/slice-ansi/index.js +169 -0
  3683. package/dist/ink-runner/node_modules/slice-ansi/license +10 -0
  3684. package/dist/ink-runner/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.d.ts +17 -0
  3685. package/dist/ink-runner/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.js +12 -0
  3686. package/dist/ink-runner/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +9 -0
  3687. package/dist/ink-runner/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/package.json +53 -0
  3688. package/dist/ink-runner/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/readme.md +31 -0
  3689. package/dist/ink-runner/node_modules/slice-ansi/package.json +58 -0
  3690. package/dist/ink-runner/node_modules/slice-ansi/readme.md +54 -0
  3691. package/dist/ink-runner/node_modules/stack-utils/LICENSE.md +21 -0
  3692. package/dist/ink-runner/node_modules/stack-utils/index.js +344 -0
  3693. package/dist/ink-runner/node_modules/stack-utils/package.json +39 -0
  3694. package/dist/ink-runner/node_modules/stack-utils/readme.md +143 -0
  3695. package/dist/ink-runner/node_modules/string-width/index.d.ts +39 -0
  3696. package/dist/ink-runner/node_modules/string-width/index.js +82 -0
  3697. package/dist/ink-runner/node_modules/string-width/license +9 -0
  3698. package/dist/ink-runner/node_modules/string-width/package.json +64 -0
  3699. package/dist/ink-runner/node_modules/string-width/readme.md +66 -0
  3700. package/dist/ink-runner/node_modules/strip-ansi/index.d.ts +15 -0
  3701. package/dist/ink-runner/node_modules/strip-ansi/index.js +14 -0
  3702. package/dist/ink-runner/node_modules/strip-ansi/license +9 -0
  3703. package/dist/ink-runner/node_modules/strip-ansi/package.json +59 -0
  3704. package/dist/ink-runner/node_modules/strip-ansi/readme.md +37 -0
  3705. package/dist/ink-runner/node_modules/to-rotated/index.d.ts +18 -0
  3706. package/dist/ink-runner/node_modules/to-rotated/index.js +24 -0
  3707. package/dist/ink-runner/node_modules/to-rotated/license +9 -0
  3708. package/dist/ink-runner/node_modules/to-rotated/package.json +46 -0
  3709. package/dist/ink-runner/node_modules/to-rotated/readme.md +29 -0
  3710. package/dist/ink-runner/node_modules/tsx/LICENSE +21 -0
  3711. package/dist/ink-runner/node_modules/tsx/README.md +32 -0
  3712. package/dist/ink-runner/node_modules/tsx/dist/cjs/api/index.cjs +1 -0
  3713. package/dist/ink-runner/node_modules/tsx/dist/cjs/api/index.d.cts +35 -0
  3714. package/dist/ink-runner/node_modules/tsx/dist/cjs/api/index.d.mts +35 -0
  3715. package/dist/ink-runner/node_modules/tsx/dist/cjs/api/index.mjs +1 -0
  3716. package/dist/ink-runner/node_modules/tsx/dist/cjs/index.cjs +1 -0
  3717. package/dist/ink-runner/node_modules/tsx/dist/cjs/index.mjs +1 -0
  3718. package/dist/ink-runner/node_modules/tsx/dist/cli.cjs +54 -0
  3719. package/dist/ink-runner/node_modules/tsx/dist/cli.mjs +55 -0
  3720. package/dist/ink-runner/node_modules/tsx/dist/client-BQVF1NaW.mjs +1 -0
  3721. package/dist/ink-runner/node_modules/tsx/dist/client-D6NvIMSC.cjs +1 -0
  3722. package/dist/ink-runner/node_modules/tsx/dist/esm/api/index.cjs +1 -0
  3723. package/dist/ink-runner/node_modules/tsx/dist/esm/api/index.d.cts +35 -0
  3724. package/dist/ink-runner/node_modules/tsx/dist/esm/api/index.d.mts +35 -0
  3725. package/dist/ink-runner/node_modules/tsx/dist/esm/api/index.mjs +1 -0
  3726. package/dist/ink-runner/node_modules/tsx/dist/esm/index.cjs +2 -0
  3727. package/dist/ink-runner/node_modules/tsx/dist/esm/index.mjs +2 -0
  3728. package/dist/ink-runner/node_modules/tsx/dist/get-pipe-path-BHW2eJdv.mjs +1 -0
  3729. package/dist/ink-runner/node_modules/tsx/dist/get-pipe-path-BoR10qr8.cjs +1 -0
  3730. package/dist/ink-runner/node_modules/tsx/dist/index-7AaEi15b.mjs +14 -0
  3731. package/dist/ink-runner/node_modules/tsx/dist/index-BWFBUo6r.cjs +1 -0
  3732. package/dist/ink-runner/node_modules/tsx/dist/index-gbaejti9.mjs +1 -0
  3733. package/dist/ink-runner/node_modules/tsx/dist/index-gckBtVBf.cjs +14 -0
  3734. package/dist/ink-runner/node_modules/tsx/dist/lexer-DQCqS3nf.mjs +3 -0
  3735. package/dist/ink-runner/node_modules/tsx/dist/lexer-DgIbo0BU.cjs +3 -0
  3736. package/dist/ink-runner/node_modules/tsx/dist/loader.cjs +1 -0
  3737. package/dist/ink-runner/node_modules/tsx/dist/loader.mjs +1 -0
  3738. package/dist/ink-runner/node_modules/tsx/dist/node-features-_8ZFwP_x.mjs +1 -0
  3739. package/dist/ink-runner/node_modules/tsx/dist/node-features-roYmp9jK.cjs +1 -0
  3740. package/dist/ink-runner/node_modules/tsx/dist/package-CeBgXWuR.mjs +1 -0
  3741. package/dist/ink-runner/node_modules/tsx/dist/package-Dxt5kIHw.cjs +1 -0
  3742. package/dist/ink-runner/node_modules/tsx/dist/patch-repl.cjs +1 -0
  3743. package/dist/ink-runner/node_modules/tsx/dist/patch-repl.mjs +1 -0
  3744. package/dist/ink-runner/node_modules/tsx/dist/preflight.cjs +1 -0
  3745. package/dist/ink-runner/node_modules/tsx/dist/preflight.mjs +1 -0
  3746. package/dist/ink-runner/node_modules/tsx/dist/register-2sWVXuRQ.cjs +1 -0
  3747. package/dist/ink-runner/node_modules/tsx/dist/register-B7jrtLTO.mjs +1 -0
  3748. package/dist/ink-runner/node_modules/tsx/dist/register-CFH5oNdT.mjs +4 -0
  3749. package/dist/ink-runner/node_modules/tsx/dist/register-D46fvsV_.cjs +4 -0
  3750. package/dist/ink-runner/node_modules/tsx/dist/repl.cjs +3 -0
  3751. package/dist/ink-runner/node_modules/tsx/dist/repl.mjs +3 -0
  3752. package/dist/ink-runner/node_modules/tsx/dist/require-D4F1Lv60.cjs +1 -0
  3753. package/dist/ink-runner/node_modules/tsx/dist/require-DQxpCAr4.mjs +1 -0
  3754. package/dist/ink-runner/node_modules/tsx/dist/suppress-warnings.cjs +1 -0
  3755. package/dist/ink-runner/node_modules/tsx/dist/suppress-warnings.mjs +1 -0
  3756. package/dist/ink-runner/node_modules/tsx/dist/temporary-directory-B83uKxJF.cjs +1 -0
  3757. package/dist/ink-runner/node_modules/tsx/dist/temporary-directory-CwHp0_NW.mjs +1 -0
  3758. package/dist/ink-runner/node_modules/tsx/dist/types-Cxp8y2TL.d.ts +5 -0
  3759. package/dist/ink-runner/node_modules/tsx/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  3760. package/dist/ink-runner/node_modules/tsx/node_modules/@esbuild/darwin-arm64/bin/esbuild +0 -0
  3761. package/dist/ink-runner/node_modules/tsx/node_modules/@esbuild/darwin-arm64/package.json +20 -0
  3762. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/LICENSE.md +21 -0
  3763. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/README.md +3 -0
  3764. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/bin/esbuild +0 -0
  3765. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/install.js +289 -0
  3766. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/lib/main.d.ts +716 -0
  3767. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/lib/main.js +2242 -0
  3768. package/dist/ink-runner/node_modules/tsx/node_modules/esbuild/package.json +49 -0
  3769. package/dist/ink-runner/node_modules/tsx/package.json +68 -0
  3770. package/dist/ink-runner/node_modules/type-fest/index.d.ts +178 -0
  3771. package/dist/ink-runner/node_modules/type-fest/license-cc0 +121 -0
  3772. package/dist/ink-runner/node_modules/type-fest/license-mit +9 -0
  3773. package/dist/ink-runner/node_modules/type-fest/package.json +91 -0
  3774. package/dist/ink-runner/node_modules/type-fest/readme.md +1060 -0
  3775. package/dist/ink-runner/node_modules/type-fest/source/all-union-fields.d.ts +88 -0
  3776. package/dist/ink-runner/node_modules/type-fest/source/and.d.ts +25 -0
  3777. package/dist/ink-runner/node_modules/type-fest/source/array-indices.d.ts +23 -0
  3778. package/dist/ink-runner/node_modules/type-fest/source/array-slice.d.ts +109 -0
  3779. package/dist/ink-runner/node_modules/type-fest/source/array-splice.d.ts +99 -0
  3780. package/dist/ink-runner/node_modules/type-fest/source/array-tail.d.ts +76 -0
  3781. package/dist/ink-runner/node_modules/type-fest/source/array-values.d.ts +22 -0
  3782. package/dist/ink-runner/node_modules/type-fest/source/arrayable.d.ts +29 -0
  3783. package/dist/ink-runner/node_modules/type-fest/source/async-return-type.d.ts +23 -0
  3784. package/dist/ink-runner/node_modules/type-fest/source/asyncify.d.ts +32 -0
  3785. package/dist/ink-runner/node_modules/type-fest/source/basic.d.ts +68 -0
  3786. package/dist/ink-runner/node_modules/type-fest/source/camel-case.d.ts +89 -0
  3787. package/dist/ink-runner/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +97 -0
  3788. package/dist/ink-runner/node_modules/type-fest/source/camel-cased-properties.d.ts +43 -0
  3789. package/dist/ink-runner/node_modules/type-fest/source/conditional-except.d.ts +45 -0
  3790. package/dist/ink-runner/node_modules/type-fest/source/conditional-keys.d.ts +47 -0
  3791. package/dist/ink-runner/node_modules/type-fest/source/conditional-pick-deep.d.ts +118 -0
  3792. package/dist/ink-runner/node_modules/type-fest/source/conditional-pick.d.ts +44 -0
  3793. package/dist/ink-runner/node_modules/type-fest/source/conditional-simplify.d.ts +32 -0
  3794. package/dist/ink-runner/node_modules/type-fest/source/delimiter-case.d.ts +78 -0
  3795. package/dist/ink-runner/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +106 -0
  3796. package/dist/ink-runner/node_modules/type-fest/source/delimiter-cased-properties.d.ts +46 -0
  3797. package/dist/ink-runner/node_modules/type-fest/source/distributed-omit.d.ts +89 -0
  3798. package/dist/ink-runner/node_modules/type-fest/source/distributed-pick.d.ts +85 -0
  3799. package/dist/ink-runner/node_modules/type-fest/source/empty-object.d.ts +46 -0
  3800. package/dist/ink-runner/node_modules/type-fest/source/enforce-optional.d.ts +47 -0
  3801. package/dist/ink-runner/node_modules/type-fest/source/entries.d.ts +62 -0
  3802. package/dist/ink-runner/node_modules/type-fest/source/entry.d.ts +65 -0
  3803. package/dist/ink-runner/node_modules/type-fest/source/exact.d.ts +68 -0
  3804. package/dist/ink-runner/node_modules/type-fest/source/except.d.ts +108 -0
  3805. package/dist/ink-runner/node_modules/type-fest/source/find-global-type.d.ts +64 -0
  3806. package/dist/ink-runner/node_modules/type-fest/source/fixed-length-array.d.ts +43 -0
  3807. package/dist/ink-runner/node_modules/type-fest/source/get.d.ts +219 -0
  3808. package/dist/ink-runner/node_modules/type-fest/source/global-this.d.ts +21 -0
  3809. package/dist/ink-runner/node_modules/type-fest/source/greater-than-or-equal.d.ts +22 -0
  3810. package/dist/ink-runner/node_modules/type-fest/source/greater-than.d.ts +56 -0
  3811. package/dist/ink-runner/node_modules/type-fest/source/has-optional-keys.d.ts +21 -0
  3812. package/dist/ink-runner/node_modules/type-fest/source/has-readonly-keys.d.ts +21 -0
  3813. package/dist/ink-runner/node_modules/type-fest/source/has-required-keys.d.ts +59 -0
  3814. package/dist/ink-runner/node_modules/type-fest/source/has-writable-keys.d.ts +21 -0
  3815. package/dist/ink-runner/node_modules/type-fest/source/if-any.d.ts +24 -0
  3816. package/dist/ink-runner/node_modules/type-fest/source/if-empty-object.d.ts +26 -0
  3817. package/dist/ink-runner/node_modules/type-fest/source/if-never.d.ts +24 -0
  3818. package/dist/ink-runner/node_modules/type-fest/source/if-null.d.ts +24 -0
  3819. package/dist/ink-runner/node_modules/type-fest/source/if-unknown.d.ts +24 -0
  3820. package/dist/ink-runner/node_modules/type-fest/source/includes.d.ts +22 -0
  3821. package/dist/ink-runner/node_modules/type-fest/source/int-closed-range.d.ts +35 -0
  3822. package/dist/ink-runner/node_modules/type-fest/source/int-range.d.ts +55 -0
  3823. package/dist/ink-runner/node_modules/type-fest/source/internal/array.d.ts +126 -0
  3824. package/dist/ink-runner/node_modules/type-fest/source/internal/characters.d.ts +67 -0
  3825. package/dist/ink-runner/node_modules/type-fest/source/internal/index.d.ts +8 -0
  3826. package/dist/ink-runner/node_modules/type-fest/source/internal/keys.d.ts +97 -0
  3827. package/dist/ink-runner/node_modules/type-fest/source/internal/numeric.d.ts +118 -0
  3828. package/dist/ink-runner/node_modules/type-fest/source/internal/object.d.ts +236 -0
  3829. package/dist/ink-runner/node_modules/type-fest/source/internal/string.d.ts +210 -0
  3830. package/dist/ink-runner/node_modules/type-fest/source/internal/tuple.d.ts +90 -0
  3831. package/dist/ink-runner/node_modules/type-fest/source/internal/type.d.ts +139 -0
  3832. package/dist/ink-runner/node_modules/type-fest/source/invariant-of.d.ts +76 -0
  3833. package/dist/ink-runner/node_modules/type-fest/source/is-any.d.ts +33 -0
  3834. package/dist/ink-runner/node_modules/type-fest/source/is-equal.d.ts +31 -0
  3835. package/dist/ink-runner/node_modules/type-fest/source/is-float.d.ts +41 -0
  3836. package/dist/ink-runner/node_modules/type-fest/source/is-integer.d.ts +58 -0
  3837. package/dist/ink-runner/node_modules/type-fest/source/is-literal.d.ts +296 -0
  3838. package/dist/ink-runner/node_modules/type-fest/source/is-never.d.ts +42 -0
  3839. package/dist/ink-runner/node_modules/type-fest/source/is-null.d.ts +20 -0
  3840. package/dist/ink-runner/node_modules/type-fest/source/is-tuple.d.ts +89 -0
  3841. package/dist/ink-runner/node_modules/type-fest/source/is-unknown.d.ts +52 -0
  3842. package/dist/ink-runner/node_modules/type-fest/source/iterable-element.d.ts +64 -0
  3843. package/dist/ink-runner/node_modules/type-fest/source/join.d.ts +68 -0
  3844. package/dist/ink-runner/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
  3845. package/dist/ink-runner/node_modules/type-fest/source/jsonify.d.ts +122 -0
  3846. package/dist/ink-runner/node_modules/type-fest/source/kebab-case.d.ts +44 -0
  3847. package/dist/ink-runner/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +63 -0
  3848. package/dist/ink-runner/node_modules/type-fest/source/kebab-cased-properties.d.ts +40 -0
  3849. package/dist/ink-runner/node_modules/type-fest/source/keys-of-union.d.ts +42 -0
  3850. package/dist/ink-runner/node_modules/type-fest/source/last-array-element.d.ts +38 -0
  3851. package/dist/ink-runner/node_modules/type-fest/source/less-than-or-equal.d.ts +22 -0
  3852. package/dist/ink-runner/node_modules/type-fest/source/less-than.d.ts +26 -0
  3853. package/dist/ink-runner/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +36 -0
  3854. package/dist/ink-runner/node_modules/type-fest/source/literal-to-primitive.d.ts +36 -0
  3855. package/dist/ink-runner/node_modules/type-fest/source/literal-union.d.ts +37 -0
  3856. package/dist/ink-runner/node_modules/type-fest/source/merge-deep.d.ts +486 -0
  3857. package/dist/ink-runner/node_modules/type-fest/source/merge-exclusive.d.ts +41 -0
  3858. package/dist/ink-runner/node_modules/type-fest/source/merge.d.ts +48 -0
  3859. package/dist/ink-runner/node_modules/type-fest/source/multidimensional-array.d.ts +44 -0
  3860. package/dist/ink-runner/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +48 -0
  3861. package/dist/ink-runner/node_modules/type-fest/source/non-empty-object.d.ts +35 -0
  3862. package/dist/ink-runner/node_modules/type-fest/source/non-empty-string.d.ts +28 -0
  3863. package/dist/ink-runner/node_modules/type-fest/source/non-empty-tuple.d.ts +21 -0
  3864. package/dist/ink-runner/node_modules/type-fest/source/numeric.d.ts +222 -0
  3865. package/dist/ink-runner/node_modules/type-fest/source/observable-like.d.ts +63 -0
  3866. package/dist/ink-runner/node_modules/type-fest/source/omit-deep.d.ts +167 -0
  3867. package/dist/ink-runner/node_modules/type-fest/source/omit-index-signature.d.ts +95 -0
  3868. package/dist/ink-runner/node_modules/type-fest/source/opaque.d.ts +1 -0
  3869. package/dist/ink-runner/node_modules/type-fest/source/optional-keys-of.d.ts +39 -0
  3870. package/dist/ink-runner/node_modules/type-fest/source/or.d.ts +25 -0
  3871. package/dist/ink-runner/node_modules/type-fest/source/override-properties.d.ts +36 -0
  3872. package/dist/ink-runner/node_modules/type-fest/source/package-json.d.ts +676 -0
  3873. package/dist/ink-runner/node_modules/type-fest/source/partial-deep.d.ts +151 -0
  3874. package/dist/ink-runner/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +78 -0
  3875. package/dist/ink-runner/node_modules/type-fest/source/pascal-case.d.ts +42 -0
  3876. package/dist/ink-runner/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +62 -0
  3877. package/dist/ink-runner/node_modules/type-fest/source/pascal-cased-properties.d.ts +36 -0
  3878. package/dist/ink-runner/node_modules/type-fest/source/paths.d.ts +262 -0
  3879. package/dist/ink-runner/node_modules/type-fest/source/pick-deep.d.ts +149 -0
  3880. package/dist/ink-runner/node_modules/type-fest/source/pick-index-signature.d.ts +50 -0
  3881. package/dist/ink-runner/node_modules/type-fest/source/primitive.d.ts +13 -0
  3882. package/dist/ink-runner/node_modules/type-fest/source/promisable.d.ts +25 -0
  3883. package/dist/ink-runner/node_modules/type-fest/source/readonly-deep.d.ts +81 -0
  3884. package/dist/ink-runner/node_modules/type-fest/source/readonly-keys-of.d.ts +30 -0
  3885. package/dist/ink-runner/node_modules/type-fest/source/readonly-tuple.d.ts +41 -0
  3886. package/dist/ink-runner/node_modules/type-fest/source/replace.d.ts +85 -0
  3887. package/dist/ink-runner/node_modules/type-fest/source/require-all-or-none.d.ts +51 -0
  3888. package/dist/ink-runner/node_modules/type-fest/source/require-at-least-one.d.ts +47 -0
  3889. package/dist/ink-runner/node_modules/type-fest/source/require-exactly-one.d.ts +45 -0
  3890. package/dist/ink-runner/node_modules/type-fest/source/require-one-or-none.d.ts +46 -0
  3891. package/dist/ink-runner/node_modules/type-fest/source/required-deep.d.ts +78 -0
  3892. package/dist/ink-runner/node_modules/type-fest/source/required-keys-of.d.ts +30 -0
  3893. package/dist/ink-runner/node_modules/type-fest/source/schema.d.ts +114 -0
  3894. package/dist/ink-runner/node_modules/type-fest/source/screaming-snake-case.d.ts +28 -0
  3895. package/dist/ink-runner/node_modules/type-fest/source/set-field-type.d.ts +65 -0
  3896. package/dist/ink-runner/node_modules/type-fest/source/set-non-nullable-deep.d.ts +83 -0
  3897. package/dist/ink-runner/node_modules/type-fest/source/set-non-nullable.d.ts +39 -0
  3898. package/dist/ink-runner/node_modules/type-fest/source/set-optional.d.ts +38 -0
  3899. package/dist/ink-runner/node_modules/type-fest/source/set-parameter-type.d.ts +117 -0
  3900. package/dist/ink-runner/node_modules/type-fest/source/set-readonly.d.ts +39 -0
  3901. package/dist/ink-runner/node_modules/type-fest/source/set-required-deep.d.ts +68 -0
  3902. package/dist/ink-runner/node_modules/type-fest/source/set-required.d.ts +70 -0
  3903. package/dist/ink-runner/node_modules/type-fest/source/set-return-type.d.ts +29 -0
  3904. package/dist/ink-runner/node_modules/type-fest/source/shared-union-fields-deep.d.ts +178 -0
  3905. package/dist/ink-runner/node_modules/type-fest/source/shared-union-fields.d.ts +76 -0
  3906. package/dist/ink-runner/node_modules/type-fest/source/simplify-deep.d.ts +115 -0
  3907. package/dist/ink-runner/node_modules/type-fest/source/simplify.d.ts +58 -0
  3908. package/dist/ink-runner/node_modules/type-fest/source/single-key-object.d.ts +29 -0
  3909. package/dist/ink-runner/node_modules/type-fest/source/snake-case.d.ts +45 -0
  3910. package/dist/ink-runner/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +63 -0
  3911. package/dist/ink-runner/node_modules/type-fest/source/snake-cased-properties.d.ts +40 -0
  3912. package/dist/ink-runner/node_modules/type-fest/source/split.d.ts +88 -0
  3913. package/dist/ink-runner/node_modules/type-fest/source/spread.d.ts +84 -0
  3914. package/dist/ink-runner/node_modules/type-fest/source/string-key-of.d.ts +25 -0
  3915. package/dist/ink-runner/node_modules/type-fest/source/string-repeat.d.ts +47 -0
  3916. package/dist/ink-runner/node_modules/type-fest/source/string-slice.d.ts +37 -0
  3917. package/dist/ink-runner/node_modules/type-fest/source/stringified.d.ts +23 -0
  3918. package/dist/ink-runner/node_modules/type-fest/source/structured-cloneable.d.ts +92 -0
  3919. package/dist/ink-runner/node_modules/type-fest/source/subtract.d.ts +83 -0
  3920. package/dist/ink-runner/node_modules/type-fest/source/sum.d.ts +78 -0
  3921. package/dist/ink-runner/node_modules/type-fest/source/tagged-union.d.ts +51 -0
  3922. package/dist/ink-runner/node_modules/type-fest/source/tagged.d.ts +256 -0
  3923. package/dist/ink-runner/node_modules/type-fest/source/trim.d.ts +27 -0
  3924. package/dist/ink-runner/node_modules/type-fest/source/tsconfig-json.d.ts +1294 -0
  3925. package/dist/ink-runner/node_modules/type-fest/source/tuple-to-object.d.ts +42 -0
  3926. package/dist/ink-runner/node_modules/type-fest/source/tuple-to-union.d.ts +51 -0
  3927. package/dist/ink-runner/node_modules/type-fest/source/typed-array.d.ts +17 -0
  3928. package/dist/ink-runner/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +80 -0
  3929. package/dist/ink-runner/node_modules/type-fest/source/union-to-intersection.d.ts +61 -0
  3930. package/dist/ink-runner/node_modules/type-fest/source/union-to-tuple.d.ts +56 -0
  3931. package/dist/ink-runner/node_modules/type-fest/source/unknown-array.d.ts +25 -0
  3932. package/dist/ink-runner/node_modules/type-fest/source/unknown-map.d.ts +24 -0
  3933. package/dist/ink-runner/node_modules/type-fest/source/unknown-record.d.ts +31 -0
  3934. package/dist/ink-runner/node_modules/type-fest/source/unknown-set.d.ts +24 -0
  3935. package/dist/ink-runner/node_modules/type-fest/source/value-of.d.ts +42 -0
  3936. package/dist/ink-runner/node_modules/type-fest/source/words.d.ts +118 -0
  3937. package/dist/ink-runner/node_modules/type-fest/source/writable-deep.d.ts +83 -0
  3938. package/dist/ink-runner/node_modules/type-fest/source/writable-keys-of.d.ts +33 -0
  3939. package/dist/ink-runner/node_modules/type-fest/source/writable.d.ts +68 -0
  3940. package/dist/ink-runner/node_modules/widest-line/index.d.ts +12 -0
  3941. package/dist/ink-runner/node_modules/widest-line/index.js +11 -0
  3942. package/dist/ink-runner/node_modules/widest-line/license +9 -0
  3943. package/dist/ink-runner/node_modules/widest-line/package.json +60 -0
  3944. package/dist/ink-runner/node_modules/widest-line/readme.md +26 -0
  3945. package/dist/ink-runner/node_modules/wrap-ansi/index.d.ts +41 -0
  3946. package/dist/ink-runner/node_modules/wrap-ansi/index.js +222 -0
  3947. package/dist/ink-runner/node_modules/wrap-ansi/license +9 -0
  3948. package/dist/ink-runner/node_modules/wrap-ansi/package.json +69 -0
  3949. package/dist/ink-runner/node_modules/wrap-ansi/readme.md +75 -0
  3950. package/dist/ink-runner/node_modules/ws/LICENSE +20 -0
  3951. package/dist/ink-runner/node_modules/ws/README.md +548 -0
  3952. package/dist/ink-runner/node_modules/ws/browser.js +8 -0
  3953. package/dist/ink-runner/node_modules/ws/index.js +13 -0
  3954. package/dist/ink-runner/node_modules/ws/lib/buffer-util.js +131 -0
  3955. package/dist/ink-runner/node_modules/ws/lib/constants.js +19 -0
  3956. package/dist/ink-runner/node_modules/ws/lib/event-target.js +292 -0
  3957. package/dist/ink-runner/node_modules/ws/lib/extension.js +203 -0
  3958. package/dist/ink-runner/node_modules/ws/lib/limiter.js +55 -0
  3959. package/dist/ink-runner/node_modules/ws/lib/permessage-deflate.js +528 -0
  3960. package/dist/ink-runner/node_modules/ws/lib/receiver.js +706 -0
  3961. package/dist/ink-runner/node_modules/ws/lib/sender.js +602 -0
  3962. package/dist/ink-runner/node_modules/ws/lib/stream.js +161 -0
  3963. package/dist/ink-runner/node_modules/ws/lib/subprotocol.js +62 -0
  3964. package/dist/ink-runner/node_modules/ws/lib/validation.js +152 -0
  3965. package/dist/ink-runner/node_modules/ws/lib/websocket-server.js +554 -0
  3966. package/dist/ink-runner/node_modules/ws/lib/websocket.js +1393 -0
  3967. package/dist/ink-runner/node_modules/ws/package.json +69 -0
  3968. package/dist/ink-runner/node_modules/ws/wrapper.mjs +8 -0
  3969. package/dist/ink-runner/node_modules/yoga-layout/README.md +40 -0
  3970. package/dist/ink-runner/node_modules/yoga-layout/dist/binaries/yoga-wasm-base64-esm.js +75 -0
  3971. package/dist/ink-runner/node_modules/yoga-layout/dist/src/generated/YGEnums.d.ts +189 -0
  3972. package/dist/ink-runner/node_modules/yoga-layout/dist/src/generated/YGEnums.js +211 -0
  3973. package/dist/ink-runner/node_modules/yoga-layout/dist/src/index.d.ts +12 -0
  3974. package/dist/ink-runner/node_modules/yoga-layout/dist/src/index.js +16 -0
  3975. package/dist/ink-runner/node_modules/yoga-layout/dist/src/load.d.ts +11 -0
  3976. package/dist/ink-runner/node_modules/yoga-layout/dist/src/load.js +17 -0
  3977. package/dist/ink-runner/node_modules/yoga-layout/dist/src/wrapAssembly.d.ts +155 -0
  3978. package/dist/ink-runner/node_modules/yoga-layout/dist/src/wrapAssembly.js +125 -0
  3979. package/dist/ink-runner/node_modules/yoga-layout/package.json +53 -0
  3980. package/dist/ink-runner/node_modules/yoga-layout/src/Config.cpp +54 -0
  3981. package/dist/ink-runner/node_modules/yoga-layout/src/Config.h +44 -0
  3982. package/dist/ink-runner/node_modules/yoga-layout/src/Layout.h +19 -0
  3983. package/dist/ink-runner/node_modules/yoga-layout/src/Node.cpp +507 -0
  3984. package/dist/ink-runner/node_modules/yoga-layout/src/Node.h +239 -0
  3985. package/dist/ink-runner/node_modules/yoga-layout/src/Size.h +17 -0
  3986. package/dist/ink-runner/node_modules/yoga-layout/src/Value.h +23 -0
  3987. package/dist/ink-runner/node_modules/yoga-layout/src/embind.cpp +207 -0
  3988. package/dist/ink-runner/node_modules/yoga-layout/src/generated/YGEnums.ts +210 -0
  3989. package/dist/ink-runner/node_modules/yoga-layout/src/index.ts +23 -0
  3990. package/dist/ink-runner/node_modules/yoga-layout/src/load.ts +25 -0
  3991. package/dist/ink-runner/node_modules/yoga-layout/src/wrapAssembly.ts +336 -0
  3992. package/dist/ink-runner/node_modules/zod/LICENSE +21 -0
  3993. package/dist/ink-runner/node_modules/zod/README.md +208 -0
  3994. package/dist/ink-runner/node_modules/zod/index.cjs +33 -0
  3995. package/dist/ink-runner/node_modules/zod/index.d.cts +4 -0
  3996. package/dist/ink-runner/node_modules/zod/index.d.ts +4 -0
  3997. package/dist/ink-runner/node_modules/zod/index.js +4 -0
  3998. package/dist/ink-runner/node_modules/zod/locales/index.cjs +17 -0
  3999. package/dist/ink-runner/node_modules/zod/locales/index.d.cts +1 -0
  4000. package/dist/ink-runner/node_modules/zod/locales/index.d.ts +1 -0
  4001. package/dist/ink-runner/node_modules/zod/locales/index.js +1 -0
  4002. package/dist/ink-runner/node_modules/zod/locales/package.json +6 -0
  4003. package/dist/ink-runner/node_modules/zod/mini/index.cjs +17 -0
  4004. package/dist/ink-runner/node_modules/zod/mini/index.d.cts +1 -0
  4005. package/dist/ink-runner/node_modules/zod/mini/index.d.ts +1 -0
  4006. package/dist/ink-runner/node_modules/zod/mini/index.js +1 -0
  4007. package/dist/ink-runner/node_modules/zod/mini/package.json +6 -0
  4008. package/dist/ink-runner/node_modules/zod/package.json +135 -0
  4009. package/dist/ink-runner/node_modules/zod/src/index.ts +4 -0
  4010. package/dist/ink-runner/node_modules/zod/src/locales/index.ts +1 -0
  4011. package/dist/ink-runner/node_modules/zod/src/mini/index.ts +1 -0
  4012. package/dist/ink-runner/node_modules/zod/src/v3/ZodError.ts +330 -0
  4013. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  4014. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  4015. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  4016. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  4017. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  4018. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  4019. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  4020. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  4021. package/dist/ink-runner/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  4022. package/dist/ink-runner/node_modules/zod/src/v3/errors.ts +13 -0
  4023. package/dist/ink-runner/node_modules/zod/src/v3/external.ts +6 -0
  4024. package/dist/ink-runner/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  4025. package/dist/ink-runner/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  4026. package/dist/ink-runner/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  4027. package/dist/ink-runner/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  4028. package/dist/ink-runner/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  4029. package/dist/ink-runner/node_modules/zod/src/v3/helpers/util.ts +224 -0
  4030. package/dist/ink-runner/node_modules/zod/src/v3/index.ts +4 -0
  4031. package/dist/ink-runner/node_modules/zod/src/v3/locales/en.ts +124 -0
  4032. package/dist/ink-runner/node_modules/zod/src/v3/standard-schema.ts +113 -0
  4033. package/dist/ink-runner/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  4034. package/dist/ink-runner/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  4035. package/dist/ink-runner/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  4036. package/dist/ink-runner/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  4037. package/dist/ink-runner/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  4038. package/dist/ink-runner/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  4039. package/dist/ink-runner/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  4040. package/dist/ink-runner/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  4041. package/dist/ink-runner/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  4042. package/dist/ink-runner/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  4043. package/dist/ink-runner/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  4044. package/dist/ink-runner/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
  4045. package/dist/ink-runner/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  4046. package/dist/ink-runner/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  4047. package/dist/ink-runner/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  4048. package/dist/ink-runner/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  4049. package/dist/ink-runner/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  4050. package/dist/ink-runner/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  4051. package/dist/ink-runner/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  4052. package/dist/ink-runner/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  4053. package/dist/ink-runner/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  4054. package/dist/ink-runner/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  4055. package/dist/ink-runner/node_modules/zod/src/v3/tests/function.test.ts +261 -0
  4056. package/dist/ink-runner/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  4057. package/dist/ink-runner/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  4058. package/dist/ink-runner/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  4059. package/dist/ink-runner/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  4060. package/dist/ink-runner/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  4061. package/dist/ink-runner/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  4062. package/dist/ink-runner/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  4063. package/dist/ink-runner/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  4064. package/dist/ink-runner/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  4065. package/dist/ink-runner/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
  4066. package/dist/ink-runner/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  4067. package/dist/ink-runner/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  4068. package/dist/ink-runner/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  4069. package/dist/ink-runner/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  4070. package/dist/ink-runner/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  4071. package/dist/ink-runner/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  4072. package/dist/ink-runner/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  4073. package/dist/ink-runner/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  4074. package/dist/ink-runner/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  4075. package/dist/ink-runner/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  4076. package/dist/ink-runner/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  4077. package/dist/ink-runner/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  4078. package/dist/ink-runner/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  4079. package/dist/ink-runner/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  4080. package/dist/ink-runner/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  4081. package/dist/ink-runner/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  4082. package/dist/ink-runner/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  4083. package/dist/ink-runner/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  4084. package/dist/ink-runner/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  4085. package/dist/ink-runner/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  4086. package/dist/ink-runner/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  4087. package/dist/ink-runner/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  4088. package/dist/ink-runner/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  4089. package/dist/ink-runner/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  4090. package/dist/ink-runner/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  4091. package/dist/ink-runner/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  4092. package/dist/ink-runner/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  4093. package/dist/ink-runner/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  4094. package/dist/ink-runner/node_modules/zod/src/v3/types.ts +5138 -0
  4095. package/dist/ink-runner/node_modules/zod/src/v4/classic/checks.ts +32 -0
  4096. package/dist/ink-runner/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  4097. package/dist/ink-runner/node_modules/zod/src/v4/classic/compat.ts +70 -0
  4098. package/dist/ink-runner/node_modules/zod/src/v4/classic/errors.ts +82 -0
  4099. package/dist/ink-runner/node_modules/zod/src/v4/classic/external.ts +51 -0
  4100. package/dist/ink-runner/node_modules/zod/src/v4/classic/from-json-schema.ts +643 -0
  4101. package/dist/ink-runner/node_modules/zod/src/v4/classic/index.ts +5 -0
  4102. package/dist/ink-runner/node_modules/zod/src/v4/classic/iso.ts +90 -0
  4103. package/dist/ink-runner/node_modules/zod/src/v4/classic/parse.ts +82 -0
  4104. package/dist/ink-runner/node_modules/zod/src/v4/classic/schemas.ts +2409 -0
  4105. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  4106. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
  4107. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  4108. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  4109. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  4110. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  4111. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  4112. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  4113. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
  4114. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/catch.test.ts +276 -0
  4115. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  4116. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
  4117. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
  4118. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  4119. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
  4120. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  4121. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
  4122. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
  4123. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/default.test.ts +365 -0
  4124. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
  4125. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  4126. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +661 -0
  4127. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  4128. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +595 -0
  4129. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  4130. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
  4131. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
  4132. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
  4133. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +734 -0
  4134. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
  4135. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  4136. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
  4137. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
  4138. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
  4139. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
  4140. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
  4141. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  4142. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
  4143. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
  4144. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  4145. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  4146. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
  4147. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  4148. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/number.test.ts +270 -0
  4149. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/object.test.ts +640 -0
  4150. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/optional.test.ts +223 -0
  4151. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/partial.test.ts +427 -0
  4152. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
  4153. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
  4154. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
  4155. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +282 -0
  4156. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  4157. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  4158. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  4159. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  4160. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/record.test.ts +600 -0
  4161. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +582 -0
  4162. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/refine.test.ts +570 -0
  4163. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
  4164. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
  4165. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
  4166. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
  4167. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/string.test.ts +1175 -0
  4168. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
  4169. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
  4170. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
  4171. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2975 -0
  4172. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/transform.test.ts +361 -0
  4173. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/tuple.test.ts +183 -0
  4174. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/union.test.ts +219 -0
  4175. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
  4176. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  4177. package/dist/ink-runner/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  4178. package/dist/ink-runner/node_modules/zod/src/v4/core/api.ts +1798 -0
  4179. package/dist/ink-runner/node_modules/zod/src/v4/core/checks.ts +1293 -0
  4180. package/dist/ink-runner/node_modules/zod/src/v4/core/config.ts +15 -0
  4181. package/dist/ink-runner/node_modules/zod/src/v4/core/core.ts +138 -0
  4182. package/dist/ink-runner/node_modules/zod/src/v4/core/doc.ts +44 -0
  4183. package/dist/ink-runner/node_modules/zod/src/v4/core/errors.ts +448 -0
  4184. package/dist/ink-runner/node_modules/zod/src/v4/core/index.ts +16 -0
  4185. package/dist/ink-runner/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
  4186. package/dist/ink-runner/node_modules/zod/src/v4/core/json-schema-processors.ts +667 -0
  4187. package/dist/ink-runner/node_modules/zod/src/v4/core/json-schema.ts +147 -0
  4188. package/dist/ink-runner/node_modules/zod/src/v4/core/parse.ts +195 -0
  4189. package/dist/ink-runner/node_modules/zod/src/v4/core/regexes.ts +183 -0
  4190. package/dist/ink-runner/node_modules/zod/src/v4/core/registries.ts +105 -0
  4191. package/dist/ink-runner/node_modules/zod/src/v4/core/schemas.ts +4543 -0
  4192. package/dist/ink-runner/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
  4193. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
  4194. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  4195. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  4196. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  4197. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
  4198. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
  4199. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
  4200. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  4201. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  4202. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +83 -0
  4203. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +67 -0
  4204. package/dist/ink-runner/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
  4205. package/dist/ink-runner/node_modules/zod/src/v4/core/to-json-schema.ts +613 -0
  4206. package/dist/ink-runner/node_modules/zod/src/v4/core/util.ts +966 -0
  4207. package/dist/ink-runner/node_modules/zod/src/v4/core/versions.ts +5 -0
  4208. package/dist/ink-runner/node_modules/zod/src/v4/core/zsf.ts +323 -0
  4209. package/dist/ink-runner/node_modules/zod/src/v4/index.ts +4 -0
  4210. package/dist/ink-runner/node_modules/zod/src/v4/locales/ar.ts +115 -0
  4211. package/dist/ink-runner/node_modules/zod/src/v4/locales/az.ts +111 -0
  4212. package/dist/ink-runner/node_modules/zod/src/v4/locales/be.ts +176 -0
  4213. package/dist/ink-runner/node_modules/zod/src/v4/locales/bg.ts +128 -0
  4214. package/dist/ink-runner/node_modules/zod/src/v4/locales/ca.ts +116 -0
  4215. package/dist/ink-runner/node_modules/zod/src/v4/locales/cs.ts +118 -0
  4216. package/dist/ink-runner/node_modules/zod/src/v4/locales/da.ts +123 -0
  4217. package/dist/ink-runner/node_modules/zod/src/v4/locales/de.ts +116 -0
  4218. package/dist/ink-runner/node_modules/zod/src/v4/locales/en.ts +119 -0
  4219. package/dist/ink-runner/node_modules/zod/src/v4/locales/eo.ts +118 -0
  4220. package/dist/ink-runner/node_modules/zod/src/v4/locales/es.ts +141 -0
  4221. package/dist/ink-runner/node_modules/zod/src/v4/locales/fa.ts +126 -0
  4222. package/dist/ink-runner/node_modules/zod/src/v4/locales/fi.ts +121 -0
  4223. package/dist/ink-runner/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
  4224. package/dist/ink-runner/node_modules/zod/src/v4/locales/fr.ts +116 -0
  4225. package/dist/ink-runner/node_modules/zod/src/v4/locales/he.ts +246 -0
  4226. package/dist/ink-runner/node_modules/zod/src/v4/locales/hu.ts +117 -0
  4227. package/dist/ink-runner/node_modules/zod/src/v4/locales/hy.ts +164 -0
  4228. package/dist/ink-runner/node_modules/zod/src/v4/locales/id.ts +115 -0
  4229. package/dist/ink-runner/node_modules/zod/src/v4/locales/index.ts +49 -0
  4230. package/dist/ink-runner/node_modules/zod/src/v4/locales/is.ts +119 -0
  4231. package/dist/ink-runner/node_modules/zod/src/v4/locales/it.ts +116 -0
  4232. package/dist/ink-runner/node_modules/zod/src/v4/locales/ja.ts +114 -0
  4233. package/dist/ink-runner/node_modules/zod/src/v4/locales/ka.ts +123 -0
  4234. package/dist/ink-runner/node_modules/zod/src/v4/locales/kh.ts +7 -0
  4235. package/dist/ink-runner/node_modules/zod/src/v4/locales/km.ts +119 -0
  4236. package/dist/ink-runner/node_modules/zod/src/v4/locales/ko.ts +121 -0
  4237. package/dist/ink-runner/node_modules/zod/src/v4/locales/lt.ts +239 -0
  4238. package/dist/ink-runner/node_modules/zod/src/v4/locales/mk.ts +118 -0
  4239. package/dist/ink-runner/node_modules/zod/src/v4/locales/ms.ts +115 -0
  4240. package/dist/ink-runner/node_modules/zod/src/v4/locales/nl.ts +121 -0
  4241. package/dist/ink-runner/node_modules/zod/src/v4/locales/no.ts +116 -0
  4242. package/dist/ink-runner/node_modules/zod/src/v4/locales/ota.ts +117 -0
  4243. package/dist/ink-runner/node_modules/zod/src/v4/locales/pl.ts +118 -0
  4244. package/dist/ink-runner/node_modules/zod/src/v4/locales/ps.ts +126 -0
  4245. package/dist/ink-runner/node_modules/zod/src/v4/locales/pt.ts +116 -0
  4246. package/dist/ink-runner/node_modules/zod/src/v4/locales/ru.ts +176 -0
  4247. package/dist/ink-runner/node_modules/zod/src/v4/locales/sl.ts +118 -0
  4248. package/dist/ink-runner/node_modules/zod/src/v4/locales/sv.ts +119 -0
  4249. package/dist/ink-runner/node_modules/zod/src/v4/locales/ta.ts +118 -0
  4250. package/dist/ink-runner/node_modules/zod/src/v4/locales/th.ts +119 -0
  4251. package/dist/ink-runner/node_modules/zod/src/v4/locales/tr.ts +111 -0
  4252. package/dist/ink-runner/node_modules/zod/src/v4/locales/ua.ts +7 -0
  4253. package/dist/ink-runner/node_modules/zod/src/v4/locales/uk.ts +117 -0
  4254. package/dist/ink-runner/node_modules/zod/src/v4/locales/ur.ts +119 -0
  4255. package/dist/ink-runner/node_modules/zod/src/v4/locales/uz.ts +116 -0
  4256. package/dist/ink-runner/node_modules/zod/src/v4/locales/vi.ts +117 -0
  4257. package/dist/ink-runner/node_modules/zod/src/v4/locales/yo.ts +124 -0
  4258. package/dist/ink-runner/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
  4259. package/dist/ink-runner/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
  4260. package/dist/ink-runner/node_modules/zod/src/v4/mini/checks.ts +32 -0
  4261. package/dist/ink-runner/node_modules/zod/src/v4/mini/coerce.ts +27 -0
  4262. package/dist/ink-runner/node_modules/zod/src/v4/mini/external.ts +40 -0
  4263. package/dist/ink-runner/node_modules/zod/src/v4/mini/index.ts +3 -0
  4264. package/dist/ink-runner/node_modules/zod/src/v4/mini/iso.ts +66 -0
  4265. package/dist/ink-runner/node_modules/zod/src/v4/mini/parse.ts +14 -0
  4266. package/dist/ink-runner/node_modules/zod/src/v4/mini/schemas.ts +1916 -0
  4267. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
  4268. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  4269. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
  4270. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  4271. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/codec.test.ts +529 -0
  4272. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  4273. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  4274. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
  4275. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/index.test.ts +963 -0
  4276. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  4277. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
  4278. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  4279. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  4280. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
  4281. package/dist/ink-runner/node_modules/zod/src/v4/mini/tests/string.test.ts +347 -0
  4282. package/dist/ink-runner/node_modules/zod/src/v4-mini/index.ts +1 -0
  4283. package/dist/ink-runner/node_modules/zod/v3/ZodError.cjs +138 -0
  4284. package/dist/ink-runner/node_modules/zod/v3/ZodError.d.cts +164 -0
  4285. package/dist/ink-runner/node_modules/zod/v3/ZodError.d.ts +164 -0
  4286. package/dist/ink-runner/node_modules/zod/v3/ZodError.js +133 -0
  4287. package/dist/ink-runner/node_modules/zod/v3/errors.cjs +17 -0
  4288. package/dist/ink-runner/node_modules/zod/v3/errors.d.cts +5 -0
  4289. package/dist/ink-runner/node_modules/zod/v3/errors.d.ts +5 -0
  4290. package/dist/ink-runner/node_modules/zod/v3/errors.js +9 -0
  4291. package/dist/ink-runner/node_modules/zod/v3/external.cjs +22 -0
  4292. package/dist/ink-runner/node_modules/zod/v3/external.d.cts +6 -0
  4293. package/dist/ink-runner/node_modules/zod/v3/external.d.ts +6 -0
  4294. package/dist/ink-runner/node_modules/zod/v3/external.js +6 -0
  4295. package/dist/ink-runner/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  4296. package/dist/ink-runner/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  4297. package/dist/ink-runner/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  4298. package/dist/ink-runner/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  4299. package/dist/ink-runner/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  4300. package/dist/ink-runner/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  4301. package/dist/ink-runner/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  4302. package/dist/ink-runner/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  4303. package/dist/ink-runner/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  4304. package/dist/ink-runner/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  4305. package/dist/ink-runner/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  4306. package/dist/ink-runner/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  4307. package/dist/ink-runner/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  4308. package/dist/ink-runner/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  4309. package/dist/ink-runner/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  4310. package/dist/ink-runner/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  4311. package/dist/ink-runner/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  4312. package/dist/ink-runner/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  4313. package/dist/ink-runner/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  4314. package/dist/ink-runner/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  4315. package/dist/ink-runner/node_modules/zod/v3/helpers/util.cjs +137 -0
  4316. package/dist/ink-runner/node_modules/zod/v3/helpers/util.d.cts +85 -0
  4317. package/dist/ink-runner/node_modules/zod/v3/helpers/util.d.ts +85 -0
  4318. package/dist/ink-runner/node_modules/zod/v3/helpers/util.js +133 -0
  4319. package/dist/ink-runner/node_modules/zod/v3/index.cjs +33 -0
  4320. package/dist/ink-runner/node_modules/zod/v3/index.d.cts +4 -0
  4321. package/dist/ink-runner/node_modules/zod/v3/index.d.ts +4 -0
  4322. package/dist/ink-runner/node_modules/zod/v3/index.js +4 -0
  4323. package/dist/ink-runner/node_modules/zod/v3/locales/en.cjs +112 -0
  4324. package/dist/ink-runner/node_modules/zod/v3/locales/en.d.cts +3 -0
  4325. package/dist/ink-runner/node_modules/zod/v3/locales/en.d.ts +3 -0
  4326. package/dist/ink-runner/node_modules/zod/v3/locales/en.js +109 -0
  4327. package/dist/ink-runner/node_modules/zod/v3/package.json +6 -0
  4328. package/dist/ink-runner/node_modules/zod/v3/standard-schema.cjs +2 -0
  4329. package/dist/ink-runner/node_modules/zod/v3/standard-schema.d.cts +102 -0
  4330. package/dist/ink-runner/node_modules/zod/v3/standard-schema.d.ts +102 -0
  4331. package/dist/ink-runner/node_modules/zod/v3/standard-schema.js +1 -0
  4332. package/dist/ink-runner/node_modules/zod/v3/types.cjs +3777 -0
  4333. package/dist/ink-runner/node_modules/zod/v3/types.d.cts +1034 -0
  4334. package/dist/ink-runner/node_modules/zod/v3/types.d.ts +1034 -0
  4335. package/dist/ink-runner/node_modules/zod/v3/types.js +3695 -0
  4336. package/dist/ink-runner/node_modules/zod/v4/classic/checks.cjs +33 -0
  4337. package/dist/ink-runner/node_modules/zod/v4/classic/checks.d.cts +1 -0
  4338. package/dist/ink-runner/node_modules/zod/v4/classic/checks.d.ts +1 -0
  4339. package/dist/ink-runner/node_modules/zod/v4/classic/checks.js +1 -0
  4340. package/dist/ink-runner/node_modules/zod/v4/classic/coerce.cjs +47 -0
  4341. package/dist/ink-runner/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  4342. package/dist/ink-runner/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  4343. package/dist/ink-runner/node_modules/zod/v4/classic/coerce.js +17 -0
  4344. package/dist/ink-runner/node_modules/zod/v4/classic/compat.cjs +61 -0
  4345. package/dist/ink-runner/node_modules/zod/v4/classic/compat.d.cts +50 -0
  4346. package/dist/ink-runner/node_modules/zod/v4/classic/compat.d.ts +50 -0
  4347. package/dist/ink-runner/node_modules/zod/v4/classic/compat.js +31 -0
  4348. package/dist/ink-runner/node_modules/zod/v4/classic/errors.cjs +74 -0
  4349. package/dist/ink-runner/node_modules/zod/v4/classic/errors.d.cts +30 -0
  4350. package/dist/ink-runner/node_modules/zod/v4/classic/errors.d.ts +30 -0
  4351. package/dist/ink-runner/node_modules/zod/v4/classic/errors.js +48 -0
  4352. package/dist/ink-runner/node_modules/zod/v4/classic/external.cjs +73 -0
  4353. package/dist/ink-runner/node_modules/zod/v4/classic/external.d.cts +15 -0
  4354. package/dist/ink-runner/node_modules/zod/v4/classic/external.d.ts +15 -0
  4355. package/dist/ink-runner/node_modules/zod/v4/classic/external.js +20 -0
  4356. package/dist/ink-runner/node_modules/zod/v4/classic/from-json-schema.cjs +610 -0
  4357. package/dist/ink-runner/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
  4358. package/dist/ink-runner/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
  4359. package/dist/ink-runner/node_modules/zod/v4/classic/from-json-schema.js +584 -0
  4360. package/dist/ink-runner/node_modules/zod/v4/classic/index.cjs +33 -0
  4361. package/dist/ink-runner/node_modules/zod/v4/classic/index.d.cts +4 -0
  4362. package/dist/ink-runner/node_modules/zod/v4/classic/index.d.ts +4 -0
  4363. package/dist/ink-runner/node_modules/zod/v4/classic/index.js +4 -0
  4364. package/dist/ink-runner/node_modules/zod/v4/classic/iso.cjs +60 -0
  4365. package/dist/ink-runner/node_modules/zod/v4/classic/iso.d.cts +22 -0
  4366. package/dist/ink-runner/node_modules/zod/v4/classic/iso.d.ts +22 -0
  4367. package/dist/ink-runner/node_modules/zod/v4/classic/iso.js +30 -0
  4368. package/dist/ink-runner/node_modules/zod/v4/classic/package.json +6 -0
  4369. package/dist/ink-runner/node_modules/zod/v4/classic/parse.cjs +41 -0
  4370. package/dist/ink-runner/node_modules/zod/v4/classic/parse.d.cts +31 -0
  4371. package/dist/ink-runner/node_modules/zod/v4/classic/parse.d.ts +31 -0
  4372. package/dist/ink-runner/node_modules/zod/v4/classic/parse.js +15 -0
  4373. package/dist/ink-runner/node_modules/zod/v4/classic/schemas.cjs +1272 -0
  4374. package/dist/ink-runner/node_modules/zod/v4/classic/schemas.d.cts +739 -0
  4375. package/dist/ink-runner/node_modules/zod/v4/classic/schemas.d.ts +739 -0
  4376. package/dist/ink-runner/node_modules/zod/v4/classic/schemas.js +1157 -0
  4377. package/dist/ink-runner/node_modules/zod/v4/core/api.cjs +1222 -0
  4378. package/dist/ink-runner/node_modules/zod/v4/core/api.d.cts +304 -0
  4379. package/dist/ink-runner/node_modules/zod/v4/core/api.d.ts +304 -0
  4380. package/dist/ink-runner/node_modules/zod/v4/core/api.js +1082 -0
  4381. package/dist/ink-runner/node_modules/zod/v4/core/checks.cjs +601 -0
  4382. package/dist/ink-runner/node_modules/zod/v4/core/checks.d.cts +278 -0
  4383. package/dist/ink-runner/node_modules/zod/v4/core/checks.d.ts +278 -0
  4384. package/dist/ink-runner/node_modules/zod/v4/core/checks.js +575 -0
  4385. package/dist/ink-runner/node_modules/zod/v4/core/core.cjs +83 -0
  4386. package/dist/ink-runner/node_modules/zod/v4/core/core.d.cts +70 -0
  4387. package/dist/ink-runner/node_modules/zod/v4/core/core.d.ts +70 -0
  4388. package/dist/ink-runner/node_modules/zod/v4/core/core.js +76 -0
  4389. package/dist/ink-runner/node_modules/zod/v4/core/doc.cjs +39 -0
  4390. package/dist/ink-runner/node_modules/zod/v4/core/doc.d.cts +14 -0
  4391. package/dist/ink-runner/node_modules/zod/v4/core/doc.d.ts +14 -0
  4392. package/dist/ink-runner/node_modules/zod/v4/core/doc.js +35 -0
  4393. package/dist/ink-runner/node_modules/zod/v4/core/errors.cjs +213 -0
  4394. package/dist/ink-runner/node_modules/zod/v4/core/errors.d.cts +220 -0
  4395. package/dist/ink-runner/node_modules/zod/v4/core/errors.d.ts +220 -0
  4396. package/dist/ink-runner/node_modules/zod/v4/core/errors.js +182 -0
  4397. package/dist/ink-runner/node_modules/zod/v4/core/index.cjs +47 -0
  4398. package/dist/ink-runner/node_modules/zod/v4/core/index.d.cts +16 -0
  4399. package/dist/ink-runner/node_modules/zod/v4/core/index.d.ts +16 -0
  4400. package/dist/ink-runner/node_modules/zod/v4/core/index.js +16 -0
  4401. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
  4402. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
  4403. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
  4404. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-generator.js +95 -0
  4405. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-processors.cjs +648 -0
  4406. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
  4407. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
  4408. package/dist/ink-runner/node_modules/zod/v4/core/json-schema-processors.js +605 -0
  4409. package/dist/ink-runner/node_modules/zod/v4/core/json-schema.cjs +2 -0
  4410. package/dist/ink-runner/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  4411. package/dist/ink-runner/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  4412. package/dist/ink-runner/node_modules/zod/v4/core/json-schema.js +1 -0
  4413. package/dist/ink-runner/node_modules/zod/v4/core/package.json +6 -0
  4414. package/dist/ink-runner/node_modules/zod/v4/core/parse.cjs +131 -0
  4415. package/dist/ink-runner/node_modules/zod/v4/core/parse.d.cts +49 -0
  4416. package/dist/ink-runner/node_modules/zod/v4/core/parse.d.ts +49 -0
  4417. package/dist/ink-runner/node_modules/zod/v4/core/parse.js +93 -0
  4418. package/dist/ink-runner/node_modules/zod/v4/core/regexes.cjs +166 -0
  4419. package/dist/ink-runner/node_modules/zod/v4/core/regexes.d.cts +79 -0
  4420. package/dist/ink-runner/node_modules/zod/v4/core/regexes.d.ts +79 -0
  4421. package/dist/ink-runner/node_modules/zod/v4/core/regexes.js +133 -0
  4422. package/dist/ink-runner/node_modules/zod/v4/core/registries.cjs +56 -0
  4423. package/dist/ink-runner/node_modules/zod/v4/core/registries.d.cts +35 -0
  4424. package/dist/ink-runner/node_modules/zod/v4/core/registries.d.ts +35 -0
  4425. package/dist/ink-runner/node_modules/zod/v4/core/registries.js +51 -0
  4426. package/dist/ink-runner/node_modules/zod/v4/core/schemas.cjs +2126 -0
  4427. package/dist/ink-runner/node_modules/zod/v4/core/schemas.d.cts +1146 -0
  4428. package/dist/ink-runner/node_modules/zod/v4/core/schemas.d.ts +1146 -0
  4429. package/dist/ink-runner/node_modules/zod/v4/core/schemas.js +2095 -0
  4430. package/dist/ink-runner/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  4431. package/dist/ink-runner/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
  4432. package/dist/ink-runner/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
  4433. package/dist/ink-runner/node_modules/zod/v4/core/standard-schema.js +1 -0
  4434. package/dist/ink-runner/node_modules/zod/v4/core/to-json-schema.cjs +446 -0
  4435. package/dist/ink-runner/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
  4436. package/dist/ink-runner/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
  4437. package/dist/ink-runner/node_modules/zod/v4/core/to-json-schema.js +437 -0
  4438. package/dist/ink-runner/node_modules/zod/v4/core/util.cjs +710 -0
  4439. package/dist/ink-runner/node_modules/zod/v4/core/util.d.cts +199 -0
  4440. package/dist/ink-runner/node_modules/zod/v4/core/util.d.ts +199 -0
  4441. package/dist/ink-runner/node_modules/zod/v4/core/util.js +651 -0
  4442. package/dist/ink-runner/node_modules/zod/v4/core/versions.cjs +8 -0
  4443. package/dist/ink-runner/node_modules/zod/v4/core/versions.d.cts +5 -0
  4444. package/dist/ink-runner/node_modules/zod/v4/core/versions.d.ts +5 -0
  4445. package/dist/ink-runner/node_modules/zod/v4/core/versions.js +5 -0
  4446. package/dist/ink-runner/node_modules/zod/v4/index.cjs +22 -0
  4447. package/dist/ink-runner/node_modules/zod/v4/index.d.cts +3 -0
  4448. package/dist/ink-runner/node_modules/zod/v4/index.d.ts +3 -0
  4449. package/dist/ink-runner/node_modules/zod/v4/index.js +3 -0
  4450. package/dist/ink-runner/node_modules/zod/v4/locales/ar.cjs +133 -0
  4451. package/dist/ink-runner/node_modules/zod/v4/locales/ar.d.cts +5 -0
  4452. package/dist/ink-runner/node_modules/zod/v4/locales/ar.d.ts +4 -0
  4453. package/dist/ink-runner/node_modules/zod/v4/locales/ar.js +106 -0
  4454. package/dist/ink-runner/node_modules/zod/v4/locales/az.cjs +132 -0
  4455. package/dist/ink-runner/node_modules/zod/v4/locales/az.d.cts +5 -0
  4456. package/dist/ink-runner/node_modules/zod/v4/locales/az.d.ts +4 -0
  4457. package/dist/ink-runner/node_modules/zod/v4/locales/az.js +105 -0
  4458. package/dist/ink-runner/node_modules/zod/v4/locales/be.cjs +183 -0
  4459. package/dist/ink-runner/node_modules/zod/v4/locales/be.d.cts +5 -0
  4460. package/dist/ink-runner/node_modules/zod/v4/locales/be.d.ts +4 -0
  4461. package/dist/ink-runner/node_modules/zod/v4/locales/be.js +156 -0
  4462. package/dist/ink-runner/node_modules/zod/v4/locales/bg.cjs +147 -0
  4463. package/dist/ink-runner/node_modules/zod/v4/locales/bg.d.cts +5 -0
  4464. package/dist/ink-runner/node_modules/zod/v4/locales/bg.d.ts +4 -0
  4465. package/dist/ink-runner/node_modules/zod/v4/locales/bg.js +120 -0
  4466. package/dist/ink-runner/node_modules/zod/v4/locales/ca.cjs +134 -0
  4467. package/dist/ink-runner/node_modules/zod/v4/locales/ca.d.cts +5 -0
  4468. package/dist/ink-runner/node_modules/zod/v4/locales/ca.d.ts +4 -0
  4469. package/dist/ink-runner/node_modules/zod/v4/locales/ca.js +107 -0
  4470. package/dist/ink-runner/node_modules/zod/v4/locales/cs.cjs +138 -0
  4471. package/dist/ink-runner/node_modules/zod/v4/locales/cs.d.cts +5 -0
  4472. package/dist/ink-runner/node_modules/zod/v4/locales/cs.d.ts +4 -0
  4473. package/dist/ink-runner/node_modules/zod/v4/locales/cs.js +111 -0
  4474. package/dist/ink-runner/node_modules/zod/v4/locales/da.cjs +142 -0
  4475. package/dist/ink-runner/node_modules/zod/v4/locales/da.d.cts +5 -0
  4476. package/dist/ink-runner/node_modules/zod/v4/locales/da.d.ts +4 -0
  4477. package/dist/ink-runner/node_modules/zod/v4/locales/da.js +115 -0
  4478. package/dist/ink-runner/node_modules/zod/v4/locales/de.cjs +135 -0
  4479. package/dist/ink-runner/node_modules/zod/v4/locales/de.d.cts +5 -0
  4480. package/dist/ink-runner/node_modules/zod/v4/locales/de.d.ts +4 -0
  4481. package/dist/ink-runner/node_modules/zod/v4/locales/de.js +108 -0
  4482. package/dist/ink-runner/node_modules/zod/v4/locales/en.cjs +136 -0
  4483. package/dist/ink-runner/node_modules/zod/v4/locales/en.d.cts +5 -0
  4484. package/dist/ink-runner/node_modules/zod/v4/locales/en.d.ts +4 -0
  4485. package/dist/ink-runner/node_modules/zod/v4/locales/en.js +109 -0
  4486. package/dist/ink-runner/node_modules/zod/v4/locales/eo.cjs +136 -0
  4487. package/dist/ink-runner/node_modules/zod/v4/locales/eo.d.cts +5 -0
  4488. package/dist/ink-runner/node_modules/zod/v4/locales/eo.d.ts +4 -0
  4489. package/dist/ink-runner/node_modules/zod/v4/locales/eo.js +109 -0
  4490. package/dist/ink-runner/node_modules/zod/v4/locales/es.cjs +159 -0
  4491. package/dist/ink-runner/node_modules/zod/v4/locales/es.d.cts +5 -0
  4492. package/dist/ink-runner/node_modules/zod/v4/locales/es.d.ts +4 -0
  4493. package/dist/ink-runner/node_modules/zod/v4/locales/es.js +132 -0
  4494. package/dist/ink-runner/node_modules/zod/v4/locales/fa.cjs +141 -0
  4495. package/dist/ink-runner/node_modules/zod/v4/locales/fa.d.cts +5 -0
  4496. package/dist/ink-runner/node_modules/zod/v4/locales/fa.d.ts +4 -0
  4497. package/dist/ink-runner/node_modules/zod/v4/locales/fa.js +114 -0
  4498. package/dist/ink-runner/node_modules/zod/v4/locales/fi.cjs +139 -0
  4499. package/dist/ink-runner/node_modules/zod/v4/locales/fi.d.cts +5 -0
  4500. package/dist/ink-runner/node_modules/zod/v4/locales/fi.d.ts +4 -0
  4501. package/dist/ink-runner/node_modules/zod/v4/locales/fi.js +112 -0
  4502. package/dist/ink-runner/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
  4503. package/dist/ink-runner/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  4504. package/dist/ink-runner/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  4505. package/dist/ink-runner/node_modules/zod/v4/locales/fr-CA.js +107 -0
  4506. package/dist/ink-runner/node_modules/zod/v4/locales/fr.cjs +135 -0
  4507. package/dist/ink-runner/node_modules/zod/v4/locales/fr.d.cts +5 -0
  4508. package/dist/ink-runner/node_modules/zod/v4/locales/fr.d.ts +4 -0
  4509. package/dist/ink-runner/node_modules/zod/v4/locales/fr.js +108 -0
  4510. package/dist/ink-runner/node_modules/zod/v4/locales/he.cjs +241 -0
  4511. package/dist/ink-runner/node_modules/zod/v4/locales/he.d.cts +5 -0
  4512. package/dist/ink-runner/node_modules/zod/v4/locales/he.d.ts +4 -0
  4513. package/dist/ink-runner/node_modules/zod/v4/locales/he.js +214 -0
  4514. package/dist/ink-runner/node_modules/zod/v4/locales/hu.cjs +135 -0
  4515. package/dist/ink-runner/node_modules/zod/v4/locales/hu.d.cts +5 -0
  4516. package/dist/ink-runner/node_modules/zod/v4/locales/hu.d.ts +4 -0
  4517. package/dist/ink-runner/node_modules/zod/v4/locales/hu.js +108 -0
  4518. package/dist/ink-runner/node_modules/zod/v4/locales/hy.cjs +174 -0
  4519. package/dist/ink-runner/node_modules/zod/v4/locales/hy.d.cts +5 -0
  4520. package/dist/ink-runner/node_modules/zod/v4/locales/hy.d.ts +4 -0
  4521. package/dist/ink-runner/node_modules/zod/v4/locales/hy.js +147 -0
  4522. package/dist/ink-runner/node_modules/zod/v4/locales/id.cjs +133 -0
  4523. package/dist/ink-runner/node_modules/zod/v4/locales/id.d.cts +5 -0
  4524. package/dist/ink-runner/node_modules/zod/v4/locales/id.d.ts +4 -0
  4525. package/dist/ink-runner/node_modules/zod/v4/locales/id.js +106 -0
  4526. package/dist/ink-runner/node_modules/zod/v4/locales/index.cjs +104 -0
  4527. package/dist/ink-runner/node_modules/zod/v4/locales/index.d.cts +49 -0
  4528. package/dist/ink-runner/node_modules/zod/v4/locales/index.d.ts +49 -0
  4529. package/dist/ink-runner/node_modules/zod/v4/locales/index.js +49 -0
  4530. package/dist/ink-runner/node_modules/zod/v4/locales/is.cjs +136 -0
  4531. package/dist/ink-runner/node_modules/zod/v4/locales/is.d.cts +5 -0
  4532. package/dist/ink-runner/node_modules/zod/v4/locales/is.d.ts +4 -0
  4533. package/dist/ink-runner/node_modules/zod/v4/locales/is.js +109 -0
  4534. package/dist/ink-runner/node_modules/zod/v4/locales/it.cjs +135 -0
  4535. package/dist/ink-runner/node_modules/zod/v4/locales/it.d.cts +5 -0
  4536. package/dist/ink-runner/node_modules/zod/v4/locales/it.d.ts +4 -0
  4537. package/dist/ink-runner/node_modules/zod/v4/locales/it.js +108 -0
  4538. package/dist/ink-runner/node_modules/zod/v4/locales/ja.cjs +134 -0
  4539. package/dist/ink-runner/node_modules/zod/v4/locales/ja.d.cts +5 -0
  4540. package/dist/ink-runner/node_modules/zod/v4/locales/ja.d.ts +4 -0
  4541. package/dist/ink-runner/node_modules/zod/v4/locales/ja.js +107 -0
  4542. package/dist/ink-runner/node_modules/zod/v4/locales/ka.cjs +139 -0
  4543. package/dist/ink-runner/node_modules/zod/v4/locales/ka.d.cts +5 -0
  4544. package/dist/ink-runner/node_modules/zod/v4/locales/ka.d.ts +4 -0
  4545. package/dist/ink-runner/node_modules/zod/v4/locales/ka.js +112 -0
  4546. package/dist/ink-runner/node_modules/zod/v4/locales/kh.cjs +12 -0
  4547. package/dist/ink-runner/node_modules/zod/v4/locales/kh.d.cts +5 -0
  4548. package/dist/ink-runner/node_modules/zod/v4/locales/kh.d.ts +5 -0
  4549. package/dist/ink-runner/node_modules/zod/v4/locales/kh.js +5 -0
  4550. package/dist/ink-runner/node_modules/zod/v4/locales/km.cjs +137 -0
  4551. package/dist/ink-runner/node_modules/zod/v4/locales/km.d.cts +5 -0
  4552. package/dist/ink-runner/node_modules/zod/v4/locales/km.d.ts +4 -0
  4553. package/dist/ink-runner/node_modules/zod/v4/locales/km.js +110 -0
  4554. package/dist/ink-runner/node_modules/zod/v4/locales/ko.cjs +138 -0
  4555. package/dist/ink-runner/node_modules/zod/v4/locales/ko.d.cts +5 -0
  4556. package/dist/ink-runner/node_modules/zod/v4/locales/ko.d.ts +4 -0
  4557. package/dist/ink-runner/node_modules/zod/v4/locales/ko.js +111 -0
  4558. package/dist/ink-runner/node_modules/zod/v4/locales/lt.cjs +230 -0
  4559. package/dist/ink-runner/node_modules/zod/v4/locales/lt.d.cts +5 -0
  4560. package/dist/ink-runner/node_modules/zod/v4/locales/lt.d.ts +4 -0
  4561. package/dist/ink-runner/node_modules/zod/v4/locales/lt.js +203 -0
  4562. package/dist/ink-runner/node_modules/zod/v4/locales/mk.cjs +136 -0
  4563. package/dist/ink-runner/node_modules/zod/v4/locales/mk.d.cts +5 -0
  4564. package/dist/ink-runner/node_modules/zod/v4/locales/mk.d.ts +4 -0
  4565. package/dist/ink-runner/node_modules/zod/v4/locales/mk.js +109 -0
  4566. package/dist/ink-runner/node_modules/zod/v4/locales/ms.cjs +134 -0
  4567. package/dist/ink-runner/node_modules/zod/v4/locales/ms.d.cts +5 -0
  4568. package/dist/ink-runner/node_modules/zod/v4/locales/ms.d.ts +4 -0
  4569. package/dist/ink-runner/node_modules/zod/v4/locales/ms.js +107 -0
  4570. package/dist/ink-runner/node_modules/zod/v4/locales/nl.cjs +137 -0
  4571. package/dist/ink-runner/node_modules/zod/v4/locales/nl.d.cts +5 -0
  4572. package/dist/ink-runner/node_modules/zod/v4/locales/nl.d.ts +4 -0
  4573. package/dist/ink-runner/node_modules/zod/v4/locales/nl.js +110 -0
  4574. package/dist/ink-runner/node_modules/zod/v4/locales/no.cjs +135 -0
  4575. package/dist/ink-runner/node_modules/zod/v4/locales/no.d.cts +5 -0
  4576. package/dist/ink-runner/node_modules/zod/v4/locales/no.d.ts +4 -0
  4577. package/dist/ink-runner/node_modules/zod/v4/locales/no.js +108 -0
  4578. package/dist/ink-runner/node_modules/zod/v4/locales/ota.cjs +136 -0
  4579. package/dist/ink-runner/node_modules/zod/v4/locales/ota.d.cts +5 -0
  4580. package/dist/ink-runner/node_modules/zod/v4/locales/ota.d.ts +4 -0
  4581. package/dist/ink-runner/node_modules/zod/v4/locales/ota.js +109 -0
  4582. package/dist/ink-runner/node_modules/zod/v4/locales/package.json +6 -0
  4583. package/dist/ink-runner/node_modules/zod/v4/locales/pl.cjs +136 -0
  4584. package/dist/ink-runner/node_modules/zod/v4/locales/pl.d.cts +5 -0
  4585. package/dist/ink-runner/node_modules/zod/v4/locales/pl.d.ts +4 -0
  4586. package/dist/ink-runner/node_modules/zod/v4/locales/pl.js +109 -0
  4587. package/dist/ink-runner/node_modules/zod/v4/locales/ps.cjs +141 -0
  4588. package/dist/ink-runner/node_modules/zod/v4/locales/ps.d.cts +5 -0
  4589. package/dist/ink-runner/node_modules/zod/v4/locales/ps.d.ts +4 -0
  4590. package/dist/ink-runner/node_modules/zod/v4/locales/ps.js +114 -0
  4591. package/dist/ink-runner/node_modules/zod/v4/locales/pt.cjs +135 -0
  4592. package/dist/ink-runner/node_modules/zod/v4/locales/pt.d.cts +5 -0
  4593. package/dist/ink-runner/node_modules/zod/v4/locales/pt.d.ts +4 -0
  4594. package/dist/ink-runner/node_modules/zod/v4/locales/pt.js +108 -0
  4595. package/dist/ink-runner/node_modules/zod/v4/locales/ru.cjs +183 -0
  4596. package/dist/ink-runner/node_modules/zod/v4/locales/ru.d.cts +5 -0
  4597. package/dist/ink-runner/node_modules/zod/v4/locales/ru.d.ts +4 -0
  4598. package/dist/ink-runner/node_modules/zod/v4/locales/ru.js +156 -0
  4599. package/dist/ink-runner/node_modules/zod/v4/locales/sl.cjs +136 -0
  4600. package/dist/ink-runner/node_modules/zod/v4/locales/sl.d.cts +5 -0
  4601. package/dist/ink-runner/node_modules/zod/v4/locales/sl.d.ts +4 -0
  4602. package/dist/ink-runner/node_modules/zod/v4/locales/sl.js +109 -0
  4603. package/dist/ink-runner/node_modules/zod/v4/locales/sv.cjs +137 -0
  4604. package/dist/ink-runner/node_modules/zod/v4/locales/sv.d.cts +5 -0
  4605. package/dist/ink-runner/node_modules/zod/v4/locales/sv.d.ts +4 -0
  4606. package/dist/ink-runner/node_modules/zod/v4/locales/sv.js +110 -0
  4607. package/dist/ink-runner/node_modules/zod/v4/locales/ta.cjs +137 -0
  4608. package/dist/ink-runner/node_modules/zod/v4/locales/ta.d.cts +5 -0
  4609. package/dist/ink-runner/node_modules/zod/v4/locales/ta.d.ts +4 -0
  4610. package/dist/ink-runner/node_modules/zod/v4/locales/ta.js +110 -0
  4611. package/dist/ink-runner/node_modules/zod/v4/locales/th.cjs +137 -0
  4612. package/dist/ink-runner/node_modules/zod/v4/locales/th.d.cts +5 -0
  4613. package/dist/ink-runner/node_modules/zod/v4/locales/th.d.ts +4 -0
  4614. package/dist/ink-runner/node_modules/zod/v4/locales/th.js +110 -0
  4615. package/dist/ink-runner/node_modules/zod/v4/locales/tr.cjs +132 -0
  4616. package/dist/ink-runner/node_modules/zod/v4/locales/tr.d.cts +5 -0
  4617. package/dist/ink-runner/node_modules/zod/v4/locales/tr.d.ts +4 -0
  4618. package/dist/ink-runner/node_modules/zod/v4/locales/tr.js +105 -0
  4619. package/dist/ink-runner/node_modules/zod/v4/locales/ua.cjs +12 -0
  4620. package/dist/ink-runner/node_modules/zod/v4/locales/ua.d.cts +5 -0
  4621. package/dist/ink-runner/node_modules/zod/v4/locales/ua.d.ts +5 -0
  4622. package/dist/ink-runner/node_modules/zod/v4/locales/ua.js +5 -0
  4623. package/dist/ink-runner/node_modules/zod/v4/locales/uk.cjs +135 -0
  4624. package/dist/ink-runner/node_modules/zod/v4/locales/uk.d.cts +5 -0
  4625. package/dist/ink-runner/node_modules/zod/v4/locales/uk.d.ts +4 -0
  4626. package/dist/ink-runner/node_modules/zod/v4/locales/uk.js +108 -0
  4627. package/dist/ink-runner/node_modules/zod/v4/locales/ur.cjs +137 -0
  4628. package/dist/ink-runner/node_modules/zod/v4/locales/ur.d.cts +5 -0
  4629. package/dist/ink-runner/node_modules/zod/v4/locales/ur.d.ts +4 -0
  4630. package/dist/ink-runner/node_modules/zod/v4/locales/ur.js +110 -0
  4631. package/dist/ink-runner/node_modules/zod/v4/locales/uz.cjs +136 -0
  4632. package/dist/ink-runner/node_modules/zod/v4/locales/uz.d.cts +5 -0
  4633. package/dist/ink-runner/node_modules/zod/v4/locales/uz.d.ts +4 -0
  4634. package/dist/ink-runner/node_modules/zod/v4/locales/uz.js +109 -0
  4635. package/dist/ink-runner/node_modules/zod/v4/locales/vi.cjs +135 -0
  4636. package/dist/ink-runner/node_modules/zod/v4/locales/vi.d.cts +5 -0
  4637. package/dist/ink-runner/node_modules/zod/v4/locales/vi.d.ts +4 -0
  4638. package/dist/ink-runner/node_modules/zod/v4/locales/vi.js +108 -0
  4639. package/dist/ink-runner/node_modules/zod/v4/locales/yo.cjs +134 -0
  4640. package/dist/ink-runner/node_modules/zod/v4/locales/yo.d.cts +5 -0
  4641. package/dist/ink-runner/node_modules/zod/v4/locales/yo.d.ts +4 -0
  4642. package/dist/ink-runner/node_modules/zod/v4/locales/yo.js +107 -0
  4643. package/dist/ink-runner/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
  4644. package/dist/ink-runner/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  4645. package/dist/ink-runner/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  4646. package/dist/ink-runner/node_modules/zod/v4/locales/zh-CN.js +109 -0
  4647. package/dist/ink-runner/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
  4648. package/dist/ink-runner/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  4649. package/dist/ink-runner/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  4650. package/dist/ink-runner/node_modules/zod/v4/locales/zh-TW.js +107 -0
  4651. package/dist/ink-runner/node_modules/zod/v4/mini/checks.cjs +34 -0
  4652. package/dist/ink-runner/node_modules/zod/v4/mini/checks.d.cts +1 -0
  4653. package/dist/ink-runner/node_modules/zod/v4/mini/checks.d.ts +1 -0
  4654. package/dist/ink-runner/node_modules/zod/v4/mini/checks.js +1 -0
  4655. package/dist/ink-runner/node_modules/zod/v4/mini/coerce.cjs +52 -0
  4656. package/dist/ink-runner/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  4657. package/dist/ink-runner/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  4658. package/dist/ink-runner/node_modules/zod/v4/mini/coerce.js +22 -0
  4659. package/dist/ink-runner/node_modules/zod/v4/mini/external.cjs +63 -0
  4660. package/dist/ink-runner/node_modules/zod/v4/mini/external.d.cts +12 -0
  4661. package/dist/ink-runner/node_modules/zod/v4/mini/external.d.ts +12 -0
  4662. package/dist/ink-runner/node_modules/zod/v4/mini/external.js +14 -0
  4663. package/dist/ink-runner/node_modules/zod/v4/mini/index.cjs +32 -0
  4664. package/dist/ink-runner/node_modules/zod/v4/mini/index.d.cts +3 -0
  4665. package/dist/ink-runner/node_modules/zod/v4/mini/index.d.ts +3 -0
  4666. package/dist/ink-runner/node_modules/zod/v4/mini/index.js +3 -0
  4667. package/dist/ink-runner/node_modules/zod/v4/mini/iso.cjs +64 -0
  4668. package/dist/ink-runner/node_modules/zod/v4/mini/iso.d.cts +22 -0
  4669. package/dist/ink-runner/node_modules/zod/v4/mini/iso.d.ts +22 -0
  4670. package/dist/ink-runner/node_modules/zod/v4/mini/iso.js +34 -0
  4671. package/dist/ink-runner/node_modules/zod/v4/mini/package.json +6 -0
  4672. package/dist/ink-runner/node_modules/zod/v4/mini/parse.cjs +16 -0
  4673. package/dist/ink-runner/node_modules/zod/v4/mini/parse.d.cts +1 -0
  4674. package/dist/ink-runner/node_modules/zod/v4/mini/parse.d.ts +1 -0
  4675. package/dist/ink-runner/node_modules/zod/v4/mini/parse.js +1 -0
  4676. package/dist/ink-runner/node_modules/zod/v4/mini/schemas.cjs +1046 -0
  4677. package/dist/ink-runner/node_modules/zod/v4/mini/schemas.d.cts +427 -0
  4678. package/dist/ink-runner/node_modules/zod/v4/mini/schemas.d.ts +427 -0
  4679. package/dist/ink-runner/node_modules/zod/v4/mini/schemas.js +925 -0
  4680. package/dist/ink-runner/node_modules/zod/v4/package.json +6 -0
  4681. package/dist/ink-runner/node_modules/zod/v4-mini/index.cjs +17 -0
  4682. package/dist/ink-runner/node_modules/zod/v4-mini/index.d.cts +1 -0
  4683. package/dist/ink-runner/node_modules/zod/v4-mini/index.d.ts +1 -0
  4684. package/dist/ink-runner/node_modules/zod/v4-mini/index.js +1 -0
  4685. package/dist/ink-runner/node_modules/zod/v4-mini/package.json +6 -0
  4686. package/dist/ink-runner/package.json +35 -0
  4687. package/dist/interaction-manager.d.ts +111 -0
  4688. package/dist/interaction-manager.js +342 -0
  4689. package/dist/log-buffer.d.ts +34 -0
  4690. package/dist/log-buffer.js +71 -0
  4691. package/dist/process-manager.d.ts +203 -0
  4692. package/dist/process-manager.js +1003 -0
  4693. package/dist/process.d.ts +211 -0
  4694. package/dist/process.js +951 -0
  4695. package/dist/shared/dist/index.d.ts +2 -0
  4696. package/dist/shared/dist/index.js +4 -0
  4697. package/dist/shared/dist/protocol.d.ts +14 -0
  4698. package/dist/shared/dist/protocol.js +30 -0
  4699. package/dist/shared/dist/schema.d.ts +180 -0
  4700. package/dist/shared/dist/schema.js +72 -0
  4701. package/dist/shared/node_modules/.package-lock.json +17 -0
  4702. package/dist/shared/node_modules/zod/LICENSE +21 -0
  4703. package/dist/shared/node_modules/zod/README.md +208 -0
  4704. package/dist/shared/node_modules/zod/index.cjs +33 -0
  4705. package/dist/shared/node_modules/zod/index.d.cts +4 -0
  4706. package/dist/shared/node_modules/zod/index.d.ts +4 -0
  4707. package/dist/shared/node_modules/zod/index.js +4 -0
  4708. package/dist/shared/node_modules/zod/package.json +118 -0
  4709. package/dist/shared/node_modules/zod/src/index.ts +4 -0
  4710. package/dist/shared/node_modules/zod/src/v3/ZodError.ts +330 -0
  4711. package/dist/shared/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  4712. package/dist/shared/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  4713. package/dist/shared/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  4714. package/dist/shared/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  4715. package/dist/shared/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  4716. package/dist/shared/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  4717. package/dist/shared/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  4718. package/dist/shared/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  4719. package/dist/shared/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  4720. package/dist/shared/node_modules/zod/src/v3/errors.ts +13 -0
  4721. package/dist/shared/node_modules/zod/src/v3/external.ts +6 -0
  4722. package/dist/shared/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  4723. package/dist/shared/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  4724. package/dist/shared/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  4725. package/dist/shared/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  4726. package/dist/shared/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  4727. package/dist/shared/node_modules/zod/src/v3/helpers/util.ts +224 -0
  4728. package/dist/shared/node_modules/zod/src/v3/index.ts +4 -0
  4729. package/dist/shared/node_modules/zod/src/v3/locales/en.ts +124 -0
  4730. package/dist/shared/node_modules/zod/src/v3/standard-schema.ts +113 -0
  4731. package/dist/shared/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  4732. package/dist/shared/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  4733. package/dist/shared/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  4734. package/dist/shared/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  4735. package/dist/shared/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  4736. package/dist/shared/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  4737. package/dist/shared/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  4738. package/dist/shared/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  4739. package/dist/shared/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  4740. package/dist/shared/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  4741. package/dist/shared/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  4742. package/dist/shared/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  4743. package/dist/shared/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  4744. package/dist/shared/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  4745. package/dist/shared/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  4746. package/dist/shared/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  4747. package/dist/shared/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  4748. package/dist/shared/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  4749. package/dist/shared/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  4750. package/dist/shared/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  4751. package/dist/shared/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  4752. package/dist/shared/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  4753. package/dist/shared/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  4754. package/dist/shared/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  4755. package/dist/shared/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  4756. package/dist/shared/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  4757. package/dist/shared/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  4758. package/dist/shared/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  4759. package/dist/shared/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  4760. package/dist/shared/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  4761. package/dist/shared/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  4762. package/dist/shared/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  4763. package/dist/shared/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  4764. package/dist/shared/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  4765. package/dist/shared/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  4766. package/dist/shared/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  4767. package/dist/shared/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  4768. package/dist/shared/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  4769. package/dist/shared/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  4770. package/dist/shared/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  4771. package/dist/shared/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  4772. package/dist/shared/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  4773. package/dist/shared/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  4774. package/dist/shared/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  4775. package/dist/shared/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  4776. package/dist/shared/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  4777. package/dist/shared/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  4778. package/dist/shared/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  4779. package/dist/shared/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  4780. package/dist/shared/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  4781. package/dist/shared/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  4782. package/dist/shared/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  4783. package/dist/shared/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  4784. package/dist/shared/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  4785. package/dist/shared/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  4786. package/dist/shared/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  4787. package/dist/shared/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  4788. package/dist/shared/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  4789. package/dist/shared/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  4790. package/dist/shared/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  4791. package/dist/shared/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  4792. package/dist/shared/node_modules/zod/src/v3/types.ts +5136 -0
  4793. package/dist/shared/node_modules/zod/src/v4/classic/checks.ts +30 -0
  4794. package/dist/shared/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  4795. package/dist/shared/node_modules/zod/src/v4/classic/compat.ts +66 -0
  4796. package/dist/shared/node_modules/zod/src/v4/classic/errors.ts +75 -0
  4797. package/dist/shared/node_modules/zod/src/v4/classic/external.ts +50 -0
  4798. package/dist/shared/node_modules/zod/src/v4/classic/index.ts +5 -0
  4799. package/dist/shared/node_modules/zod/src/v4/classic/iso.ts +90 -0
  4800. package/dist/shared/node_modules/zod/src/v4/classic/parse.ts +33 -0
  4801. package/dist/shared/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  4802. package/dist/shared/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  4803. package/dist/shared/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  4804. package/dist/shared/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  4805. package/dist/shared/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  4806. package/dist/shared/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  4807. package/dist/shared/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  4808. package/dist/shared/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  4809. package/dist/shared/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  4810. package/dist/shared/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  4811. package/dist/shared/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  4812. package/dist/shared/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  4813. package/dist/shared/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  4814. package/dist/shared/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  4815. package/dist/shared/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  4816. package/dist/shared/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  4817. package/dist/shared/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  4818. package/dist/shared/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  4819. package/dist/shared/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  4820. package/dist/shared/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  4821. package/dist/shared/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  4822. package/dist/shared/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  4823. package/dist/shared/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  4824. package/dist/shared/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  4825. package/dist/shared/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  4826. package/dist/shared/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  4827. package/dist/shared/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  4828. package/dist/shared/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  4829. package/dist/shared/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  4830. package/dist/shared/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  4831. package/dist/shared/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  4832. package/dist/shared/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  4833. package/dist/shared/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  4834. package/dist/shared/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  4835. package/dist/shared/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  4836. package/dist/shared/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  4837. package/dist/shared/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  4838. package/dist/shared/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  4839. package/dist/shared/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  4840. package/dist/shared/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  4841. package/dist/shared/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  4842. package/dist/shared/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  4843. package/dist/shared/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  4844. package/dist/shared/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  4845. package/dist/shared/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  4846. package/dist/shared/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  4847. package/dist/shared/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  4848. package/dist/shared/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  4849. package/dist/shared/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  4850. package/dist/shared/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  4851. package/dist/shared/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  4852. package/dist/shared/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  4853. package/dist/shared/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  4854. package/dist/shared/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  4855. package/dist/shared/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  4856. package/dist/shared/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  4857. package/dist/shared/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  4858. package/dist/shared/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  4859. package/dist/shared/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  4860. package/dist/shared/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  4861. package/dist/shared/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  4862. package/dist/shared/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  4863. package/dist/shared/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  4864. package/dist/shared/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  4865. package/dist/shared/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  4866. package/dist/shared/node_modules/zod/src/v4/core/api.ts +1594 -0
  4867. package/dist/shared/node_modules/zod/src/v4/core/checks.ts +1283 -0
  4868. package/dist/shared/node_modules/zod/src/v4/core/config.ts +15 -0
  4869. package/dist/shared/node_modules/zod/src/v4/core/core.ts +134 -0
  4870. package/dist/shared/node_modules/zod/src/v4/core/doc.ts +44 -0
  4871. package/dist/shared/node_modules/zod/src/v4/core/errors.ts +424 -0
  4872. package/dist/shared/node_modules/zod/src/v4/core/function.ts +176 -0
  4873. package/dist/shared/node_modules/zod/src/v4/core/index.ts +15 -0
  4874. package/dist/shared/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  4875. package/dist/shared/node_modules/zod/src/v4/core/parse.ts +94 -0
  4876. package/dist/shared/node_modules/zod/src/v4/core/regexes.ts +135 -0
  4877. package/dist/shared/node_modules/zod/src/v4/core/registries.ts +96 -0
  4878. package/dist/shared/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  4879. package/dist/shared/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  4880. package/dist/shared/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  4881. package/dist/shared/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  4882. package/dist/shared/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  4883. package/dist/shared/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  4884. package/dist/shared/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  4885. package/dist/shared/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  4886. package/dist/shared/node_modules/zod/src/v4/core/util.ts +775 -0
  4887. package/dist/shared/node_modules/zod/src/v4/core/versions.ts +5 -0
  4888. package/dist/shared/node_modules/zod/src/v4/core/zsf.ts +323 -0
  4889. package/dist/shared/node_modules/zod/src/v4/index.ts +4 -0
  4890. package/dist/shared/node_modules/zod/src/v4/locales/ar.ts +125 -0
  4891. package/dist/shared/node_modules/zod/src/v4/locales/az.ts +121 -0
  4892. package/dist/shared/node_modules/zod/src/v4/locales/be.ts +184 -0
  4893. package/dist/shared/node_modules/zod/src/v4/locales/ca.ts +127 -0
  4894. package/dist/shared/node_modules/zod/src/v4/locales/cs.ts +142 -0
  4895. package/dist/shared/node_modules/zod/src/v4/locales/de.ts +124 -0
  4896. package/dist/shared/node_modules/zod/src/v4/locales/en.ts +127 -0
  4897. package/dist/shared/node_modules/zod/src/v4/locales/eo.ts +125 -0
  4898. package/dist/shared/node_modules/zod/src/v4/locales/es.ts +125 -0
  4899. package/dist/shared/node_modules/zod/src/v4/locales/fa.ts +134 -0
  4900. package/dist/shared/node_modules/zod/src/v4/locales/fi.ts +131 -0
  4901. package/dist/shared/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  4902. package/dist/shared/node_modules/zod/src/v4/locales/fr.ts +124 -0
  4903. package/dist/shared/node_modules/zod/src/v4/locales/he.ts +125 -0
  4904. package/dist/shared/node_modules/zod/src/v4/locales/hu.ts +126 -0
  4905. package/dist/shared/node_modules/zod/src/v4/locales/id.ts +125 -0
  4906. package/dist/shared/node_modules/zod/src/v4/locales/index.ts +39 -0
  4907. package/dist/shared/node_modules/zod/src/v4/locales/it.ts +125 -0
  4908. package/dist/shared/node_modules/zod/src/v4/locales/ja.ts +122 -0
  4909. package/dist/shared/node_modules/zod/src/v4/locales/kh.ts +126 -0
  4910. package/dist/shared/node_modules/zod/src/v4/locales/ko.ts +131 -0
  4911. package/dist/shared/node_modules/zod/src/v4/locales/mk.ts +127 -0
  4912. package/dist/shared/node_modules/zod/src/v4/locales/ms.ts +124 -0
  4913. package/dist/shared/node_modules/zod/src/v4/locales/nl.ts +126 -0
  4914. package/dist/shared/node_modules/zod/src/v4/locales/no.ts +124 -0
  4915. package/dist/shared/node_modules/zod/src/v4/locales/ota.ts +125 -0
  4916. package/dist/shared/node_modules/zod/src/v4/locales/pl.ts +126 -0
  4917. package/dist/shared/node_modules/zod/src/v4/locales/ps.ts +133 -0
  4918. package/dist/shared/node_modules/zod/src/v4/locales/pt.ts +123 -0
  4919. package/dist/shared/node_modules/zod/src/v4/locales/ru.ts +184 -0
  4920. package/dist/shared/node_modules/zod/src/v4/locales/sl.ts +126 -0
  4921. package/dist/shared/node_modules/zod/src/v4/locales/sv.ts +127 -0
  4922. package/dist/shared/node_modules/zod/src/v4/locales/ta.ts +125 -0
  4923. package/dist/shared/node_modules/zod/src/v4/locales/th.ts +126 -0
  4924. package/dist/shared/node_modules/zod/src/v4/locales/tr.ts +121 -0
  4925. package/dist/shared/node_modules/zod/src/v4/locales/ua.ts +126 -0
  4926. package/dist/shared/node_modules/zod/src/v4/locales/ur.ts +126 -0
  4927. package/dist/shared/node_modules/zod/src/v4/locales/vi.ts +125 -0
  4928. package/dist/shared/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  4929. package/dist/shared/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  4930. package/dist/shared/node_modules/zod/src/v4/mini/checks.ts +32 -0
  4931. package/dist/shared/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  4932. package/dist/shared/node_modules/zod/src/v4/mini/external.ts +40 -0
  4933. package/dist/shared/node_modules/zod/src/v4/mini/index.ts +3 -0
  4934. package/dist/shared/node_modules/zod/src/v4/mini/iso.ts +62 -0
  4935. package/dist/shared/node_modules/zod/src/v4/mini/parse.ts +1 -0
  4936. package/dist/shared/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  4937. package/dist/shared/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  4938. package/dist/shared/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  4939. package/dist/shared/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  4940. package/dist/shared/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  4941. package/dist/shared/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  4942. package/dist/shared/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  4943. package/dist/shared/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  4944. package/dist/shared/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  4945. package/dist/shared/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  4946. package/dist/shared/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  4947. package/dist/shared/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  4948. package/dist/shared/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  4949. package/dist/shared/node_modules/zod/src/v4-mini/index.ts +1 -0
  4950. package/dist/shared/node_modules/zod/v3/ZodError.cjs +138 -0
  4951. package/dist/shared/node_modules/zod/v3/ZodError.d.cts +164 -0
  4952. package/dist/shared/node_modules/zod/v3/ZodError.d.ts +164 -0
  4953. package/dist/shared/node_modules/zod/v3/ZodError.js +133 -0
  4954. package/dist/shared/node_modules/zod/v3/errors.cjs +17 -0
  4955. package/dist/shared/node_modules/zod/v3/errors.d.cts +5 -0
  4956. package/dist/shared/node_modules/zod/v3/errors.d.ts +5 -0
  4957. package/dist/shared/node_modules/zod/v3/errors.js +9 -0
  4958. package/dist/shared/node_modules/zod/v3/external.cjs +22 -0
  4959. package/dist/shared/node_modules/zod/v3/external.d.cts +6 -0
  4960. package/dist/shared/node_modules/zod/v3/external.d.ts +6 -0
  4961. package/dist/shared/node_modules/zod/v3/external.js +6 -0
  4962. package/dist/shared/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  4963. package/dist/shared/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  4964. package/dist/shared/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  4965. package/dist/shared/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  4966. package/dist/shared/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  4967. package/dist/shared/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  4968. package/dist/shared/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  4969. package/dist/shared/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  4970. package/dist/shared/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  4971. package/dist/shared/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  4972. package/dist/shared/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  4973. package/dist/shared/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  4974. package/dist/shared/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  4975. package/dist/shared/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  4976. package/dist/shared/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  4977. package/dist/shared/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  4978. package/dist/shared/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  4979. package/dist/shared/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  4980. package/dist/shared/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  4981. package/dist/shared/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  4982. package/dist/shared/node_modules/zod/v3/helpers/util.cjs +137 -0
  4983. package/dist/shared/node_modules/zod/v3/helpers/util.d.cts +85 -0
  4984. package/dist/shared/node_modules/zod/v3/helpers/util.d.ts +85 -0
  4985. package/dist/shared/node_modules/zod/v3/helpers/util.js +133 -0
  4986. package/dist/shared/node_modules/zod/v3/index.cjs +33 -0
  4987. package/dist/shared/node_modules/zod/v3/index.d.cts +4 -0
  4988. package/dist/shared/node_modules/zod/v3/index.d.ts +4 -0
  4989. package/dist/shared/node_modules/zod/v3/index.js +4 -0
  4990. package/dist/shared/node_modules/zod/v3/locales/en.cjs +111 -0
  4991. package/dist/shared/node_modules/zod/v3/locales/en.d.cts +3 -0
  4992. package/dist/shared/node_modules/zod/v3/locales/en.d.ts +3 -0
  4993. package/dist/shared/node_modules/zod/v3/locales/en.js +109 -0
  4994. package/dist/shared/node_modules/zod/v3/standard-schema.cjs +2 -0
  4995. package/dist/shared/node_modules/zod/v3/standard-schema.d.cts +102 -0
  4996. package/dist/shared/node_modules/zod/v3/standard-schema.d.ts +102 -0
  4997. package/dist/shared/node_modules/zod/v3/standard-schema.js +1 -0
  4998. package/dist/shared/node_modules/zod/v3/types.cjs +3775 -0
  4999. package/dist/shared/node_modules/zod/v3/types.d.cts +1031 -0
  5000. package/dist/shared/node_modules/zod/v3/types.d.ts +1031 -0
  5001. package/dist/shared/node_modules/zod/v3/types.js +3693 -0
  5002. package/dist/shared/node_modules/zod/v4/classic/checks.cjs +32 -0
  5003. package/dist/shared/node_modules/zod/v4/classic/checks.d.cts +1 -0
  5004. package/dist/shared/node_modules/zod/v4/classic/checks.d.ts +1 -0
  5005. package/dist/shared/node_modules/zod/v4/classic/checks.js +1 -0
  5006. package/dist/shared/node_modules/zod/v4/classic/coerce.cjs +47 -0
  5007. package/dist/shared/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  5008. package/dist/shared/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  5009. package/dist/shared/node_modules/zod/v4/classic/coerce.js +17 -0
  5010. package/dist/shared/node_modules/zod/v4/classic/compat.cjs +57 -0
  5011. package/dist/shared/node_modules/zod/v4/classic/compat.d.cts +46 -0
  5012. package/dist/shared/node_modules/zod/v4/classic/compat.d.ts +46 -0
  5013. package/dist/shared/node_modules/zod/v4/classic/compat.js +27 -0
  5014. package/dist/shared/node_modules/zod/v4/classic/errors.cjs +67 -0
  5015. package/dist/shared/node_modules/zod/v4/classic/errors.d.cts +30 -0
  5016. package/dist/shared/node_modules/zod/v4/classic/errors.d.ts +30 -0
  5017. package/dist/shared/node_modules/zod/v4/classic/errors.js +41 -0
  5018. package/dist/shared/node_modules/zod/v4/classic/external.cjs +70 -0
  5019. package/dist/shared/node_modules/zod/v4/classic/external.d.cts +13 -0
  5020. package/dist/shared/node_modules/zod/v4/classic/external.d.ts +13 -0
  5021. package/dist/shared/node_modules/zod/v4/classic/external.js +18 -0
  5022. package/dist/shared/node_modules/zod/v4/classic/index.cjs +33 -0
  5023. package/dist/shared/node_modules/zod/v4/classic/index.d.cts +4 -0
  5024. package/dist/shared/node_modules/zod/v4/classic/index.d.ts +4 -0
  5025. package/dist/shared/node_modules/zod/v4/classic/index.js +4 -0
  5026. package/dist/shared/node_modules/zod/v4/classic/iso.cjs +60 -0
  5027. package/dist/shared/node_modules/zod/v4/classic/iso.d.cts +22 -0
  5028. package/dist/shared/node_modules/zod/v4/classic/iso.d.ts +22 -0
  5029. package/dist/shared/node_modules/zod/v4/classic/iso.js +30 -0
  5030. package/dist/shared/node_modules/zod/v4/classic/parse.cjs +32 -0
  5031. package/dist/shared/node_modules/zod/v4/classic/parse.d.cts +23 -0
  5032. package/dist/shared/node_modules/zod/v4/classic/parse.d.ts +23 -0
  5033. package/dist/shared/node_modules/zod/v4/classic/parse.js +6 -0
  5034. package/dist/shared/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  5035. package/dist/shared/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  5036. package/dist/shared/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  5037. package/dist/shared/node_modules/zod/v4/classic/schemas.js +1006 -0
  5038. package/dist/shared/node_modules/zod/v4/core/api.cjs +1039 -0
  5039. package/dist/shared/node_modules/zod/v4/core/api.d.cts +284 -0
  5040. package/dist/shared/node_modules/zod/v4/core/api.d.ts +284 -0
  5041. package/dist/shared/node_modules/zod/v4/core/api.js +906 -0
  5042. package/dist/shared/node_modules/zod/v4/core/checks.cjs +591 -0
  5043. package/dist/shared/node_modules/zod/v4/core/checks.d.cts +278 -0
  5044. package/dist/shared/node_modules/zod/v4/core/checks.d.ts +278 -0
  5045. package/dist/shared/node_modules/zod/v4/core/checks.js +565 -0
  5046. package/dist/shared/node_modules/zod/v4/core/core.cjs +67 -0
  5047. package/dist/shared/node_modules/zod/v4/core/core.d.cts +49 -0
  5048. package/dist/shared/node_modules/zod/v4/core/core.d.ts +49 -0
  5049. package/dist/shared/node_modules/zod/v4/core/core.js +61 -0
  5050. package/dist/shared/node_modules/zod/v4/core/doc.cjs +39 -0
  5051. package/dist/shared/node_modules/zod/v4/core/doc.d.cts +14 -0
  5052. package/dist/shared/node_modules/zod/v4/core/doc.d.ts +14 -0
  5053. package/dist/shared/node_modules/zod/v4/core/doc.js +35 -0
  5054. package/dist/shared/node_modules/zod/v4/core/errors.cjs +226 -0
  5055. package/dist/shared/node_modules/zod/v4/core/errors.d.cts +208 -0
  5056. package/dist/shared/node_modules/zod/v4/core/errors.d.ts +208 -0
  5057. package/dist/shared/node_modules/zod/v4/core/errors.js +195 -0
  5058. package/dist/shared/node_modules/zod/v4/core/function.cjs +102 -0
  5059. package/dist/shared/node_modules/zod/v4/core/function.d.cts +52 -0
  5060. package/dist/shared/node_modules/zod/v4/core/function.d.ts +52 -0
  5061. package/dist/shared/node_modules/zod/v4/core/function.js +75 -0
  5062. package/dist/shared/node_modules/zod/v4/core/index.cjs +44 -0
  5063. package/dist/shared/node_modules/zod/v4/core/index.d.cts +15 -0
  5064. package/dist/shared/node_modules/zod/v4/core/index.d.ts +15 -0
  5065. package/dist/shared/node_modules/zod/v4/core/index.js +15 -0
  5066. package/dist/shared/node_modules/zod/v4/core/json-schema.cjs +2 -0
  5067. package/dist/shared/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  5068. package/dist/shared/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  5069. package/dist/shared/node_modules/zod/v4/core/json-schema.js +1 -0
  5070. package/dist/shared/node_modules/zod/v4/core/parse.cjs +87 -0
  5071. package/dist/shared/node_modules/zod/v4/core/parse.d.cts +25 -0
  5072. package/dist/shared/node_modules/zod/v4/core/parse.d.ts +25 -0
  5073. package/dist/shared/node_modules/zod/v4/core/parse.js +57 -0
  5074. package/dist/shared/node_modules/zod/v4/core/regexes.cjs +103 -0
  5075. package/dist/shared/node_modules/zod/v4/core/regexes.d.cts +62 -0
  5076. package/dist/shared/node_modules/zod/v4/core/regexes.d.ts +62 -0
  5077. package/dist/shared/node_modules/zod/v4/core/regexes.js +95 -0
  5078. package/dist/shared/node_modules/zod/v4/core/registries.cjs +56 -0
  5079. package/dist/shared/node_modules/zod/v4/core/registries.d.cts +35 -0
  5080. package/dist/shared/node_modules/zod/v4/core/registries.d.ts +35 -0
  5081. package/dist/shared/node_modules/zod/v4/core/registries.js +51 -0
  5082. package/dist/shared/node_modules/zod/v4/core/schemas.cjs +1748 -0
  5083. package/dist/shared/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  5084. package/dist/shared/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  5085. package/dist/shared/node_modules/zod/v4/core/schemas.js +1717 -0
  5086. package/dist/shared/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  5087. package/dist/shared/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  5088. package/dist/shared/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  5089. package/dist/shared/node_modules/zod/v4/core/standard-schema.js +1 -0
  5090. package/dist/shared/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  5091. package/dist/shared/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  5092. package/dist/shared/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  5093. package/dist/shared/node_modules/zod/v4/core/to-json-schema.js +849 -0
  5094. package/dist/shared/node_modules/zod/v4/core/util.cjs +539 -0
  5095. package/dist/shared/node_modules/zod/v4/core/util.d.cts +183 -0
  5096. package/dist/shared/node_modules/zod/v4/core/util.d.ts +183 -0
  5097. package/dist/shared/node_modules/zod/v4/core/util.js +493 -0
  5098. package/dist/shared/node_modules/zod/v4/core/versions.cjs +8 -0
  5099. package/dist/shared/node_modules/zod/v4/core/versions.d.cts +5 -0
  5100. package/dist/shared/node_modules/zod/v4/core/versions.d.ts +5 -0
  5101. package/dist/shared/node_modules/zod/v4/core/versions.js +5 -0
  5102. package/dist/shared/node_modules/zod/v4/index.cjs +22 -0
  5103. package/dist/shared/node_modules/zod/v4/index.d.cts +3 -0
  5104. package/dist/shared/node_modules/zod/v4/index.d.ts +3 -0
  5105. package/dist/shared/node_modules/zod/v4/index.js +3 -0
  5106. package/dist/shared/node_modules/zod/v4/locales/ar.cjs +142 -0
  5107. package/dist/shared/node_modules/zod/v4/locales/ar.d.cts +4 -0
  5108. package/dist/shared/node_modules/zod/v4/locales/ar.d.ts +4 -0
  5109. package/dist/shared/node_modules/zod/v4/locales/ar.js +116 -0
  5110. package/dist/shared/node_modules/zod/v4/locales/az.cjs +141 -0
  5111. package/dist/shared/node_modules/zod/v4/locales/az.d.cts +4 -0
  5112. package/dist/shared/node_modules/zod/v4/locales/az.d.ts +4 -0
  5113. package/dist/shared/node_modules/zod/v4/locales/az.js +115 -0
  5114. package/dist/shared/node_modules/zod/v4/locales/be.cjs +190 -0
  5115. package/dist/shared/node_modules/zod/v4/locales/be.d.cts +4 -0
  5116. package/dist/shared/node_modules/zod/v4/locales/be.d.ts +4 -0
  5117. package/dist/shared/node_modules/zod/v4/locales/be.js +164 -0
  5118. package/dist/shared/node_modules/zod/v4/locales/ca.cjs +144 -0
  5119. package/dist/shared/node_modules/zod/v4/locales/ca.d.cts +4 -0
  5120. package/dist/shared/node_modules/zod/v4/locales/ca.d.ts +4 -0
  5121. package/dist/shared/node_modules/zod/v4/locales/ca.js +118 -0
  5122. package/dist/shared/node_modules/zod/v4/locales/cs.cjs +161 -0
  5123. package/dist/shared/node_modules/zod/v4/locales/cs.d.cts +4 -0
  5124. package/dist/shared/node_modules/zod/v4/locales/cs.d.ts +4 -0
  5125. package/dist/shared/node_modules/zod/v4/locales/cs.js +135 -0
  5126. package/dist/shared/node_modules/zod/v4/locales/de.cjs +142 -0
  5127. package/dist/shared/node_modules/zod/v4/locales/de.d.cts +4 -0
  5128. package/dist/shared/node_modules/zod/v4/locales/de.d.ts +4 -0
  5129. package/dist/shared/node_modules/zod/v4/locales/de.js +116 -0
  5130. package/dist/shared/node_modules/zod/v4/locales/en.cjs +145 -0
  5131. package/dist/shared/node_modules/zod/v4/locales/en.d.cts +5 -0
  5132. package/dist/shared/node_modules/zod/v4/locales/en.d.ts +5 -0
  5133. package/dist/shared/node_modules/zod/v4/locales/en.js +117 -0
  5134. package/dist/shared/node_modules/zod/v4/locales/eo.cjs +144 -0
  5135. package/dist/shared/node_modules/zod/v4/locales/eo.d.cts +5 -0
  5136. package/dist/shared/node_modules/zod/v4/locales/eo.d.ts +5 -0
  5137. package/dist/shared/node_modules/zod/v4/locales/eo.js +116 -0
  5138. package/dist/shared/node_modules/zod/v4/locales/es.cjs +143 -0
  5139. package/dist/shared/node_modules/zod/v4/locales/es.d.cts +4 -0
  5140. package/dist/shared/node_modules/zod/v4/locales/es.d.ts +4 -0
  5141. package/dist/shared/node_modules/zod/v4/locales/es.js +117 -0
  5142. package/dist/shared/node_modules/zod/v4/locales/fa.cjs +148 -0
  5143. package/dist/shared/node_modules/zod/v4/locales/fa.d.cts +4 -0
  5144. package/dist/shared/node_modules/zod/v4/locales/fa.d.ts +4 -0
  5145. package/dist/shared/node_modules/zod/v4/locales/fa.js +122 -0
  5146. package/dist/shared/node_modules/zod/v4/locales/fi.cjs +148 -0
  5147. package/dist/shared/node_modules/zod/v4/locales/fi.d.cts +4 -0
  5148. package/dist/shared/node_modules/zod/v4/locales/fi.d.ts +4 -0
  5149. package/dist/shared/node_modules/zod/v4/locales/fi.js +122 -0
  5150. package/dist/shared/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  5151. package/dist/shared/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  5152. package/dist/shared/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  5153. package/dist/shared/node_modules/zod/v4/locales/fr-CA.js +117 -0
  5154. package/dist/shared/node_modules/zod/v4/locales/fr.cjs +142 -0
  5155. package/dist/shared/node_modules/zod/v4/locales/fr.d.cts +4 -0
  5156. package/dist/shared/node_modules/zod/v4/locales/fr.d.ts +4 -0
  5157. package/dist/shared/node_modules/zod/v4/locales/fr.js +116 -0
  5158. package/dist/shared/node_modules/zod/v4/locales/he.cjs +143 -0
  5159. package/dist/shared/node_modules/zod/v4/locales/he.d.cts +4 -0
  5160. package/dist/shared/node_modules/zod/v4/locales/he.d.ts +4 -0
  5161. package/dist/shared/node_modules/zod/v4/locales/he.js +117 -0
  5162. package/dist/shared/node_modules/zod/v4/locales/hu.cjs +143 -0
  5163. package/dist/shared/node_modules/zod/v4/locales/hu.d.cts +4 -0
  5164. package/dist/shared/node_modules/zod/v4/locales/hu.d.ts +4 -0
  5165. package/dist/shared/node_modules/zod/v4/locales/hu.js +117 -0
  5166. package/dist/shared/node_modules/zod/v4/locales/id.cjs +142 -0
  5167. package/dist/shared/node_modules/zod/v4/locales/id.d.cts +4 -0
  5168. package/dist/shared/node_modules/zod/v4/locales/id.d.ts +4 -0
  5169. package/dist/shared/node_modules/zod/v4/locales/id.js +116 -0
  5170. package/dist/shared/node_modules/zod/v4/locales/index.cjs +84 -0
  5171. package/dist/shared/node_modules/zod/v4/locales/index.d.cts +39 -0
  5172. package/dist/shared/node_modules/zod/v4/locales/index.d.ts +39 -0
  5173. package/dist/shared/node_modules/zod/v4/locales/index.js +39 -0
  5174. package/dist/shared/node_modules/zod/v4/locales/it.cjs +143 -0
  5175. package/dist/shared/node_modules/zod/v4/locales/it.d.cts +4 -0
  5176. package/dist/shared/node_modules/zod/v4/locales/it.d.ts +4 -0
  5177. package/dist/shared/node_modules/zod/v4/locales/it.js +117 -0
  5178. package/dist/shared/node_modules/zod/v4/locales/ja.cjs +141 -0
  5179. package/dist/shared/node_modules/zod/v4/locales/ja.d.cts +4 -0
  5180. package/dist/shared/node_modules/zod/v4/locales/ja.d.ts +4 -0
  5181. package/dist/shared/node_modules/zod/v4/locales/ja.js +115 -0
  5182. package/dist/shared/node_modules/zod/v4/locales/kh.cjs +143 -0
  5183. package/dist/shared/node_modules/zod/v4/locales/kh.d.cts +4 -0
  5184. package/dist/shared/node_modules/zod/v4/locales/kh.d.ts +4 -0
  5185. package/dist/shared/node_modules/zod/v4/locales/kh.js +117 -0
  5186. package/dist/shared/node_modules/zod/v4/locales/ko.cjs +147 -0
  5187. package/dist/shared/node_modules/zod/v4/locales/ko.d.cts +4 -0
  5188. package/dist/shared/node_modules/zod/v4/locales/ko.d.ts +4 -0
  5189. package/dist/shared/node_modules/zod/v4/locales/ko.js +121 -0
  5190. package/dist/shared/node_modules/zod/v4/locales/mk.cjs +144 -0
  5191. package/dist/shared/node_modules/zod/v4/locales/mk.d.cts +4 -0
  5192. package/dist/shared/node_modules/zod/v4/locales/mk.d.ts +4 -0
  5193. package/dist/shared/node_modules/zod/v4/locales/mk.js +118 -0
  5194. package/dist/shared/node_modules/zod/v4/locales/ms.cjs +142 -0
  5195. package/dist/shared/node_modules/zod/v4/locales/ms.d.cts +4 -0
  5196. package/dist/shared/node_modules/zod/v4/locales/ms.d.ts +4 -0
  5197. package/dist/shared/node_modules/zod/v4/locales/ms.js +116 -0
  5198. package/dist/shared/node_modules/zod/v4/locales/nl.cjs +143 -0
  5199. package/dist/shared/node_modules/zod/v4/locales/nl.d.cts +4 -0
  5200. package/dist/shared/node_modules/zod/v4/locales/nl.d.ts +4 -0
  5201. package/dist/shared/node_modules/zod/v4/locales/nl.js +117 -0
  5202. package/dist/shared/node_modules/zod/v4/locales/no.cjs +142 -0
  5203. package/dist/shared/node_modules/zod/v4/locales/no.d.cts +4 -0
  5204. package/dist/shared/node_modules/zod/v4/locales/no.d.ts +4 -0
  5205. package/dist/shared/node_modules/zod/v4/locales/no.js +116 -0
  5206. package/dist/shared/node_modules/zod/v4/locales/ota.cjs +143 -0
  5207. package/dist/shared/node_modules/zod/v4/locales/ota.d.cts +4 -0
  5208. package/dist/shared/node_modules/zod/v4/locales/ota.d.ts +4 -0
  5209. package/dist/shared/node_modules/zod/v4/locales/ota.js +117 -0
  5210. package/dist/shared/node_modules/zod/v4/locales/pl.cjs +143 -0
  5211. package/dist/shared/node_modules/zod/v4/locales/pl.d.cts +4 -0
  5212. package/dist/shared/node_modules/zod/v4/locales/pl.d.ts +4 -0
  5213. package/dist/shared/node_modules/zod/v4/locales/pl.js +117 -0
  5214. package/dist/shared/node_modules/zod/v4/locales/ps.cjs +148 -0
  5215. package/dist/shared/node_modules/zod/v4/locales/ps.d.cts +4 -0
  5216. package/dist/shared/node_modules/zod/v4/locales/ps.d.ts +4 -0
  5217. package/dist/shared/node_modules/zod/v4/locales/ps.js +122 -0
  5218. package/dist/shared/node_modules/zod/v4/locales/pt.cjs +142 -0
  5219. package/dist/shared/node_modules/zod/v4/locales/pt.d.cts +4 -0
  5220. package/dist/shared/node_modules/zod/v4/locales/pt.d.ts +4 -0
  5221. package/dist/shared/node_modules/zod/v4/locales/pt.js +116 -0
  5222. package/dist/shared/node_modules/zod/v4/locales/ru.cjs +190 -0
  5223. package/dist/shared/node_modules/zod/v4/locales/ru.d.cts +4 -0
  5224. package/dist/shared/node_modules/zod/v4/locales/ru.d.ts +4 -0
  5225. package/dist/shared/node_modules/zod/v4/locales/ru.js +164 -0
  5226. package/dist/shared/node_modules/zod/v4/locales/sl.cjs +143 -0
  5227. package/dist/shared/node_modules/zod/v4/locales/sl.d.cts +4 -0
  5228. package/dist/shared/node_modules/zod/v4/locales/sl.d.ts +4 -0
  5229. package/dist/shared/node_modules/zod/v4/locales/sl.js +117 -0
  5230. package/dist/shared/node_modules/zod/v4/locales/sv.cjs +144 -0
  5231. package/dist/shared/node_modules/zod/v4/locales/sv.d.cts +4 -0
  5232. package/dist/shared/node_modules/zod/v4/locales/sv.d.ts +4 -0
  5233. package/dist/shared/node_modules/zod/v4/locales/sv.js +118 -0
  5234. package/dist/shared/node_modules/zod/v4/locales/ta.cjs +143 -0
  5235. package/dist/shared/node_modules/zod/v4/locales/ta.d.cts +4 -0
  5236. package/dist/shared/node_modules/zod/v4/locales/ta.d.ts +4 -0
  5237. package/dist/shared/node_modules/zod/v4/locales/ta.js +117 -0
  5238. package/dist/shared/node_modules/zod/v4/locales/th.cjs +143 -0
  5239. package/dist/shared/node_modules/zod/v4/locales/th.d.cts +4 -0
  5240. package/dist/shared/node_modules/zod/v4/locales/th.d.ts +4 -0
  5241. package/dist/shared/node_modules/zod/v4/locales/th.js +117 -0
  5242. package/dist/shared/node_modules/zod/v4/locales/tr.cjs +143 -0
  5243. package/dist/shared/node_modules/zod/v4/locales/tr.d.cts +5 -0
  5244. package/dist/shared/node_modules/zod/v4/locales/tr.d.ts +5 -0
  5245. package/dist/shared/node_modules/zod/v4/locales/tr.js +115 -0
  5246. package/dist/shared/node_modules/zod/v4/locales/ua.cjs +143 -0
  5247. package/dist/shared/node_modules/zod/v4/locales/ua.d.cts +4 -0
  5248. package/dist/shared/node_modules/zod/v4/locales/ua.d.ts +4 -0
  5249. package/dist/shared/node_modules/zod/v4/locales/ua.js +117 -0
  5250. package/dist/shared/node_modules/zod/v4/locales/ur.cjs +143 -0
  5251. package/dist/shared/node_modules/zod/v4/locales/ur.d.cts +4 -0
  5252. package/dist/shared/node_modules/zod/v4/locales/ur.d.ts +4 -0
  5253. package/dist/shared/node_modules/zod/v4/locales/ur.js +117 -0
  5254. package/dist/shared/node_modules/zod/v4/locales/vi.cjs +142 -0
  5255. package/dist/shared/node_modules/zod/v4/locales/vi.d.cts +4 -0
  5256. package/dist/shared/node_modules/zod/v4/locales/vi.d.ts +4 -0
  5257. package/dist/shared/node_modules/zod/v4/locales/vi.js +116 -0
  5258. package/dist/shared/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  5259. package/dist/shared/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  5260. package/dist/shared/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  5261. package/dist/shared/node_modules/zod/v4/locales/zh-CN.js +116 -0
  5262. package/dist/shared/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  5263. package/dist/shared/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  5264. package/dist/shared/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  5265. package/dist/shared/node_modules/zod/v4/locales/zh-TW.js +117 -0
  5266. package/dist/shared/node_modules/zod/v4/mini/checks.cjs +34 -0
  5267. package/dist/shared/node_modules/zod/v4/mini/checks.d.cts +1 -0
  5268. package/dist/shared/node_modules/zod/v4/mini/checks.d.ts +1 -0
  5269. package/dist/shared/node_modules/zod/v4/mini/checks.js +1 -0
  5270. package/dist/shared/node_modules/zod/v4/mini/coerce.cjs +47 -0
  5271. package/dist/shared/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  5272. package/dist/shared/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  5273. package/dist/shared/node_modules/zod/v4/mini/coerce.js +17 -0
  5274. package/dist/shared/node_modules/zod/v4/mini/external.cjs +62 -0
  5275. package/dist/shared/node_modules/zod/v4/mini/external.d.cts +11 -0
  5276. package/dist/shared/node_modules/zod/v4/mini/external.d.ts +11 -0
  5277. package/dist/shared/node_modules/zod/v4/mini/external.js +13 -0
  5278. package/dist/shared/node_modules/zod/v4/mini/index.cjs +32 -0
  5279. package/dist/shared/node_modules/zod/v4/mini/index.d.cts +3 -0
  5280. package/dist/shared/node_modules/zod/v4/mini/index.d.ts +3 -0
  5281. package/dist/shared/node_modules/zod/v4/mini/index.js +3 -0
  5282. package/dist/shared/node_modules/zod/v4/mini/iso.cjs +60 -0
  5283. package/dist/shared/node_modules/zod/v4/mini/iso.d.cts +22 -0
  5284. package/dist/shared/node_modules/zod/v4/mini/iso.d.ts +22 -0
  5285. package/dist/shared/node_modules/zod/v4/mini/iso.js +30 -0
  5286. package/dist/shared/node_modules/zod/v4/mini/parse.cjs +8 -0
  5287. package/dist/shared/node_modules/zod/v4/mini/parse.d.cts +1 -0
  5288. package/dist/shared/node_modules/zod/v4/mini/parse.d.ts +1 -0
  5289. package/dist/shared/node_modules/zod/v4/mini/parse.js +1 -0
  5290. package/dist/shared/node_modules/zod/v4/mini/schemas.cjs +839 -0
  5291. package/dist/shared/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  5292. package/dist/shared/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  5293. package/dist/shared/node_modules/zod/v4/mini/schemas.js +732 -0
  5294. package/dist/shared/node_modules/zod/v4-mini/index.cjs +17 -0
  5295. package/dist/shared/node_modules/zod/v4-mini/index.d.cts +1 -0
  5296. package/dist/shared/node_modules/zod/v4-mini/index.d.ts +1 -0
  5297. package/dist/shared/node_modules/zod/v4-mini/index.js +1 -0
  5298. package/dist/shared/package.json +17 -0
  5299. package/dist/tmux-manager.d.ts +254 -0
  5300. package/dist/tmux-manager.js +1287 -0
  5301. package/dist/tmux-manager.test.d.ts +1 -0
  5302. package/dist/tmux-manager.test.js +25 -0
  5303. package/package.json +60 -0
  5304. package/templates/interactive/color-picker.tsx +63 -0
  5305. package/templates/interactive/confirm.tsx +53 -0
  5306. package/templates/interactive/multi-select.tsx +63 -0
  5307. package/templates/interactive/select.tsx +43 -0
  5308. package/templates/interactive/text-input.tsx +47 -0
@@ -0,0 +1,4587 @@
1
+ // NOTE: Users of the `experimental` builds of React should add a reference
2
+ // to 'react/experimental' in their project. See experimental.d.ts's top comment
3
+ // for reference and documentation on how exactly to do it.
4
+
5
+ /// <reference path="global.d.ts" />
6
+
7
+ import * as CSS from "csstype";
8
+ import * as PropTypes from "prop-types";
9
+
10
+ type NativeAnimationEvent = AnimationEvent;
11
+ type NativeClipboardEvent = ClipboardEvent;
12
+ type NativeCompositionEvent = CompositionEvent;
13
+ type NativeDragEvent = DragEvent;
14
+ type NativeFocusEvent = FocusEvent;
15
+ type NativeInputEvent = InputEvent;
16
+ type NativeKeyboardEvent = KeyboardEvent;
17
+ type NativeMouseEvent = MouseEvent;
18
+ type NativeTouchEvent = TouchEvent;
19
+ type NativePointerEvent = PointerEvent;
20
+ type NativeTransitionEvent = TransitionEvent;
21
+ type NativeUIEvent = UIEvent;
22
+ type NativeWheelEvent = WheelEvent;
23
+
24
+ /**
25
+ * Used to represent DOM API's where users can either pass
26
+ * true or false as a boolean or as its equivalent strings.
27
+ */
28
+ type Booleanish = boolean | "true" | "false";
29
+
30
+ /**
31
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin MDN}
32
+ */
33
+ type CrossOrigin = "anonymous" | "use-credentials" | "" | undefined;
34
+
35
+ declare const UNDEFINED_VOID_ONLY: unique symbol;
36
+
37
+ /**
38
+ * The function returned from an effect passed to {@link React.useEffect useEffect},
39
+ * which can be used to clean up the effect when the component unmounts.
40
+ *
41
+ * @see {@link https://react.dev/reference/react/useEffect React Docs}
42
+ */
43
+ type Destructor = () => void | { [UNDEFINED_VOID_ONLY]: never };
44
+ type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never };
45
+
46
+ // eslint-disable-next-line @definitelytyped/export-just-namespace
47
+ export = React;
48
+ export as namespace React;
49
+
50
+ declare namespace React {
51
+ //
52
+ // React Elements
53
+ // ----------------------------------------------------------------------
54
+
55
+ /**
56
+ * Used to retrieve the possible components which accept a given set of props.
57
+ *
58
+ * Can be passed no type parameters to get a union of all possible components
59
+ * and tags.
60
+ *
61
+ * Is a superset of {@link ComponentType}.
62
+ *
63
+ * @template P The props to match against. If not passed, defaults to any.
64
+ * @template Tag An optional tag to match against. If not passed, attempts to match against all possible tags.
65
+ *
66
+ * @example
67
+ *
68
+ * ```tsx
69
+ * // All components and tags (img, embed etc.)
70
+ * // which accept `src`
71
+ * type SrcComponents = ElementType<{ src: any }>;
72
+ * ```
73
+ *
74
+ * @example
75
+ *
76
+ * ```tsx
77
+ * // All components
78
+ * type AllComponents = ElementType;
79
+ * ```
80
+ *
81
+ * @example
82
+ *
83
+ * ```tsx
84
+ * // All custom components which match `src`, and tags which
85
+ * // match `src`, narrowed down to just `audio` and `embed`
86
+ * type SrcComponents = ElementType<{ src: any }, 'audio' | 'embed'>;
87
+ * ```
88
+ */
89
+ type ElementType<P = any, Tag extends keyof JSX.IntrinsicElements = keyof JSX.IntrinsicElements> =
90
+ | { [K in Tag]: P extends JSX.IntrinsicElements[K] ? K : never }[Tag]
91
+ | ComponentType<P>;
92
+
93
+ /**
94
+ * Represents any user-defined component, either as a function or a class.
95
+ *
96
+ * Similar to {@link JSXElementConstructor}, but with extra properties like
97
+ * {@link FunctionComponent.defaultProps defaultProps } and
98
+ * {@link ComponentClass.contextTypes contextTypes}.
99
+ *
100
+ * @template P The props the component accepts.
101
+ *
102
+ * @see {@link ComponentClass}
103
+ * @see {@link FunctionComponent}
104
+ */
105
+ type ComponentType<P = {}> = ComponentClass<P> | FunctionComponent<P>;
106
+
107
+ /**
108
+ * Represents any user-defined component, either as a function or a class.
109
+ *
110
+ * Similar to {@link ComponentType}, but without extra properties like
111
+ * {@link FunctionComponent.defaultProps defaultProps } and
112
+ * {@link ComponentClass.contextTypes contextTypes}.
113
+ *
114
+ * @template P The props the component accepts.
115
+ */
116
+ type JSXElementConstructor<P> =
117
+ | ((
118
+ props: P,
119
+ /**
120
+ * @deprecated
121
+ *
122
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-stateless-function-components React Docs}
123
+ */
124
+ deprecatedLegacyContext?: any,
125
+ ) => ReactNode)
126
+ | (new(
127
+ props: P,
128
+ /**
129
+ * @deprecated
130
+ *
131
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods React Docs}
132
+ */
133
+ deprecatedLegacyContext?: any,
134
+ ) => Component<any, any>);
135
+
136
+ /**
137
+ * A readonly ref container where {@link current} cannot be mutated.
138
+ *
139
+ * Created by {@link createRef}, or {@link useRef} when passed `null`.
140
+ *
141
+ * @template T The type of the ref's value.
142
+ *
143
+ * @example
144
+ *
145
+ * ```tsx
146
+ * const ref = createRef<HTMLDivElement>();
147
+ *
148
+ * ref.current = document.createElement('div'); // Error
149
+ * ```
150
+ */
151
+ interface RefObject<T> {
152
+ /**
153
+ * The current value of the ref.
154
+ */
155
+ readonly current: T | null;
156
+ }
157
+
158
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES {
159
+ }
160
+ /**
161
+ * A callback fired whenever the ref's value changes.
162
+ *
163
+ * @template T The type of the ref's value.
164
+ *
165
+ * @see {@link https://react.dev/reference/react-dom/components/common#ref-callback React Docs}
166
+ *
167
+ * @example
168
+ *
169
+ * ```tsx
170
+ * <div ref={(node) => console.log(node)} />
171
+ * ```
172
+ */
173
+ type RefCallback<T> = {
174
+ bivarianceHack(
175
+ instance: T | null,
176
+ ):
177
+ | void
178
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[
179
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES
180
+ ];
181
+ }["bivarianceHack"];
182
+
183
+ /**
184
+ * A union type of all possible shapes for React refs.
185
+ *
186
+ * @see {@link RefCallback}
187
+ * @see {@link RefObject}
188
+ */
189
+
190
+ type Ref<T> = RefCallback<T> | RefObject<T> | null;
191
+ /**
192
+ * A legacy implementation of refs where you can pass a string to a ref prop.
193
+ *
194
+ * @see {@link https://react.dev/reference/react/Component#refs React Docs}
195
+ *
196
+ * @example
197
+ *
198
+ * ```tsx
199
+ * <div ref="myRef" />
200
+ * ```
201
+ */
202
+ // TODO: Remove the string ref special case from `PropsWithRef` once we remove LegacyRef
203
+ type LegacyRef<T> = string | Ref<T>;
204
+
205
+ /**
206
+ * Retrieves the type of the 'ref' prop for a given component type or tag name.
207
+ *
208
+ * @template C The component type.
209
+ *
210
+ * @example
211
+ *
212
+ * ```tsx
213
+ * type MyComponentRef = React.ElementRef<typeof MyComponent>;
214
+ * ```
215
+ *
216
+ * @example
217
+ *
218
+ * ```tsx
219
+ * type DivRef = React.ElementRef<'div'>;
220
+ * ```
221
+ */
222
+ type ElementRef<
223
+ C extends
224
+ | ForwardRefExoticComponent<any>
225
+ | { new(props: any): Component<any> }
226
+ | ((props: any, deprecatedLegacyContext?: any) => ReactNode)
227
+ | keyof JSX.IntrinsicElements,
228
+ > =
229
+ // need to check first if `ref` is a valid prop for ts@3.0
230
+ // otherwise it will infer `{}` instead of `never`
231
+ "ref" extends keyof ComponentPropsWithRef<C>
232
+ ? NonNullable<ComponentPropsWithRef<C>["ref"]> extends RefAttributes<
233
+ infer Instance
234
+ >["ref"] ? Instance
235
+ : never
236
+ : never;
237
+
238
+ type ComponentState = any;
239
+
240
+ /**
241
+ * A value which uniquely identifies a node among items in an array.
242
+ *
243
+ * @see {@link https://react.dev/learn/rendering-lists#keeping-list-items-in-order-with-key React Docs}
244
+ */
245
+ type Key = string | number | bigint;
246
+
247
+ /**
248
+ * @internal The props any component can receive.
249
+ * You don't have to add this type. All components automatically accept these props.
250
+ * ```tsx
251
+ * const Component = () => <div />;
252
+ * <Component key="one" />
253
+ * ```
254
+ *
255
+ * WARNING: The implementation of a component will never have access to these attributes.
256
+ * The following example would be incorrect usage because {@link Component} would never have access to `key`:
257
+ * ```tsx
258
+ * const Component = (props: React.Attributes) => props.key;
259
+ * ```
260
+ */
261
+ interface Attributes {
262
+ key?: Key | null | undefined;
263
+ }
264
+ /**
265
+ * The props any component accepting refs can receive.
266
+ * Class components, built-in browser components (e.g. `div`) and forwardRef components can receive refs and automatically accept these props.
267
+ * ```tsx
268
+ * const Component = forwardRef(() => <div />);
269
+ * <Component ref={(current) => console.log(current)} />
270
+ * ```
271
+ *
272
+ * You only need this type if you manually author the types of props that need to be compatible with legacy refs.
273
+ * ```tsx
274
+ * interface Props extends React.RefAttributes<HTMLDivElement> {}
275
+ * declare const Component: React.FunctionComponent<Props>;
276
+ * ```
277
+ *
278
+ * Otherwise it's simpler to directly use {@link Ref} since you can safely use the
279
+ * props type to describe to props that a consumer can pass to the component
280
+ * as well as describing the props the implementation of a component "sees".
281
+ * {@link RefAttributes} is generally not safe to describe both consumer and seen props.
282
+ *
283
+ * ```tsx
284
+ * interface Props extends {
285
+ * ref?: React.Ref<HTMLDivElement> | undefined;
286
+ * }
287
+ * declare const Component: React.FunctionComponent<Props>;
288
+ * ```
289
+ *
290
+ * WARNING: The implementation of a component will not have access to the same type in versions of React supporting string refs.
291
+ * The following example would be incorrect usage because {@link Component} would never have access to a `ref` with type `string`
292
+ * ```tsx
293
+ * const Component = (props: React.RefAttributes) => props.ref;
294
+ * ```
295
+ */
296
+ interface RefAttributes<T> extends Attributes {
297
+ /**
298
+ * Allows getting a ref to the component instance.
299
+ * Once the component unmounts, React will set `ref.current` to `null`
300
+ * (or call the ref with `null` if you passed a callback ref).
301
+ *
302
+ * @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
303
+ */
304
+ ref?: LegacyRef<T> | undefined;
305
+ }
306
+
307
+ /**
308
+ * Represents the built-in attributes available to class components.
309
+ */
310
+ interface ClassAttributes<T> extends RefAttributes<T> {
311
+ }
312
+
313
+ /**
314
+ * Represents a JSX element.
315
+ *
316
+ * Where {@link ReactNode} represents everything that can be rendered, `ReactElement`
317
+ * only represents JSX.
318
+ *
319
+ * @template P The type of the props object
320
+ * @template T The type of the component or tag
321
+ *
322
+ * @example
323
+ *
324
+ * ```tsx
325
+ * const element: ReactElement = <div />;
326
+ * ```
327
+ */
328
+ interface ReactElement<
329
+ P = any,
330
+ T extends string | JSXElementConstructor<any> = string | JSXElementConstructor<any>,
331
+ > {
332
+ type: T;
333
+ props: P;
334
+ key: string | null;
335
+ }
336
+
337
+ /**
338
+ * @deprecated
339
+ */
340
+ interface ReactComponentElement<
341
+ T extends keyof JSX.IntrinsicElements | JSXElementConstructor<any>,
342
+ P = Pick<ComponentProps<T>, Exclude<keyof ComponentProps<T>, "key" | "ref">>,
343
+ > extends ReactElement<P, Exclude<T, number>> {}
344
+
345
+ interface FunctionComponentElement<P> extends ReactElement<P, FunctionComponent<P>> {
346
+ ref?: ("ref" extends keyof P ? P extends { ref?: infer R | undefined } ? R : never : never) | undefined;
347
+ }
348
+
349
+ type CElement<P, T extends Component<P, ComponentState>> = ComponentElement<P, T>;
350
+ interface ComponentElement<P, T extends Component<P, ComponentState>> extends ReactElement<P, ComponentClass<P>> {
351
+ ref?: LegacyRef<T> | undefined;
352
+ }
353
+
354
+ /**
355
+ * @deprecated Use {@link ComponentElement} instead.
356
+ */
357
+ type ClassicElement<P> = CElement<P, ClassicComponent<P, ComponentState>>;
358
+
359
+ // string fallback for custom web-components
360
+ interface DOMElement<P extends HTMLAttributes<T> | SVGAttributes<T>, T extends Element>
361
+ extends ReactElement<P, string>
362
+ {
363
+ ref: LegacyRef<T>;
364
+ }
365
+
366
+ // ReactHTML for ReactHTMLElement
367
+ interface ReactHTMLElement<T extends HTMLElement> extends DetailedReactHTMLElement<AllHTMLAttributes<T>, T> {}
368
+
369
+ interface DetailedReactHTMLElement<P extends HTMLAttributes<T>, T extends HTMLElement> extends DOMElement<P, T> {
370
+ type: keyof ReactHTML;
371
+ }
372
+
373
+ // ReactSVG for ReactSVGElement
374
+ interface ReactSVGElement extends DOMElement<SVGAttributes<SVGElement>, SVGElement> {
375
+ type: keyof ReactSVG;
376
+ }
377
+
378
+ interface ReactPortal extends ReactElement {
379
+ children: ReactNode;
380
+ }
381
+
382
+ //
383
+ // Factories
384
+ // ----------------------------------------------------------------------
385
+
386
+ /** @deprecated */
387
+ type Factory<P> = (props?: Attributes & P, ...children: ReactNode[]) => ReactElement<P>;
388
+
389
+ /** @deprecated */
390
+ type SFCFactory<P> = FunctionComponentFactory<P>;
391
+
392
+ /** @deprecated */
393
+ type FunctionComponentFactory<P> = (
394
+ props?: Attributes & P,
395
+ ...children: ReactNode[]
396
+ ) => FunctionComponentElement<P>;
397
+
398
+ /** @deprecated */
399
+ type ComponentFactory<P, T extends Component<P, ComponentState>> = (
400
+ props?: ClassAttributes<T> & P,
401
+ ...children: ReactNode[]
402
+ ) => CElement<P, T>;
403
+
404
+ /** @deprecated */
405
+ type CFactory<P, T extends Component<P, ComponentState>> = ComponentFactory<P, T>;
406
+ /** @deprecated */
407
+ type ClassicFactory<P> = CFactory<P, ClassicComponent<P, ComponentState>>;
408
+
409
+ /** @deprecated */
410
+ type DOMFactory<P extends DOMAttributes<T>, T extends Element> = (
411
+ props?: ClassAttributes<T> & P | null,
412
+ ...children: ReactNode[]
413
+ ) => DOMElement<P, T>;
414
+
415
+ /** @deprecated */
416
+ interface HTMLFactory<T extends HTMLElement> extends DetailedHTMLFactory<AllHTMLAttributes<T>, T> {}
417
+
418
+ /** @deprecated */
419
+ interface DetailedHTMLFactory<P extends HTMLAttributes<T>, T extends HTMLElement> extends DOMFactory<P, T> {
420
+ (props?: ClassAttributes<T> & P | null, ...children: ReactNode[]): DetailedReactHTMLElement<P, T>;
421
+ }
422
+
423
+ /** @deprecated */
424
+ interface SVGFactory extends DOMFactory<SVGAttributes<SVGElement>, SVGElement> {
425
+ (
426
+ props?: ClassAttributes<SVGElement> & SVGAttributes<SVGElement> | null,
427
+ ...children: ReactNode[]
428
+ ): ReactSVGElement;
429
+ }
430
+
431
+ /**
432
+ * @deprecated - This type is not relevant when using React. Inline the type instead to make the intent clear.
433
+ */
434
+ type ReactText = string | number;
435
+ /**
436
+ * @deprecated - This type is not relevant when using React. Inline the type instead to make the intent clear.
437
+ */
438
+ type ReactChild = ReactElement | string | number;
439
+
440
+ /**
441
+ * @deprecated Use either `ReactNode[]` if you need an array or `Iterable<ReactNode>` if its passed to a host component.
442
+ */
443
+ interface ReactNodeArray extends ReadonlyArray<ReactNode> {}
444
+ /**
445
+ * WARNING: Not related to `React.Fragment`.
446
+ * @deprecated This type is not relevant when using React. Inline the type instead to make the intent clear.
447
+ */
448
+ type ReactFragment = Iterable<ReactNode>;
449
+
450
+ /**
451
+ * Different release channels declare additional types of ReactNode this particular release channel accepts.
452
+ * App or library types should never augment this interface.
453
+ */
454
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES {}
455
+
456
+ /**
457
+ * Represents all of the things React can render.
458
+ *
459
+ * Where {@link ReactElement} only represents JSX, `ReactNode` represents everything that can be rendered.
460
+ *
461
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/react-types/reactnode/ React TypeScript Cheatsheet}
462
+ *
463
+ * @example
464
+ *
465
+ * ```tsx
466
+ * // Typing children
467
+ * type Props = { children: ReactNode }
468
+ *
469
+ * const Component = ({ children }: Props) => <div>{children}</div>
470
+ *
471
+ * <Component>hello</Component>
472
+ * ```
473
+ *
474
+ * @example
475
+ *
476
+ * ```tsx
477
+ * // Typing a custom element
478
+ * type Props = { customElement: ReactNode }
479
+ *
480
+ * const Component = ({ customElement }: Props) => <div>{customElement}</div>
481
+ *
482
+ * <Component customElement={<div>hello</div>} />
483
+ * ```
484
+ */
485
+ // non-thenables need to be kept in sync with AwaitedReactNode
486
+ type ReactNode =
487
+ | ReactElement
488
+ | string
489
+ | number
490
+ | Iterable<ReactNode>
491
+ | ReactPortal
492
+ | boolean
493
+ | null
494
+ | undefined
495
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES[
496
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES
497
+ ];
498
+
499
+ //
500
+ // Top Level API
501
+ // ----------------------------------------------------------------------
502
+
503
+ // DOM Elements
504
+ /** @deprecated */
505
+ function createFactory<T extends HTMLElement>(
506
+ type: keyof ReactHTML,
507
+ ): HTMLFactory<T>;
508
+ /** @deprecated */
509
+ function createFactory(
510
+ type: keyof ReactSVG,
511
+ ): SVGFactory;
512
+ /** @deprecated */
513
+ function createFactory<P extends DOMAttributes<T>, T extends Element>(
514
+ type: string,
515
+ ): DOMFactory<P, T>;
516
+
517
+ // Custom components
518
+ /** @deprecated */
519
+ function createFactory<P>(type: FunctionComponent<P>): FunctionComponentFactory<P>;
520
+ /** @deprecated */
521
+ function createFactory<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>>(
522
+ type: ClassType<P, T, C>,
523
+ ): CFactory<P, T>;
524
+ /** @deprecated */
525
+ function createFactory<P>(type: ComponentClass<P>): Factory<P>;
526
+
527
+ // DOM Elements
528
+ // TODO: generalize this to everything in `keyof ReactHTML`, not just "input"
529
+ function createElement(
530
+ type: "input",
531
+ props?: InputHTMLAttributes<HTMLInputElement> & ClassAttributes<HTMLInputElement> | null,
532
+ ...children: ReactNode[]
533
+ ): DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
534
+ function createElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
535
+ type: keyof ReactHTML,
536
+ props?: ClassAttributes<T> & P | null,
537
+ ...children: ReactNode[]
538
+ ): DetailedReactHTMLElement<P, T>;
539
+ function createElement<P extends SVGAttributes<T>, T extends SVGElement>(
540
+ type: keyof ReactSVG,
541
+ props?: ClassAttributes<T> & P | null,
542
+ ...children: ReactNode[]
543
+ ): ReactSVGElement;
544
+ function createElement<P extends DOMAttributes<T>, T extends Element>(
545
+ type: string,
546
+ props?: ClassAttributes<T> & P | null,
547
+ ...children: ReactNode[]
548
+ ): DOMElement<P, T>;
549
+
550
+ // Custom components
551
+
552
+ function createElement<P extends {}>(
553
+ type: FunctionComponent<P>,
554
+ props?: Attributes & P | null,
555
+ ...children: ReactNode[]
556
+ ): FunctionComponentElement<P>;
557
+ function createElement<P extends {}, T extends Component<P, ComponentState>, C extends ComponentClass<P>>(
558
+ type: ClassType<P, T, C>,
559
+ props?: ClassAttributes<T> & P | null,
560
+ ...children: ReactNode[]
561
+ ): CElement<P, T>;
562
+ function createElement<P extends {}>(
563
+ type: FunctionComponent<P> | ComponentClass<P> | string,
564
+ props?: Attributes & P | null,
565
+ ...children: ReactNode[]
566
+ ): ReactElement<P>;
567
+
568
+ // DOM Elements
569
+ // ReactHTMLElement
570
+ function cloneElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
571
+ element: DetailedReactHTMLElement<P, T>,
572
+ props?: P,
573
+ ...children: ReactNode[]
574
+ ): DetailedReactHTMLElement<P, T>;
575
+ // ReactHTMLElement, less specific
576
+ function cloneElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
577
+ element: ReactHTMLElement<T>,
578
+ props?: P,
579
+ ...children: ReactNode[]
580
+ ): ReactHTMLElement<T>;
581
+ // SVGElement
582
+ function cloneElement<P extends SVGAttributes<T>, T extends SVGElement>(
583
+ element: ReactSVGElement,
584
+ props?: P,
585
+ ...children: ReactNode[]
586
+ ): ReactSVGElement;
587
+ // DOM Element (has to be the last, because type checking stops at first overload that fits)
588
+ function cloneElement<P extends DOMAttributes<T>, T extends Element>(
589
+ element: DOMElement<P, T>,
590
+ props?: DOMAttributes<T> & P,
591
+ ...children: ReactNode[]
592
+ ): DOMElement<P, T>;
593
+
594
+ // Custom components
595
+ function cloneElement<P>(
596
+ element: FunctionComponentElement<P>,
597
+ props?: Partial<P> & Attributes,
598
+ ...children: ReactNode[]
599
+ ): FunctionComponentElement<P>;
600
+ function cloneElement<P, T extends Component<P, ComponentState>>(
601
+ element: CElement<P, T>,
602
+ props?: Partial<P> & ClassAttributes<T>,
603
+ ...children: ReactNode[]
604
+ ): CElement<P, T>;
605
+ function cloneElement<P>(
606
+ element: ReactElement<P>,
607
+ props?: Partial<P> & Attributes,
608
+ ...children: ReactNode[]
609
+ ): ReactElement<P>;
610
+
611
+ /**
612
+ * Describes the props accepted by a Context {@link Provider}.
613
+ *
614
+ * @template T The type of the value the context provides.
615
+ */
616
+ interface ProviderProps<T> {
617
+ value: T;
618
+ children?: ReactNode | undefined;
619
+ }
620
+
621
+ /**
622
+ * Describes the props accepted by a Context {@link Consumer}.
623
+ *
624
+ * @template T The type of the value the context provides.
625
+ */
626
+ interface ConsumerProps<T> {
627
+ children: (value: T) => ReactNode;
628
+ }
629
+
630
+ /**
631
+ * An object masquerading as a component. These are created by functions
632
+ * like {@link forwardRef}, {@link memo}, and {@link createContext}.
633
+ *
634
+ * In order to make TypeScript work, we pretend that they are normal
635
+ * components.
636
+ *
637
+ * But they are, in fact, not callable - instead, they are objects which
638
+ * are treated specially by the renderer.
639
+ *
640
+ * @template P The props the component accepts.
641
+ */
642
+ interface ExoticComponent<P = {}> {
643
+ (props: P): ReactNode;
644
+ readonly $$typeof: symbol;
645
+ }
646
+
647
+ /**
648
+ * An {@link ExoticComponent} with a `displayName` property applied to it.
649
+ *
650
+ * @template P The props the component accepts.
651
+ */
652
+ interface NamedExoticComponent<P = {}> extends ExoticComponent<P> {
653
+ /**
654
+ * Used in debugging messages. You might want to set it
655
+ * explicitly if you want to display a different name for
656
+ * debugging purposes.
657
+ *
658
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
659
+ */
660
+ displayName?: string | undefined;
661
+ }
662
+
663
+ /**
664
+ * An {@link ExoticComponent} with a `propTypes` property applied to it.
665
+ *
666
+ * @template P The props the component accepts.
667
+ */
668
+ interface ProviderExoticComponent<P> extends ExoticComponent<P> {
669
+ propTypes?: WeakValidationMap<P> | undefined;
670
+ }
671
+
672
+ /**
673
+ * Used to retrieve the type of a context object from a {@link Context}.
674
+ *
675
+ * @template C The context object.
676
+ *
677
+ * @example
678
+ *
679
+ * ```tsx
680
+ * import { createContext } from 'react';
681
+ *
682
+ * const MyContext = createContext({ foo: 'bar' });
683
+ *
684
+ * type ContextType = ContextType<typeof MyContext>;
685
+ * // ContextType = { foo: string }
686
+ * ```
687
+ */
688
+ type ContextType<C extends Context<any>> = C extends Context<infer T> ? T : never;
689
+
690
+ /**
691
+ * Wraps your components to specify the value of this context for all components inside.
692
+ *
693
+ * @see {@link https://react.dev/reference/react/createContext#provider React Docs}
694
+ *
695
+ * @example
696
+ *
697
+ * ```tsx
698
+ * import { createContext } from 'react';
699
+ *
700
+ * const ThemeContext = createContext('light');
701
+ *
702
+ * function App() {
703
+ * return (
704
+ * <ThemeContext.Provider value="dark">
705
+ * <Toolbar />
706
+ * </ThemeContext.Provider>
707
+ * );
708
+ * }
709
+ * ```
710
+ */
711
+ type Provider<T> = ProviderExoticComponent<ProviderProps<T>>;
712
+
713
+ /**
714
+ * The old way to read context, before {@link useContext} existed.
715
+ *
716
+ * @see {@link https://react.dev/reference/react/createContext#consumer React Docs}
717
+ *
718
+ * @example
719
+ *
720
+ * ```tsx
721
+ * import { UserContext } from './user-context';
722
+ *
723
+ * function Avatar() {
724
+ * return (
725
+ * <UserContext.Consumer>
726
+ * {user => <img src={user.profileImage} alt={user.name} />}
727
+ * </UserContext.Consumer>
728
+ * );
729
+ * }
730
+ * ```
731
+ */
732
+ type Consumer<T> = ExoticComponent<ConsumerProps<T>>;
733
+
734
+ /**
735
+ * Context lets components pass information deep down without explicitly
736
+ * passing props.
737
+ *
738
+ * Created from {@link createContext}
739
+ *
740
+ * @see {@link https://react.dev/learn/passing-data-deeply-with-context React Docs}
741
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/context/ React TypeScript Cheatsheet}
742
+ *
743
+ * @example
744
+ *
745
+ * ```tsx
746
+ * import { createContext } from 'react';
747
+ *
748
+ * const ThemeContext = createContext('light');
749
+ * ```
750
+ */
751
+ interface Context<T> {
752
+ Provider: Provider<T>;
753
+ Consumer: Consumer<T>;
754
+ /**
755
+ * Used in debugging messages. You might want to set it
756
+ * explicitly if you want to display a different name for
757
+ * debugging purposes.
758
+ *
759
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
760
+ */
761
+ displayName?: string | undefined;
762
+ }
763
+
764
+ /**
765
+ * Lets you create a {@link Context} that components can provide or read.
766
+ *
767
+ * @param defaultValue The value you want the context to have when there is no matching
768
+ * {@link Provider} in the tree above the component reading the context. This is meant
769
+ * as a "last resort" fallback.
770
+ *
771
+ * @see {@link https://react.dev/reference/react/createContext#reference React Docs}
772
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/context/ React TypeScript Cheatsheet}
773
+ *
774
+ * @example
775
+ *
776
+ * ```tsx
777
+ * import { createContext } from 'react';
778
+ *
779
+ * const ThemeContext = createContext('light');
780
+ * ```
781
+ */
782
+ function createContext<T>(
783
+ // If you thought this should be optional, see
784
+ // https://github.com/DefinitelyTyped/DefinitelyTyped/pull/24509#issuecomment-382213106
785
+ defaultValue: T,
786
+ ): Context<T>;
787
+
788
+ function isValidElement<P>(object: {} | null | undefined): object is ReactElement<P>;
789
+
790
+ /**
791
+ * Maintainer's note: Sync with {@link ReactChildren} until {@link ReactChildren} is removed.
792
+ */
793
+ const Children: {
794
+ map<T, C>(
795
+ children: C | readonly C[],
796
+ fn: (child: C, index: number) => T,
797
+ ): C extends null | undefined ? C : Array<Exclude<T, boolean | null | undefined>>;
798
+ forEach<C>(children: C | readonly C[], fn: (child: C, index: number) => void): void;
799
+ count(children: any): number;
800
+ only<C>(children: C): C extends any[] ? never : C;
801
+ toArray(children: ReactNode | ReactNode[]): Array<Exclude<ReactNode, boolean | null | undefined>>;
802
+ };
803
+ /**
804
+ * Lets you group elements without a wrapper node.
805
+ *
806
+ * @see {@link https://react.dev/reference/react/Fragment React Docs}
807
+ *
808
+ * @example
809
+ *
810
+ * ```tsx
811
+ * import { Fragment } from 'react';
812
+ *
813
+ * <Fragment>
814
+ * <td>Hello</td>
815
+ * <td>World</td>
816
+ * </Fragment>
817
+ * ```
818
+ *
819
+ * @example
820
+ *
821
+ * ```tsx
822
+ * // Using the <></> shorthand syntax:
823
+ *
824
+ * <>
825
+ * <td>Hello</td>
826
+ * <td>World</td>
827
+ * </>
828
+ * ```
829
+ */
830
+ const Fragment: ExoticComponent<{ children?: ReactNode | undefined }>;
831
+
832
+ /**
833
+ * Lets you find common bugs in your components early during development.
834
+ *
835
+ * @see {@link https://react.dev/reference/react/StrictMode React Docs}
836
+ *
837
+ * @example
838
+ *
839
+ * ```tsx
840
+ * import { StrictMode } from 'react';
841
+ *
842
+ * <StrictMode>
843
+ * <App />
844
+ * </StrictMode>
845
+ * ```
846
+ */
847
+ const StrictMode: ExoticComponent<{ children?: ReactNode | undefined }>;
848
+
849
+ /**
850
+ * The props accepted by {@link Suspense}.
851
+ *
852
+ * @see {@link https://react.dev/reference/react/Suspense React Docs}
853
+ */
854
+ interface SuspenseProps {
855
+ children?: ReactNode | undefined;
856
+
857
+ /** A fallback react tree to show when a Suspense child (like React.lazy) suspends */
858
+ fallback?: ReactNode;
859
+
860
+ /**
861
+ * A name for this Suspense boundary for instrumentation purposes.
862
+ * The name will help identify this boundary in React DevTools.
863
+ */
864
+ name?: string | undefined;
865
+ }
866
+
867
+ /**
868
+ * Lets you display a fallback until its children have finished loading.
869
+ *
870
+ * @see {@link https://react.dev/reference/react/Suspense React Docs}
871
+ *
872
+ * @example
873
+ *
874
+ * ```tsx
875
+ * import { Suspense } from 'react';
876
+ *
877
+ * <Suspense fallback={<Loading />}>
878
+ * <ProfileDetails />
879
+ * </Suspense>
880
+ * ```
881
+ */
882
+ const Suspense: ExoticComponent<SuspenseProps>;
883
+ const version: string;
884
+
885
+ /**
886
+ * The callback passed to {@link ProfilerProps.onRender}.
887
+ *
888
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
889
+ */
890
+ type ProfilerOnRenderCallback = (
891
+ /**
892
+ * The string id prop of the {@link Profiler} tree that has just committed. This lets
893
+ * you identify which part of the tree was committed if you are using multiple
894
+ * profilers.
895
+ *
896
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
897
+ */
898
+ id: string,
899
+ /**
900
+ * This lets you know whether the tree has just been mounted for the first time
901
+ * or re-rendered due to a change in props, state, or hooks.
902
+ *
903
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
904
+ */
905
+ phase: "mount" | "update" | "nested-update",
906
+ /**
907
+ * The number of milliseconds spent rendering the {@link Profiler} and its descendants
908
+ * for the current update. This indicates how well the subtree makes use of
909
+ * memoization (e.g. {@link memo} and {@link useMemo}). Ideally this value should decrease
910
+ * significantly after the initial mount as many of the descendants will only need to
911
+ * re-render if their specific props change.
912
+ *
913
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
914
+ */
915
+ actualDuration: number,
916
+ /**
917
+ * The number of milliseconds estimating how much time it would take to re-render the entire
918
+ * {@link Profiler} subtree without any optimizations. It is calculated by summing up the most
919
+ * recent render durations of each component in the tree. This value estimates a worst-case
920
+ * cost of rendering (e.g. the initial mount or a tree with no memoization). Compare
921
+ * {@link actualDuration} against it to see if memoization is working.
922
+ *
923
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
924
+ */
925
+ baseDuration: number,
926
+ /**
927
+ * A numeric timestamp for when React began rendering the current update.
928
+ *
929
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
930
+ */
931
+ startTime: number,
932
+ /**
933
+ * A numeric timestamp for when React committed the current update. This value is shared
934
+ * between all profilers in a commit, enabling them to be grouped if desirable.
935
+ *
936
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
937
+ */
938
+ commitTime: number,
939
+ ) => void;
940
+
941
+ /**
942
+ * The props accepted by {@link Profiler}.
943
+ *
944
+ * @see {@link https://react.dev/reference/react/Profiler React Docs}
945
+ */
946
+ interface ProfilerProps {
947
+ children?: ReactNode | undefined;
948
+ id: string;
949
+ onRender: ProfilerOnRenderCallback;
950
+ }
951
+
952
+ /**
953
+ * Lets you measure rendering performance of a React tree programmatically.
954
+ *
955
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
956
+ *
957
+ * @example
958
+ *
959
+ * ```tsx
960
+ * <Profiler id="App" onRender={onRender}>
961
+ * <App />
962
+ * </Profiler>
963
+ * ```
964
+ */
965
+ const Profiler: ExoticComponent<ProfilerProps>;
966
+
967
+ //
968
+ // Component API
969
+ // ----------------------------------------------------------------------
970
+
971
+ type ReactInstance = Component<any> | Element;
972
+
973
+ // Base component for plain JS classes
974
+ interface Component<P = {}, S = {}, SS = any> extends ComponentLifecycle<P, S, SS> {}
975
+ class Component<P, S> {
976
+ /**
977
+ * If set, `this.context` will be set at runtime to the current value of the given Context.
978
+ *
979
+ * @example
980
+ *
981
+ * ```ts
982
+ * type MyContext = number
983
+ * const Ctx = React.createContext<MyContext>(0)
984
+ *
985
+ * class Foo extends React.Component {
986
+ * static contextType = Ctx
987
+ * context!: React.ContextType<typeof Ctx>
988
+ * render () {
989
+ * return <>My context's value: {this.context}</>;
990
+ * }
991
+ * }
992
+ * ```
993
+ *
994
+ * @see {@link https://react.dev/reference/react/Component#static-contexttype}
995
+ */
996
+ static contextType?: Context<any> | undefined;
997
+
998
+ /**
999
+ * If using the new style context, re-declare this in your class to be the
1000
+ * `React.ContextType` of your `static contextType`.
1001
+ * Should be used with type annotation or static contextType.
1002
+ *
1003
+ * @example
1004
+ * ```ts
1005
+ * static contextType = MyContext
1006
+ * // For TS pre-3.7:
1007
+ * context!: React.ContextType<typeof MyContext>
1008
+ * // For TS 3.7 and above:
1009
+ * declare context: React.ContextType<typeof MyContext>
1010
+ * ```
1011
+ *
1012
+ * @see {@link https://react.dev/reference/react/Component#context React Docs}
1013
+ */
1014
+ context: unknown;
1015
+
1016
+ constructor(props: P);
1017
+ /**
1018
+ * @deprecated
1019
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html React Docs}
1020
+ */
1021
+ constructor(props: P, context: any);
1022
+
1023
+ // We MUST keep setState() as a unified signature because it allows proper checking of the method return type.
1024
+ // See: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18365#issuecomment-351013257
1025
+ // Also, the ` | S` allows intellisense to not be dumbisense
1026
+ setState<K extends keyof S>(
1027
+ state: ((prevState: Readonly<S>, props: Readonly<P>) => Pick<S, K> | S | null) | (Pick<S, K> | S | null),
1028
+ callback?: () => void,
1029
+ ): void;
1030
+
1031
+ forceUpdate(callback?: () => void): void;
1032
+ render(): ReactNode;
1033
+
1034
+ readonly props: Readonly<P>;
1035
+ state: Readonly<S>;
1036
+ /**
1037
+ * @deprecated
1038
+ *
1039
+ * @see {@link https://legacy.reactjs.org/docs/refs-and-the-dom.html#legacy-api-string-refs Legacy React Docs}
1040
+ */
1041
+ refs: {
1042
+ [key: string]: ReactInstance;
1043
+ };
1044
+ }
1045
+
1046
+ class PureComponent<P = {}, S = {}, SS = any> extends Component<P, S, SS> {}
1047
+
1048
+ /**
1049
+ * @deprecated Use `ClassicComponent` from `create-react-class`
1050
+ *
1051
+ * @see {@link https://legacy.reactjs.org/docs/react-without-es6.html Legacy React Docs}
1052
+ * @see {@link https://www.npmjs.com/package/create-react-class `create-react-class` on npm}
1053
+ */
1054
+ interface ClassicComponent<P = {}, S = {}> extends Component<P, S> {
1055
+ replaceState(nextState: S, callback?: () => void): void;
1056
+ isMounted(): boolean;
1057
+ getInitialState?(): S;
1058
+ }
1059
+
1060
+ interface ChildContextProvider<CC> {
1061
+ getChildContext(): CC;
1062
+ }
1063
+
1064
+ //
1065
+ // Class Interfaces
1066
+ // ----------------------------------------------------------------------
1067
+
1068
+ /**
1069
+ * Represents the type of a function component. Can optionally
1070
+ * receive a type argument that represents the props the component
1071
+ * receives.
1072
+ *
1073
+ * @template P The props the component accepts.
1074
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components React TypeScript Cheatsheet}
1075
+ * @alias for {@link FunctionComponent}
1076
+ *
1077
+ * @example
1078
+ *
1079
+ * ```tsx
1080
+ * // With props:
1081
+ * type Props = { name: string }
1082
+ *
1083
+ * const MyComponent: FC<Props> = (props) => {
1084
+ * return <div>{props.name}</div>
1085
+ * }
1086
+ * ```
1087
+ *
1088
+ * @example
1089
+ *
1090
+ * ```tsx
1091
+ * // Without props:
1092
+ * const MyComponentWithoutProps: FC = () => {
1093
+ * return <div>MyComponentWithoutProps</div>
1094
+ * }
1095
+ * ```
1096
+ */
1097
+ type FC<P = {}> = FunctionComponent<P>;
1098
+
1099
+ /**
1100
+ * Represents the type of a function component. Can optionally
1101
+ * receive a type argument that represents the props the component
1102
+ * accepts.
1103
+ *
1104
+ * @template P The props the component accepts.
1105
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components React TypeScript Cheatsheet}
1106
+ *
1107
+ * @example
1108
+ *
1109
+ * ```tsx
1110
+ * // With props:
1111
+ * type Props = { name: string }
1112
+ *
1113
+ * const MyComponent: FunctionComponent<Props> = (props) => {
1114
+ * return <div>{props.name}</div>
1115
+ * }
1116
+ * ```
1117
+ *
1118
+ * @example
1119
+ *
1120
+ * ```tsx
1121
+ * // Without props:
1122
+ * const MyComponentWithoutProps: FunctionComponent = () => {
1123
+ * return <div>MyComponentWithoutProps</div>
1124
+ * }
1125
+ * ```
1126
+ */
1127
+ interface FunctionComponent<P = {}> {
1128
+ (
1129
+ props: P,
1130
+ /**
1131
+ * @deprecated
1132
+ *
1133
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods React Docs}
1134
+ */
1135
+ deprecatedLegacyContext?: any,
1136
+ ): ReactNode;
1137
+ /**
1138
+ * Used to declare the types of the props accepted by the
1139
+ * component. These types will be checked during rendering
1140
+ * and in development only.
1141
+ *
1142
+ * We recommend using TypeScript instead of checking prop
1143
+ * types at runtime.
1144
+ *
1145
+ * @see {@link https://react.dev/reference/react/Component#static-proptypes React Docs}
1146
+ */
1147
+ propTypes?: WeakValidationMap<P> | undefined;
1148
+ /**
1149
+ * @deprecated
1150
+ *
1151
+ * Lets you specify which legacy context is consumed by
1152
+ * this component.
1153
+ *
1154
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html Legacy React Docs}
1155
+ */
1156
+ contextTypes?: ValidationMap<any> | undefined;
1157
+ /**
1158
+ * Used to define default values for the props accepted by
1159
+ * the component.
1160
+ *
1161
+ * @see {@link https://react.dev/reference/react/Component#static-defaultprops React Docs}
1162
+ *
1163
+ * @example
1164
+ *
1165
+ * ```tsx
1166
+ * type Props = { name?: string }
1167
+ *
1168
+ * const MyComponent: FC<Props> = (props) => {
1169
+ * return <div>{props.name}</div>
1170
+ * }
1171
+ *
1172
+ * MyComponent.defaultProps = {
1173
+ * name: 'John Doe'
1174
+ * }
1175
+ * ```
1176
+ *
1177
+ * @deprecated Use {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#default_value|default values for destructuring assignments instead}.
1178
+ */
1179
+ defaultProps?: Partial<P> | undefined;
1180
+ /**
1181
+ * Used in debugging messages. You might want to set it
1182
+ * explicitly if you want to display a different name for
1183
+ * debugging purposes.
1184
+ *
1185
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1186
+ *
1187
+ * @example
1188
+ *
1189
+ * ```tsx
1190
+ *
1191
+ * const MyComponent: FC = () => {
1192
+ * return <div>Hello!</div>
1193
+ * }
1194
+ *
1195
+ * MyComponent.displayName = 'MyAwesomeComponent'
1196
+ * ```
1197
+ */
1198
+ displayName?: string | undefined;
1199
+ }
1200
+
1201
+ /**
1202
+ * @deprecated - Equivalent to {@link React.FunctionComponent}.
1203
+ *
1204
+ * @see {@link React.FunctionComponent}
1205
+ * @alias {@link VoidFunctionComponent}
1206
+ */
1207
+ type VFC<P = {}> = VoidFunctionComponent<P>;
1208
+
1209
+ /**
1210
+ * @deprecated - Equivalent to {@link React.FunctionComponent}.
1211
+ *
1212
+ * @see {@link React.FunctionComponent}
1213
+ */
1214
+ interface VoidFunctionComponent<P = {}> {
1215
+ (
1216
+ props: P,
1217
+ /**
1218
+ * @deprecated
1219
+ *
1220
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods React Docs}
1221
+ */
1222
+ deprecatedLegacyContext?: any,
1223
+ ): ReactNode;
1224
+ propTypes?: WeakValidationMap<P> | undefined;
1225
+ contextTypes?: ValidationMap<any> | undefined;
1226
+ /**
1227
+ * @deprecated Use {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#default_value|default values for destructuring assignments instead}.
1228
+ */
1229
+ defaultProps?: Partial<P> | undefined;
1230
+ displayName?: string | undefined;
1231
+ }
1232
+
1233
+ /**
1234
+ * The type of the ref received by a {@link ForwardRefRenderFunction}.
1235
+ *
1236
+ * @see {@link ForwardRefRenderFunction}
1237
+ */
1238
+ type ForwardedRef<T> = ((instance: T | null) => void) | MutableRefObject<T | null> | null;
1239
+
1240
+ /**
1241
+ * The type of the function passed to {@link forwardRef}. This is considered different
1242
+ * to a normal {@link FunctionComponent} because it receives an additional argument,
1243
+ *
1244
+ * @param props Props passed to the component, if any.
1245
+ * @param ref A ref forwarded to the component of type {@link ForwardedRef}.
1246
+ *
1247
+ * @template T The type of the forwarded ref.
1248
+ * @template P The type of the props the component accepts.
1249
+ *
1250
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/forward_and_create_ref/ React TypeScript Cheatsheet}
1251
+ * @see {@link forwardRef}
1252
+ */
1253
+ interface ForwardRefRenderFunction<T, P = {}> {
1254
+ (props: P, ref: ForwardedRef<T>): ReactNode;
1255
+ /**
1256
+ * Used in debugging messages. You might want to set it
1257
+ * explicitly if you want to display a different name for
1258
+ * debugging purposes.
1259
+ *
1260
+ * Will show `ForwardRef(${Component.displayName || Component.name})`
1261
+ * in devtools by default, but can be given its own specific name.
1262
+ *
1263
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1264
+ */
1265
+ displayName?: string | undefined;
1266
+ /**
1267
+ * defaultProps are not supported on render functions passed to forwardRef.
1268
+ *
1269
+ * @see {@link https://github.com/microsoft/TypeScript/issues/36826 linked GitHub issue} for context
1270
+ * @see {@link https://react.dev/reference/react/Component#static-defaultprops React Docs}
1271
+ */
1272
+ defaultProps?: never | undefined;
1273
+ /**
1274
+ * propTypes are not supported on render functions passed to forwardRef.
1275
+ *
1276
+ * @see {@link https://github.com/microsoft/TypeScript/issues/36826 linked GitHub issue} for context
1277
+ * @see {@link https://react.dev/reference/react/Component#static-proptypes React Docs}
1278
+ */
1279
+ propTypes?: never | undefined;
1280
+ }
1281
+
1282
+ /**
1283
+ * Represents a component class in React.
1284
+ *
1285
+ * @template P The props the component accepts.
1286
+ * @template S The internal state of the component.
1287
+ */
1288
+ interface ComponentClass<P = {}, S = ComponentState> extends StaticLifecycle<P, S> {
1289
+ new(
1290
+ props: P,
1291
+ /**
1292
+ * @deprecated
1293
+ *
1294
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#referencing-context-in-lifecycle-methods React Docs}
1295
+ */
1296
+ deprecatedLegacyContext?: any,
1297
+ ): Component<P, S>;
1298
+ /**
1299
+ * Used to declare the types of the props accepted by the
1300
+ * component. These types will be checked during rendering
1301
+ * and in development only.
1302
+ *
1303
+ * We recommend using TypeScript instead of checking prop
1304
+ * types at runtime.
1305
+ *
1306
+ * @see {@link https://react.dev/reference/react/Component#static-proptypes React Docs}
1307
+ */
1308
+ propTypes?: WeakValidationMap<P> | undefined;
1309
+ contextType?: Context<any> | undefined;
1310
+ /**
1311
+ * @deprecated use {@link ComponentClass.contextType} instead
1312
+ *
1313
+ * Lets you specify which legacy context is consumed by
1314
+ * this component.
1315
+ *
1316
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html Legacy React Docs}
1317
+ */
1318
+ contextTypes?: ValidationMap<any> | undefined;
1319
+ /**
1320
+ * @deprecated
1321
+ *
1322
+ * @see {@link https://legacy.reactjs.org/docs/legacy-context.html#how-to-use-context Legacy React Docs}
1323
+ */
1324
+ childContextTypes?: ValidationMap<any> | undefined;
1325
+ /**
1326
+ * Used to define default values for the props accepted by
1327
+ * the component.
1328
+ *
1329
+ * @see {@link https://react.dev/reference/react/Component#static-defaultprops React Docs}
1330
+ */
1331
+ defaultProps?: Partial<P> | undefined;
1332
+ /**
1333
+ * Used in debugging messages. You might want to set it
1334
+ * explicitly if you want to display a different name for
1335
+ * debugging purposes.
1336
+ *
1337
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1338
+ */
1339
+ displayName?: string | undefined;
1340
+ }
1341
+
1342
+ /**
1343
+ * @deprecated Use `ClassicComponentClass` from `create-react-class`
1344
+ *
1345
+ * @see {@link https://legacy.reactjs.org/docs/react-without-es6.html Legacy React Docs}
1346
+ * @see {@link https://www.npmjs.com/package/create-react-class `create-react-class` on npm}
1347
+ */
1348
+ interface ClassicComponentClass<P = {}> extends ComponentClass<P> {
1349
+ new(props: P, deprecatedLegacyContext?: any): ClassicComponent<P, ComponentState>;
1350
+ getDefaultProps?(): P;
1351
+ }
1352
+
1353
+ /**
1354
+ * Used in {@link createElement} and {@link createFactory} to represent
1355
+ * a class.
1356
+ *
1357
+ * An intersection type is used to infer multiple type parameters from
1358
+ * a single argument, which is useful for many top-level API defs.
1359
+ * See {@link https://github.com/Microsoft/TypeScript/issues/7234 this GitHub issue}
1360
+ * for more info.
1361
+ */
1362
+ type ClassType<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>> =
1363
+ & C
1364
+ & (new(props: P, deprecatedLegacyContext?: any) => T);
1365
+
1366
+ //
1367
+ // Component Specs and Lifecycle
1368
+ // ----------------------------------------------------------------------
1369
+
1370
+ // This should actually be something like `Lifecycle<P, S> | DeprecatedLifecycle<P, S>`,
1371
+ // as React will _not_ call the deprecated lifecycle methods if any of the new lifecycle
1372
+ // methods are present.
1373
+ interface ComponentLifecycle<P, S, SS = any> extends NewLifecycle<P, S, SS>, DeprecatedLifecycle<P, S> {
1374
+ /**
1375
+ * Called immediately after a component is mounted. Setting state here will trigger re-rendering.
1376
+ */
1377
+ componentDidMount?(): void;
1378
+ /**
1379
+ * Called to determine whether the change in props and state should trigger a re-render.
1380
+ *
1381
+ * `Component` always returns true.
1382
+ * `PureComponent` implements a shallow comparison on props and state and returns true if any
1383
+ * props or states have changed.
1384
+ *
1385
+ * If false is returned, {@link Component.render}, `componentWillUpdate`
1386
+ * and `componentDidUpdate` will not be called.
1387
+ */
1388
+ shouldComponentUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): boolean;
1389
+ /**
1390
+ * Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as
1391
+ * cancelled network requests, or cleaning up any DOM elements created in `componentDidMount`.
1392
+ */
1393
+ componentWillUnmount?(): void;
1394
+ /**
1395
+ * Catches exceptions generated in descendant components. Unhandled exceptions will cause
1396
+ * the entire component tree to unmount.
1397
+ */
1398
+ componentDidCatch?(error: Error, errorInfo: ErrorInfo): void;
1399
+ }
1400
+
1401
+ // Unfortunately, we have no way of declaring that the component constructor must implement this
1402
+ interface StaticLifecycle<P, S> {
1403
+ getDerivedStateFromProps?: GetDerivedStateFromProps<P, S> | undefined;
1404
+ getDerivedStateFromError?: GetDerivedStateFromError<P, S> | undefined;
1405
+ }
1406
+
1407
+ type GetDerivedStateFromProps<P, S> =
1408
+ /**
1409
+ * Returns an update to a component's state based on its new props and old state.
1410
+ *
1411
+ * Note: its presence prevents any of the deprecated lifecycle methods from being invoked
1412
+ */
1413
+ (nextProps: Readonly<P>, prevState: S) => Partial<S> | null;
1414
+
1415
+ type GetDerivedStateFromError<P, S> =
1416
+ /**
1417
+ * This lifecycle is invoked after an error has been thrown by a descendant component.
1418
+ * It receives the error that was thrown as a parameter and should return a value to update state.
1419
+ *
1420
+ * Note: its presence prevents any of the deprecated lifecycle methods from being invoked
1421
+ */
1422
+ (error: any) => Partial<S> | null;
1423
+
1424
+ // This should be "infer SS" but can't use it yet
1425
+ interface NewLifecycle<P, S, SS> {
1426
+ /**
1427
+ * Runs before React applies the result of {@link Component.render render} to the document, and
1428
+ * returns an object to be given to {@link componentDidUpdate}. Useful for saving
1429
+ * things such as scroll position before {@link Component.render render} causes changes to it.
1430
+ *
1431
+ * Note: the presence of this method prevents any of the deprecated
1432
+ * lifecycle events from running.
1433
+ */
1434
+ getSnapshotBeforeUpdate?(prevProps: Readonly<P>, prevState: Readonly<S>): SS | null;
1435
+ /**
1436
+ * Called immediately after updating occurs. Not called for the initial render.
1437
+ *
1438
+ * The snapshot is only present if {@link getSnapshotBeforeUpdate} is present and returns non-null.
1439
+ */
1440
+ componentDidUpdate?(prevProps: Readonly<P>, prevState: Readonly<S>, snapshot?: SS): void;
1441
+ }
1442
+
1443
+ interface DeprecatedLifecycle<P, S> {
1444
+ /**
1445
+ * Called immediately before mounting occurs, and before {@link Component.render}.
1446
+ * Avoid introducing any side-effects or subscriptions in this method.
1447
+ *
1448
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1449
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1450
+ * this from being invoked.
1451
+ *
1452
+ * @deprecated 16.3, use {@link ComponentLifecycle.componentDidMount componentDidMount} or the constructor instead; will stop working in React 17
1453
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state}
1454
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1455
+ */
1456
+ componentWillMount?(): void;
1457
+ /**
1458
+ * Called immediately before mounting occurs, and before {@link Component.render}.
1459
+ * Avoid introducing any side-effects or subscriptions in this method.
1460
+ *
1461
+ * This method will not stop working in React 17.
1462
+ *
1463
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1464
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1465
+ * this from being invoked.
1466
+ *
1467
+ * @deprecated 16.3, use {@link ComponentLifecycle.componentDidMount componentDidMount} or the constructor instead
1468
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state}
1469
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1470
+ */
1471
+ UNSAFE_componentWillMount?(): void;
1472
+ /**
1473
+ * Called when the component may be receiving new props.
1474
+ * React may call this even if props have not changed, so be sure to compare new and existing
1475
+ * props if you only want to handle changes.
1476
+ *
1477
+ * Calling {@link Component.setState} generally does not trigger this method.
1478
+ *
1479
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1480
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1481
+ * this from being invoked.
1482
+ *
1483
+ * @deprecated 16.3, use static {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} instead; will stop working in React 17
1484
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props}
1485
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1486
+ */
1487
+ componentWillReceiveProps?(nextProps: Readonly<P>, nextContext: any): void;
1488
+ /**
1489
+ * Called when the component may be receiving new props.
1490
+ * React may call this even if props have not changed, so be sure to compare new and existing
1491
+ * props if you only want to handle changes.
1492
+ *
1493
+ * Calling {@link Component.setState} generally does not trigger this method.
1494
+ *
1495
+ * This method will not stop working in React 17.
1496
+ *
1497
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1498
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1499
+ * this from being invoked.
1500
+ *
1501
+ * @deprecated 16.3, use static {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} instead
1502
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props}
1503
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1504
+ */
1505
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<P>, nextContext: any): void;
1506
+ /**
1507
+ * Called immediately before rendering when new props or state is received. Not called for the initial render.
1508
+ *
1509
+ * Note: You cannot call {@link Component.setState} here.
1510
+ *
1511
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1512
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1513
+ * this from being invoked.
1514
+ *
1515
+ * @deprecated 16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17
1516
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update}
1517
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1518
+ */
1519
+ componentWillUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): void;
1520
+ /**
1521
+ * Called immediately before rendering when new props or state is received. Not called for the initial render.
1522
+ *
1523
+ * Note: You cannot call {@link Component.setState} here.
1524
+ *
1525
+ * This method will not stop working in React 17.
1526
+ *
1527
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1528
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1529
+ * this from being invoked.
1530
+ *
1531
+ * @deprecated 16.3, use getSnapshotBeforeUpdate instead
1532
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update}
1533
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1534
+ */
1535
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): void;
1536
+ }
1537
+
1538
+ /**
1539
+ * @deprecated
1540
+ *
1541
+ * @see {@link https://legacy.reactjs.org/blog/2016/07/13/mixins-considered-harmful.html Mixins Considered Harmful}
1542
+ */
1543
+ interface Mixin<P, S> extends ComponentLifecycle<P, S> {
1544
+ mixins?: Array<Mixin<P, S>> | undefined;
1545
+ statics?: {
1546
+ [key: string]: any;
1547
+ } | undefined;
1548
+
1549
+ displayName?: string | undefined;
1550
+ propTypes?: ValidationMap<any> | undefined;
1551
+ contextTypes?: ValidationMap<any> | undefined;
1552
+ childContextTypes?: ValidationMap<any> | undefined;
1553
+
1554
+ getDefaultProps?(): P;
1555
+ getInitialState?(): S;
1556
+ }
1557
+
1558
+ /**
1559
+ * @deprecated
1560
+ *
1561
+ * @see {@link https://legacy.reactjs.org/blog/2016/07/13/mixins-considered-harmful.html Mixins Considered Harmful}
1562
+ */
1563
+ interface ComponentSpec<P, S> extends Mixin<P, S> {
1564
+ render(): ReactNode;
1565
+
1566
+ [propertyName: string]: any;
1567
+ }
1568
+
1569
+ function createRef<T>(): RefObject<T>;
1570
+
1571
+ /**
1572
+ * The type of the component returned from {@link forwardRef}.
1573
+ *
1574
+ * @template P The props the component accepts, if any.
1575
+ *
1576
+ * @see {@link ExoticComponent}
1577
+ */
1578
+ interface ForwardRefExoticComponent<P> extends NamedExoticComponent<P> {
1579
+ /**
1580
+ * @deprecated Use {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment#default_value|default values for destructuring assignments instead}.
1581
+ */
1582
+ defaultProps?: Partial<P> | undefined;
1583
+ propTypes?: WeakValidationMap<P> | undefined;
1584
+ }
1585
+
1586
+ /**
1587
+ * Lets your component expose a DOM node to a parent component
1588
+ * using a ref.
1589
+ *
1590
+ * @see {@link https://react.dev/reference/react/forwardRef React Docs}
1591
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/forward_and_create_ref/ React TypeScript Cheatsheet}
1592
+ *
1593
+ * @param render See the {@link ForwardRefRenderFunction}.
1594
+ *
1595
+ * @template T The type of the DOM node.
1596
+ * @template P The props the component accepts, if any.
1597
+ *
1598
+ * @example
1599
+ *
1600
+ * ```tsx
1601
+ * interface Props {
1602
+ * children?: ReactNode;
1603
+ * type: "submit" | "button";
1604
+ * }
1605
+ *
1606
+ * export const FancyButton = forwardRef<HTMLButtonElement, Props>((props, ref) => (
1607
+ * <button ref={ref} className="MyClassName" type={props.type}>
1608
+ * {props.children}
1609
+ * </button>
1610
+ * ));
1611
+ * ```
1612
+ */
1613
+ function forwardRef<T, P = {}>(
1614
+ render: ForwardRefRenderFunction<T, PropsWithoutRef<P>>,
1615
+ ): ForwardRefExoticComponent<PropsWithoutRef<P> & RefAttributes<T>>;
1616
+
1617
+ /**
1618
+ * Omits the 'ref' attribute from the given props object.
1619
+ *
1620
+ * @template P The props object type.
1621
+ */
1622
+ type PropsWithoutRef<P> =
1623
+ // Omit would not be sufficient for this. We'd like to avoid unnecessary mapping and need a distributive conditional to support unions.
1624
+ // see: https://www.typescriptlang.org/docs/handbook/2/conditional-types.html#distributive-conditional-types
1625
+ // https://github.com/Microsoft/TypeScript/issues/28339
1626
+ P extends any ? ("ref" extends keyof P ? Omit<P, "ref"> : P) : P;
1627
+ /** Ensures that the props do not include string ref, which cannot be forwarded */
1628
+ type PropsWithRef<P> =
1629
+ // Note: String refs can be forwarded. We can't fix this bug without breaking a bunch of libraries now though.
1630
+ // Just "P extends { ref?: infer R }" looks sufficient, but R will infer as {} if P is {}.
1631
+ "ref" extends keyof P
1632
+ ? P extends { ref?: infer R | undefined }
1633
+ ? string extends R ? PropsWithoutRef<P> & { ref?: Exclude<R, string> | undefined }
1634
+ : P
1635
+ : P
1636
+ : P;
1637
+
1638
+ type PropsWithChildren<P = unknown> = P & { children?: ReactNode | undefined };
1639
+
1640
+ /**
1641
+ * Used to retrieve the props a component accepts. Can either be passed a string,
1642
+ * indicating a DOM element (e.g. 'div', 'span', etc.) or the type of a React
1643
+ * component.
1644
+ *
1645
+ * It's usually better to use {@link ComponentPropsWithRef} or {@link ComponentPropsWithoutRef}
1646
+ * instead of this type, as they let you be explicit about whether or not to include
1647
+ * the `ref` prop.
1648
+ *
1649
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/react-types/componentprops/ React TypeScript Cheatsheet}
1650
+ *
1651
+ * @example
1652
+ *
1653
+ * ```tsx
1654
+ * // Retrieves the props an 'input' element accepts
1655
+ * type InputProps = React.ComponentProps<'input'>;
1656
+ * ```
1657
+ *
1658
+ * @example
1659
+ *
1660
+ * ```tsx
1661
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1662
+ *
1663
+ * // Retrieves the props 'MyComponent' accepts
1664
+ * type MyComponentProps = React.ComponentProps<typeof MyComponent>;
1665
+ * ```
1666
+ */
1667
+ type ComponentProps<T extends keyof JSX.IntrinsicElements | JSXElementConstructor<any>> = T extends
1668
+ JSXElementConstructor<infer P> ? P
1669
+ : T extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElements[T]
1670
+ : {};
1671
+
1672
+ /**
1673
+ * Used to retrieve the props a component accepts with its ref. Can either be
1674
+ * passed a string, indicating a DOM element (e.g. 'div', 'span', etc.) or the
1675
+ * type of a React component.
1676
+ *
1677
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/react-types/componentprops/ React TypeScript Cheatsheet}
1678
+ *
1679
+ * @example
1680
+ *
1681
+ * ```tsx
1682
+ * // Retrieves the props an 'input' element accepts
1683
+ * type InputProps = React.ComponentPropsWithRef<'input'>;
1684
+ * ```
1685
+ *
1686
+ * @example
1687
+ *
1688
+ * ```tsx
1689
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1690
+ *
1691
+ * // Retrieves the props 'MyComponent' accepts
1692
+ * type MyComponentPropsWithRef = React.ComponentPropsWithRef<typeof MyComponent>;
1693
+ * ```
1694
+ */
1695
+ type ComponentPropsWithRef<T extends ElementType> = T extends (new(props: infer P) => Component<any, any>)
1696
+ ? PropsWithoutRef<P> & RefAttributes<InstanceType<T>>
1697
+ : PropsWithRef<ComponentProps<T>>;
1698
+ /**
1699
+ * Used to retrieve the props a custom component accepts with its ref.
1700
+ *
1701
+ * Unlike {@link ComponentPropsWithRef}, this only works with custom
1702
+ * components, i.e. components you define yourself. This is to improve
1703
+ * type-checking performance.
1704
+ *
1705
+ * @example
1706
+ *
1707
+ * ```tsx
1708
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1709
+ *
1710
+ * // Retrieves the props 'MyComponent' accepts
1711
+ * type MyComponentPropsWithRef = React.CustomComponentPropsWithRef<typeof MyComponent>;
1712
+ * ```
1713
+ */
1714
+ type CustomComponentPropsWithRef<T extends ComponentType> = T extends (new(props: infer P) => Component<any, any>)
1715
+ ? (PropsWithoutRef<P> & RefAttributes<InstanceType<T>>)
1716
+ : T extends ((props: infer P, legacyContext?: any) => ReactNode) ? PropsWithRef<P>
1717
+ : never;
1718
+
1719
+ /**
1720
+ * Used to retrieve the props a component accepts without its ref. Can either be
1721
+ * passed a string, indicating a DOM element (e.g. 'div', 'span', etc.) or the
1722
+ * type of a React component.
1723
+ *
1724
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/react-types/componentprops/ React TypeScript Cheatsheet}
1725
+ *
1726
+ * @example
1727
+ *
1728
+ * ```tsx
1729
+ * // Retrieves the props an 'input' element accepts
1730
+ * type InputProps = React.ComponentPropsWithoutRef<'input'>;
1731
+ * ```
1732
+ *
1733
+ * @example
1734
+ *
1735
+ * ```tsx
1736
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1737
+ *
1738
+ * // Retrieves the props 'MyComponent' accepts
1739
+ * type MyComponentPropsWithoutRef = React.ComponentPropsWithoutRef<typeof MyComponent>;
1740
+ * ```
1741
+ */
1742
+ type ComponentPropsWithoutRef<T extends ElementType> = PropsWithoutRef<ComponentProps<T>>;
1743
+
1744
+ type ComponentRef<T extends ElementType> = T extends NamedExoticComponent<
1745
+ ComponentPropsWithoutRef<T> & RefAttributes<infer Method>
1746
+ > ? Method
1747
+ : ComponentPropsWithRef<T> extends RefAttributes<infer Method> ? Method
1748
+ : never;
1749
+
1750
+ // will show `Memo(${Component.displayName || Component.name})` in devtools by default,
1751
+ // but can be given its own specific name
1752
+ type MemoExoticComponent<T extends ComponentType<any>> = NamedExoticComponent<CustomComponentPropsWithRef<T>> & {
1753
+ readonly type: T;
1754
+ };
1755
+
1756
+ /**
1757
+ * Lets you skip re-rendering a component when its props are unchanged.
1758
+ *
1759
+ * @see {@link https://react.dev/reference/react/memo React Docs}
1760
+ *
1761
+ * @param Component The component to memoize.
1762
+ * @param propsAreEqual A function that will be used to determine if the props have changed.
1763
+ *
1764
+ * @example
1765
+ *
1766
+ * ```tsx
1767
+ * import { memo } from 'react';
1768
+ *
1769
+ * const SomeComponent = memo(function SomeComponent(props: { foo: string }) {
1770
+ * // ...
1771
+ * });
1772
+ * ```
1773
+ */
1774
+ function memo<P extends object>(
1775
+ Component: FunctionComponent<P>,
1776
+ propsAreEqual?: (prevProps: Readonly<P>, nextProps: Readonly<P>) => boolean,
1777
+ ): NamedExoticComponent<P>;
1778
+ function memo<T extends ComponentType<any>>(
1779
+ Component: T,
1780
+ propsAreEqual?: (prevProps: Readonly<ComponentProps<T>>, nextProps: Readonly<ComponentProps<T>>) => boolean,
1781
+ ): MemoExoticComponent<T>;
1782
+
1783
+ interface LazyExoticComponent<T extends ComponentType<any>>
1784
+ extends ExoticComponent<CustomComponentPropsWithRef<T>>
1785
+ {
1786
+ readonly _result: T;
1787
+ }
1788
+
1789
+ /**
1790
+ * Lets you defer loading a component’s code until it is rendered for the first time.
1791
+ *
1792
+ * @see {@link https://react.dev/reference/react/lazy React Docs}
1793
+ *
1794
+ * @param load A function that returns a `Promise` or another thenable (a `Promise`-like object with a
1795
+ * then method). React will not call `load` until the first time you attempt to render the returned
1796
+ * component. After React first calls load, it will wait for it to resolve, and then render the
1797
+ * resolved value’s `.default` as a React component. Both the returned `Promise` and the `Promise`’s
1798
+ * resolved value will be cached, so React will not call load more than once. If the `Promise` rejects,
1799
+ * React will throw the rejection reason for the nearest Error Boundary to handle.
1800
+ *
1801
+ * @example
1802
+ *
1803
+ * ```tsx
1804
+ * import { lazy } from 'react';
1805
+ *
1806
+ * const MarkdownPreview = lazy(() => import('./MarkdownPreview.js'));
1807
+ * ```
1808
+ */
1809
+ function lazy<T extends ComponentType<any>>(
1810
+ load: () => Promise<{ default: T }>,
1811
+ ): LazyExoticComponent<T>;
1812
+
1813
+ //
1814
+ // React Hooks
1815
+ // ----------------------------------------------------------------------
1816
+
1817
+ /**
1818
+ * The instruction passed to a {@link Dispatch} function in {@link useState}
1819
+ * to tell React what the next value of the {@link useState} should be.
1820
+ *
1821
+ * Often found wrapped in {@link Dispatch}.
1822
+ *
1823
+ * @template S The type of the state.
1824
+ *
1825
+ * @example
1826
+ *
1827
+ * ```tsx
1828
+ * // This return type correctly represents the type of
1829
+ * // `setCount` in the example below.
1830
+ * const useCustomState = (): Dispatch<SetStateAction<number>> => {
1831
+ * const [count, setCount] = useState(0);
1832
+ *
1833
+ * return setCount;
1834
+ * }
1835
+ * ```
1836
+ */
1837
+ type SetStateAction<S> = S | ((prevState: S) => S);
1838
+
1839
+ /**
1840
+ * A function that can be used to update the state of a {@link useState}
1841
+ * or {@link useReducer} hook.
1842
+ */
1843
+ type Dispatch<A> = (value: A) => void;
1844
+ /**
1845
+ * A {@link Dispatch} function can sometimes be called without any arguments.
1846
+ */
1847
+ type DispatchWithoutAction = () => void;
1848
+ // Unlike redux, the actions _can_ be anything
1849
+ type Reducer<S, A> = (prevState: S, action: A) => S;
1850
+ // If useReducer accepts a reducer without action, dispatch may be called without any parameters.
1851
+ type ReducerWithoutAction<S> = (prevState: S) => S;
1852
+ // types used to try and prevent the compiler from reducing S
1853
+ // to a supertype common with the second argument to useReducer()
1854
+ type ReducerState<R extends Reducer<any, any>> = R extends Reducer<infer S, any> ? S : never;
1855
+ type ReducerAction<R extends Reducer<any, any>> = R extends Reducer<any, infer A> ? A : never;
1856
+ // The identity check is done with the SameValue algorithm (Object.is), which is stricter than ===
1857
+ type ReducerStateWithoutAction<R extends ReducerWithoutAction<any>> = R extends ReducerWithoutAction<infer S> ? S
1858
+ : never;
1859
+ type DependencyList = readonly unknown[];
1860
+
1861
+ // NOTE: callbacks are _only_ allowed to return either void, or a destructor.
1862
+ type EffectCallback = () => void | Destructor;
1863
+
1864
+ interface MutableRefObject<T> {
1865
+ current: T;
1866
+ }
1867
+
1868
+ // This will technically work if you give a Consumer<T> or Provider<T> but it's deprecated and warns
1869
+ /**
1870
+ * Accepts a context object (the value returned from `React.createContext`) and returns the current
1871
+ * context value, as given by the nearest context provider for the given context.
1872
+ *
1873
+ * @version 16.8.0
1874
+ * @see {@link https://react.dev/reference/react/useContext}
1875
+ */
1876
+ function useContext<T>(context: Context<T> /*, (not public API) observedBits?: number|boolean */): T;
1877
+ /**
1878
+ * Returns a stateful value, and a function to update it.
1879
+ *
1880
+ * @version 16.8.0
1881
+ * @see {@link https://react.dev/reference/react/useState}
1882
+ */
1883
+ function useState<S>(initialState: S | (() => S)): [S, Dispatch<SetStateAction<S>>];
1884
+ // convenience overload when first argument is omitted
1885
+ /**
1886
+ * Returns a stateful value, and a function to update it.
1887
+ *
1888
+ * @version 16.8.0
1889
+ * @see {@link https://react.dev/reference/react/useState}
1890
+ */
1891
+ function useState<S = undefined>(): [S | undefined, Dispatch<SetStateAction<S | undefined>>];
1892
+ /**
1893
+ * An alternative to `useState`.
1894
+ *
1895
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1896
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1897
+ * updates because you can pass `dispatch` down instead of callbacks.
1898
+ *
1899
+ * @version 16.8.0
1900
+ * @see {@link https://react.dev/reference/react/useReducer}
1901
+ */
1902
+ // overload where dispatch could accept 0 arguments.
1903
+ function useReducer<R extends ReducerWithoutAction<any>, I>(
1904
+ reducer: R,
1905
+ initializerArg: I,
1906
+ initializer: (arg: I) => ReducerStateWithoutAction<R>,
1907
+ ): [ReducerStateWithoutAction<R>, DispatchWithoutAction];
1908
+ /**
1909
+ * An alternative to `useState`.
1910
+ *
1911
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1912
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1913
+ * updates because you can pass `dispatch` down instead of callbacks.
1914
+ *
1915
+ * @version 16.8.0
1916
+ * @see {@link https://react.dev/reference/react/useReducer}
1917
+ */
1918
+ // overload where dispatch could accept 0 arguments.
1919
+ function useReducer<R extends ReducerWithoutAction<any>>(
1920
+ reducer: R,
1921
+ initializerArg: ReducerStateWithoutAction<R>,
1922
+ initializer?: undefined,
1923
+ ): [ReducerStateWithoutAction<R>, DispatchWithoutAction];
1924
+ /**
1925
+ * An alternative to `useState`.
1926
+ *
1927
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1928
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1929
+ * updates because you can pass `dispatch` down instead of callbacks.
1930
+ *
1931
+ * @version 16.8.0
1932
+ * @see {@link https://react.dev/reference/react/useReducer}
1933
+ */
1934
+ // overload where "I" may be a subset of ReducerState<R>; used to provide autocompletion.
1935
+ // If "I" matches ReducerState<R> exactly then the last overload will allow initializer to be omitted.
1936
+ // the last overload effectively behaves as if the identity function (x => x) is the initializer.
1937
+ function useReducer<R extends Reducer<any, any>, I>(
1938
+ reducer: R,
1939
+ initializerArg: I & ReducerState<R>,
1940
+ initializer: (arg: I & ReducerState<R>) => ReducerState<R>,
1941
+ ): [ReducerState<R>, Dispatch<ReducerAction<R>>];
1942
+ /**
1943
+ * An alternative to `useState`.
1944
+ *
1945
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1946
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1947
+ * updates because you can pass `dispatch` down instead of callbacks.
1948
+ *
1949
+ * @version 16.8.0
1950
+ * @see {@link https://react.dev/reference/react/useReducer}
1951
+ */
1952
+ // overload for free "I"; all goes as long as initializer converts it into "ReducerState<R>".
1953
+ function useReducer<R extends Reducer<any, any>, I>(
1954
+ reducer: R,
1955
+ initializerArg: I,
1956
+ initializer: (arg: I) => ReducerState<R>,
1957
+ ): [ReducerState<R>, Dispatch<ReducerAction<R>>];
1958
+ /**
1959
+ * An alternative to `useState`.
1960
+ *
1961
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1962
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1963
+ * updates because you can pass `dispatch` down instead of callbacks.
1964
+ *
1965
+ * @version 16.8.0
1966
+ * @see {@link https://react.dev/reference/react/useReducer}
1967
+ */
1968
+
1969
+ // I'm not sure if I keep this 2-ary or if I make it (2,3)-ary; it's currently (2,3)-ary.
1970
+ // The Flow types do have an overload for 3-ary invocation with undefined initializer.
1971
+
1972
+ // NOTE: without the ReducerState indirection, TypeScript would reduce S to be the most common
1973
+ // supertype between the reducer's return type and the initialState (or the initializer's return type),
1974
+ // which would prevent autocompletion from ever working.
1975
+
1976
+ // TODO: double-check if this weird overload logic is necessary. It is possible it's either a bug
1977
+ // in older versions, or a regression in newer versions of the typescript completion service.
1978
+ function useReducer<R extends Reducer<any, any>>(
1979
+ reducer: R,
1980
+ initialState: ReducerState<R>,
1981
+ initializer?: undefined,
1982
+ ): [ReducerState<R>, Dispatch<ReducerAction<R>>];
1983
+ /**
1984
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
1985
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
1986
+ *
1987
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
1988
+ * value around similar to how you’d use instance fields in classes.
1989
+ *
1990
+ * @version 16.8.0
1991
+ * @see {@link https://react.dev/reference/react/useRef}
1992
+ */
1993
+ function useRef<T>(initialValue: T): MutableRefObject<T>;
1994
+ // convenience overload for refs given as a ref prop as they typically start with a null value
1995
+ /**
1996
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
1997
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
1998
+ *
1999
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
2000
+ * value around similar to how you’d use instance fields in classes.
2001
+ *
2002
+ * Usage note: if you need the result of useRef to be directly mutable, include `| null` in the type
2003
+ * of the generic argument.
2004
+ *
2005
+ * @version 16.8.0
2006
+ * @see {@link https://react.dev/reference/react/useRef}
2007
+ */
2008
+ function useRef<T>(initialValue: T | null): RefObject<T>;
2009
+ // convenience overload for potentially undefined initialValue / call with 0 arguments
2010
+ // has a default to stop it from defaulting to {} instead
2011
+ /**
2012
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
2013
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
2014
+ *
2015
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
2016
+ * value around similar to how you’d use instance fields in classes.
2017
+ *
2018
+ * @version 16.8.0
2019
+ * @see {@link https://react.dev/reference/react/useRef}
2020
+ */
2021
+ function useRef<T = undefined>(initialValue?: undefined): MutableRefObject<T | undefined>;
2022
+ /**
2023
+ * The signature is identical to `useEffect`, but it fires synchronously after all DOM mutations.
2024
+ * Use this to read layout from the DOM and synchronously re-render. Updates scheduled inside
2025
+ * `useLayoutEffect` will be flushed synchronously, before the browser has a chance to paint.
2026
+ *
2027
+ * Prefer the standard `useEffect` when possible to avoid blocking visual updates.
2028
+ *
2029
+ * If you’re migrating code from a class component, `useLayoutEffect` fires in the same phase as
2030
+ * `componentDidMount` and `componentDidUpdate`.
2031
+ *
2032
+ * @version 16.8.0
2033
+ * @see {@link https://react.dev/reference/react/useLayoutEffect}
2034
+ */
2035
+ function useLayoutEffect(effect: EffectCallback, deps?: DependencyList): void;
2036
+ /**
2037
+ * Accepts a function that contains imperative, possibly effectful code.
2038
+ *
2039
+ * @param effect Imperative function that can return a cleanup function
2040
+ * @param deps If present, effect will only activate if the values in the list change.
2041
+ *
2042
+ * @version 16.8.0
2043
+ * @see {@link https://react.dev/reference/react/useEffect}
2044
+ */
2045
+ function useEffect(effect: EffectCallback, deps?: DependencyList): void;
2046
+ // NOTE: this does not accept strings, but this will have to be fixed by removing strings from type Ref<T>
2047
+ /**
2048
+ * `useImperativeHandle` customizes the instance value that is exposed to parent components when using
2049
+ * `ref`. As always, imperative code using refs should be avoided in most cases.
2050
+ *
2051
+ * `useImperativeHandle` should be used with `React.forwardRef`.
2052
+ *
2053
+ * @version 16.8.0
2054
+ * @see {@link https://react.dev/reference/react/useImperativeHandle}
2055
+ */
2056
+ function useImperativeHandle<T, R extends T>(ref: Ref<T> | undefined, init: () => R, deps?: DependencyList): void;
2057
+ // I made 'inputs' required here and in useMemo as there's no point to memoizing without the memoization key
2058
+ // useCallback(X) is identical to just using X, useMemo(() => Y) is identical to just using Y.
2059
+ /**
2060
+ * `useCallback` will return a memoized version of the callback that only changes if one of the `inputs`
2061
+ * has changed.
2062
+ *
2063
+ * @version 16.8.0
2064
+ * @see {@link https://react.dev/reference/react/useCallback}
2065
+ */
2066
+ // A specific function type would not trigger implicit any.
2067
+ // See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/52873#issuecomment-845806435 for a comparison between `Function` and more specific types.
2068
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
2069
+ function useCallback<T extends Function>(callback: T, deps: DependencyList): T;
2070
+ /**
2071
+ * `useMemo` will only recompute the memoized value when one of the `deps` has changed.
2072
+ *
2073
+ * @version 16.8.0
2074
+ * @see {@link https://react.dev/reference/react/useMemo}
2075
+ */
2076
+ // allow undefined, but don't make it optional as that is very likely a mistake
2077
+ function useMemo<T>(factory: () => T, deps: DependencyList): T;
2078
+ /**
2079
+ * `useDebugValue` can be used to display a label for custom hooks in React DevTools.
2080
+ *
2081
+ * NOTE: We don’t recommend adding debug values to every custom hook.
2082
+ * It’s most valuable for custom hooks that are part of shared libraries.
2083
+ *
2084
+ * @version 16.8.0
2085
+ * @see {@link https://react.dev/reference/react/useDebugValue}
2086
+ */
2087
+ // the name of the custom hook is itself derived from the function name at runtime:
2088
+ // it's just the function name without the "use" prefix.
2089
+ function useDebugValue<T>(value: T, format?: (value: T) => any): void;
2090
+
2091
+ // must be synchronous
2092
+ export type TransitionFunction = () => VoidOrUndefinedOnly;
2093
+ // strange definition to allow vscode to show documentation on the invocation
2094
+ export interface TransitionStartFunction {
2095
+ /**
2096
+ * State updates caused inside the callback are allowed to be deferred.
2097
+ *
2098
+ * **If some state update causes a component to suspend, that state update should be wrapped in a transition.**
2099
+ *
2100
+ * @param callback A _synchronous_ function which causes state updates that can be deferred.
2101
+ */
2102
+ (callback: TransitionFunction): void;
2103
+ }
2104
+
2105
+ /**
2106
+ * Returns a deferred version of the value that may “lag behind” it.
2107
+ *
2108
+ * This is commonly used to keep the interface responsive when you have something that renders immediately
2109
+ * based on user input and something that needs to wait for a data fetch.
2110
+ *
2111
+ * A good example of this is a text input.
2112
+ *
2113
+ * @param value The value that is going to be deferred
2114
+ *
2115
+ * @see {@link https://react.dev/reference/react/useDeferredValue}
2116
+ */
2117
+ export function useDeferredValue<T>(value: T): T;
2118
+
2119
+ /**
2120
+ * Allows components to avoid undesirable loading states by waiting for content to load
2121
+ * before transitioning to the next screen. It also allows components to defer slower,
2122
+ * data fetching updates until subsequent renders so that more crucial updates can be
2123
+ * rendered immediately.
2124
+ *
2125
+ * The `useTransition` hook returns two values in an array.
2126
+ *
2127
+ * The first is a boolean, React’s way of informing us whether we’re waiting for the transition to finish.
2128
+ * The second is a function that takes a callback. We can use it to tell React which state we want to defer.
2129
+ *
2130
+ * **If some state update causes a component to suspend, that state update should be wrapped in a transition.**
2131
+ *
2132
+ * @see {@link https://react.dev/reference/react/useTransition}
2133
+ */
2134
+ export function useTransition(): [boolean, TransitionStartFunction];
2135
+
2136
+ /**
2137
+ * Similar to `useTransition` but allows uses where hooks are not available.
2138
+ *
2139
+ * @param callback A _synchronous_ function which causes state updates that can be deferred.
2140
+ */
2141
+ export function startTransition(scope: TransitionFunction): void;
2142
+
2143
+ /**
2144
+ * Wrap any code rendering and triggering updates to your components into `act()` calls.
2145
+ *
2146
+ * Ensures that the behavior in your tests matches what happens in the browser
2147
+ * more closely by executing pending `useEffect`s before returning. This also
2148
+ * reduces the amount of re-renders done.
2149
+ *
2150
+ * @param callback A synchronous, void callback that will execute as a single, complete React commit.
2151
+ *
2152
+ * @see https://reactjs.org/blog/2019/02/06/react-v16.8.0.html#testing-hooks
2153
+ */
2154
+ // While act does always return Thenable, if a void function is passed, we pretend the return value is also void to not trigger dangling Promise lint rules.
2155
+ export function act(callback: () => VoidOrUndefinedOnly): void;
2156
+ export function act<T>(callback: () => T | Promise<T>): Promise<T>;
2157
+
2158
+ export function useId(): string;
2159
+
2160
+ /**
2161
+ * @param effect Imperative function that can return a cleanup function
2162
+ * @param deps If present, effect will only activate if the values in the list change.
2163
+ *
2164
+ * @see {@link https://github.com/facebook/react/pull/21913}
2165
+ */
2166
+ export function useInsertionEffect(effect: EffectCallback, deps?: DependencyList): void;
2167
+
2168
+ /**
2169
+ * @param subscribe
2170
+ * @param getSnapshot
2171
+ *
2172
+ * @see {@link https://github.com/reactwg/react-18/discussions/86}
2173
+ */
2174
+ // keep in sync with `useSyncExternalStore` from `use-sync-external-store`
2175
+ export function useSyncExternalStore<Snapshot>(
2176
+ subscribe: (onStoreChange: () => void) => () => void,
2177
+ getSnapshot: () => Snapshot,
2178
+ getServerSnapshot?: () => Snapshot,
2179
+ ): Snapshot;
2180
+
2181
+ //
2182
+ // Event System
2183
+ // ----------------------------------------------------------------------
2184
+ // TODO: change any to unknown when moving to TS v3
2185
+ interface BaseSyntheticEvent<E = object, C = any, T = any> {
2186
+ nativeEvent: E;
2187
+ currentTarget: C;
2188
+ target: T;
2189
+ bubbles: boolean;
2190
+ cancelable: boolean;
2191
+ defaultPrevented: boolean;
2192
+ eventPhase: number;
2193
+ isTrusted: boolean;
2194
+ preventDefault(): void;
2195
+ isDefaultPrevented(): boolean;
2196
+ stopPropagation(): void;
2197
+ isPropagationStopped(): boolean;
2198
+ persist(): void;
2199
+ timeStamp: number;
2200
+ type: string;
2201
+ }
2202
+
2203
+ /**
2204
+ * currentTarget - a reference to the element on which the event listener is registered.
2205
+ *
2206
+ * target - a reference to the element from which the event was originally dispatched.
2207
+ * This might be a child element to the element on which the event listener is registered.
2208
+ * If you thought this should be `EventTarget & T`, see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/11508#issuecomment-256045682
2209
+ */
2210
+ interface SyntheticEvent<T = Element, E = Event> extends BaseSyntheticEvent<E, EventTarget & T, EventTarget> {}
2211
+
2212
+ interface ClipboardEvent<T = Element> extends SyntheticEvent<T, NativeClipboardEvent> {
2213
+ clipboardData: DataTransfer;
2214
+ }
2215
+
2216
+ interface CompositionEvent<T = Element> extends SyntheticEvent<T, NativeCompositionEvent> {
2217
+ data: string;
2218
+ }
2219
+
2220
+ interface DragEvent<T = Element> extends MouseEvent<T, NativeDragEvent> {
2221
+ dataTransfer: DataTransfer;
2222
+ }
2223
+
2224
+ interface PointerEvent<T = Element> extends MouseEvent<T, NativePointerEvent> {
2225
+ pointerId: number;
2226
+ pressure: number;
2227
+ tangentialPressure: number;
2228
+ tiltX: number;
2229
+ tiltY: number;
2230
+ twist: number;
2231
+ width: number;
2232
+ height: number;
2233
+ pointerType: "mouse" | "pen" | "touch";
2234
+ isPrimary: boolean;
2235
+ }
2236
+
2237
+ interface FocusEvent<Target = Element, RelatedTarget = Element> extends SyntheticEvent<Target, NativeFocusEvent> {
2238
+ relatedTarget: (EventTarget & RelatedTarget) | null;
2239
+ target: EventTarget & Target;
2240
+ }
2241
+
2242
+ interface FormEvent<T = Element> extends SyntheticEvent<T> {
2243
+ }
2244
+
2245
+ interface InvalidEvent<T = Element> extends SyntheticEvent<T> {
2246
+ target: EventTarget & T;
2247
+ }
2248
+
2249
+ interface ChangeEvent<T = Element> extends SyntheticEvent<T> {
2250
+ target: EventTarget & T;
2251
+ }
2252
+
2253
+ interface InputEvent<T = Element> extends SyntheticEvent<T, NativeInputEvent> {
2254
+ data: string;
2255
+ }
2256
+
2257
+ export type ModifierKey =
2258
+ | "Alt"
2259
+ | "AltGraph"
2260
+ | "CapsLock"
2261
+ | "Control"
2262
+ | "Fn"
2263
+ | "FnLock"
2264
+ | "Hyper"
2265
+ | "Meta"
2266
+ | "NumLock"
2267
+ | "ScrollLock"
2268
+ | "Shift"
2269
+ | "Super"
2270
+ | "Symbol"
2271
+ | "SymbolLock";
2272
+
2273
+ interface KeyboardEvent<T = Element> extends UIEvent<T, NativeKeyboardEvent> {
2274
+ altKey: boolean;
2275
+ /** @deprecated */
2276
+ charCode: number;
2277
+ ctrlKey: boolean;
2278
+ code: string;
2279
+ /**
2280
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2281
+ */
2282
+ getModifierState(key: ModifierKey): boolean;
2283
+ /**
2284
+ * See the [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#named-key-attribute-values). for possible values
2285
+ */
2286
+ key: string;
2287
+ /** @deprecated */
2288
+ keyCode: number;
2289
+ locale: string;
2290
+ location: number;
2291
+ metaKey: boolean;
2292
+ repeat: boolean;
2293
+ shiftKey: boolean;
2294
+ /** @deprecated */
2295
+ which: number;
2296
+ }
2297
+
2298
+ interface MouseEvent<T = Element, E = NativeMouseEvent> extends UIEvent<T, E> {
2299
+ altKey: boolean;
2300
+ button: number;
2301
+ buttons: number;
2302
+ clientX: number;
2303
+ clientY: number;
2304
+ ctrlKey: boolean;
2305
+ /**
2306
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2307
+ */
2308
+ getModifierState(key: ModifierKey): boolean;
2309
+ metaKey: boolean;
2310
+ movementX: number;
2311
+ movementY: number;
2312
+ pageX: number;
2313
+ pageY: number;
2314
+ relatedTarget: EventTarget | null;
2315
+ screenX: number;
2316
+ screenY: number;
2317
+ shiftKey: boolean;
2318
+ }
2319
+
2320
+ interface TouchEvent<T = Element> extends UIEvent<T, NativeTouchEvent> {
2321
+ altKey: boolean;
2322
+ changedTouches: TouchList;
2323
+ ctrlKey: boolean;
2324
+ /**
2325
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2326
+ */
2327
+ getModifierState(key: ModifierKey): boolean;
2328
+ metaKey: boolean;
2329
+ shiftKey: boolean;
2330
+ targetTouches: TouchList;
2331
+ touches: TouchList;
2332
+ }
2333
+
2334
+ interface UIEvent<T = Element, E = NativeUIEvent> extends SyntheticEvent<T, E> {
2335
+ detail: number;
2336
+ view: AbstractView;
2337
+ }
2338
+
2339
+ interface WheelEvent<T = Element> extends MouseEvent<T, NativeWheelEvent> {
2340
+ deltaMode: number;
2341
+ deltaX: number;
2342
+ deltaY: number;
2343
+ deltaZ: number;
2344
+ }
2345
+
2346
+ interface AnimationEvent<T = Element> extends SyntheticEvent<T, NativeAnimationEvent> {
2347
+ animationName: string;
2348
+ elapsedTime: number;
2349
+ pseudoElement: string;
2350
+ }
2351
+
2352
+ interface TransitionEvent<T = Element> extends SyntheticEvent<T, NativeTransitionEvent> {
2353
+ elapsedTime: number;
2354
+ propertyName: string;
2355
+ pseudoElement: string;
2356
+ }
2357
+
2358
+ //
2359
+ // Event Handler Types
2360
+ // ----------------------------------------------------------------------
2361
+
2362
+ type EventHandler<E extends SyntheticEvent<any>> = { bivarianceHack(event: E): void }["bivarianceHack"];
2363
+
2364
+ type ReactEventHandler<T = Element> = EventHandler<SyntheticEvent<T>>;
2365
+
2366
+ type ClipboardEventHandler<T = Element> = EventHandler<ClipboardEvent<T>>;
2367
+ type CompositionEventHandler<T = Element> = EventHandler<CompositionEvent<T>>;
2368
+ type DragEventHandler<T = Element> = EventHandler<DragEvent<T>>;
2369
+ type FocusEventHandler<T = Element> = EventHandler<FocusEvent<T>>;
2370
+ type FormEventHandler<T = Element> = EventHandler<FormEvent<T>>;
2371
+ type ChangeEventHandler<T = Element> = EventHandler<ChangeEvent<T>>;
2372
+ type InputEventHandler<T = Element> = EventHandler<InputEvent<T>>;
2373
+ type KeyboardEventHandler<T = Element> = EventHandler<KeyboardEvent<T>>;
2374
+ type MouseEventHandler<T = Element> = EventHandler<MouseEvent<T>>;
2375
+ type TouchEventHandler<T = Element> = EventHandler<TouchEvent<T>>;
2376
+ type PointerEventHandler<T = Element> = EventHandler<PointerEvent<T>>;
2377
+ type UIEventHandler<T = Element> = EventHandler<UIEvent<T>>;
2378
+ type WheelEventHandler<T = Element> = EventHandler<WheelEvent<T>>;
2379
+ type AnimationEventHandler<T = Element> = EventHandler<AnimationEvent<T>>;
2380
+ type TransitionEventHandler<T = Element> = EventHandler<TransitionEvent<T>>;
2381
+
2382
+ //
2383
+ // Props / DOM Attributes
2384
+ // ----------------------------------------------------------------------
2385
+
2386
+ interface HTMLProps<T> extends AllHTMLAttributes<T>, ClassAttributes<T> {
2387
+ }
2388
+
2389
+ type DetailedHTMLProps<E extends HTMLAttributes<T>, T> = ClassAttributes<T> & E;
2390
+
2391
+ interface SVGProps<T> extends SVGAttributes<T>, ClassAttributes<T> {
2392
+ }
2393
+
2394
+ interface SVGLineElementAttributes<T> extends SVGProps<T> {}
2395
+ interface SVGTextElementAttributes<T> extends SVGProps<T> {}
2396
+
2397
+ interface DOMAttributes<T> {
2398
+ children?: ReactNode | undefined;
2399
+ dangerouslySetInnerHTML?: {
2400
+ // Should be InnerHTML['innerHTML'].
2401
+ // But unfortunately we're mixing renderer-specific type declarations.
2402
+ __html: string | TrustedHTML;
2403
+ } | undefined;
2404
+
2405
+ // Clipboard Events
2406
+ onCopy?: ClipboardEventHandler<T> | undefined;
2407
+ onCopyCapture?: ClipboardEventHandler<T> | undefined;
2408
+ onCut?: ClipboardEventHandler<T> | undefined;
2409
+ onCutCapture?: ClipboardEventHandler<T> | undefined;
2410
+ onPaste?: ClipboardEventHandler<T> | undefined;
2411
+ onPasteCapture?: ClipboardEventHandler<T> | undefined;
2412
+
2413
+ // Composition Events
2414
+ onCompositionEnd?: CompositionEventHandler<T> | undefined;
2415
+ onCompositionEndCapture?: CompositionEventHandler<T> | undefined;
2416
+ onCompositionStart?: CompositionEventHandler<T> | undefined;
2417
+ onCompositionStartCapture?: CompositionEventHandler<T> | undefined;
2418
+ onCompositionUpdate?: CompositionEventHandler<T> | undefined;
2419
+ onCompositionUpdateCapture?: CompositionEventHandler<T> | undefined;
2420
+
2421
+ // Focus Events
2422
+ onFocus?: FocusEventHandler<T> | undefined;
2423
+ onFocusCapture?: FocusEventHandler<T> | undefined;
2424
+ onBlur?: FocusEventHandler<T> | undefined;
2425
+ onBlurCapture?: FocusEventHandler<T> | undefined;
2426
+
2427
+ // Form Events
2428
+ onChange?: FormEventHandler<T> | undefined;
2429
+ onChangeCapture?: FormEventHandler<T> | undefined;
2430
+ onBeforeInput?: InputEventHandler<T> | undefined;
2431
+ onBeforeInputCapture?: FormEventHandler<T> | undefined;
2432
+ onInput?: FormEventHandler<T> | undefined;
2433
+ onInputCapture?: FormEventHandler<T> | undefined;
2434
+ onReset?: FormEventHandler<T> | undefined;
2435
+ onResetCapture?: FormEventHandler<T> | undefined;
2436
+ onSubmit?: FormEventHandler<T> | undefined;
2437
+ onSubmitCapture?: FormEventHandler<T> | undefined;
2438
+ onInvalid?: FormEventHandler<T> | undefined;
2439
+ onInvalidCapture?: FormEventHandler<T> | undefined;
2440
+
2441
+ // Image Events
2442
+ onLoad?: ReactEventHandler<T> | undefined;
2443
+ onLoadCapture?: ReactEventHandler<T> | undefined;
2444
+ onError?: ReactEventHandler<T> | undefined; // also a Media Event
2445
+ onErrorCapture?: ReactEventHandler<T> | undefined; // also a Media Event
2446
+
2447
+ // Keyboard Events
2448
+ onKeyDown?: KeyboardEventHandler<T> | undefined;
2449
+ onKeyDownCapture?: KeyboardEventHandler<T> | undefined;
2450
+ /** @deprecated Use `onKeyUp` or `onKeyDown` instead */
2451
+ onKeyPress?: KeyboardEventHandler<T> | undefined;
2452
+ /** @deprecated Use `onKeyUpCapture` or `onKeyDownCapture` instead */
2453
+ onKeyPressCapture?: KeyboardEventHandler<T> | undefined;
2454
+ onKeyUp?: KeyboardEventHandler<T> | undefined;
2455
+ onKeyUpCapture?: KeyboardEventHandler<T> | undefined;
2456
+
2457
+ // Media Events
2458
+ onAbort?: ReactEventHandler<T> | undefined;
2459
+ onAbortCapture?: ReactEventHandler<T> | undefined;
2460
+ onCanPlay?: ReactEventHandler<T> | undefined;
2461
+ onCanPlayCapture?: ReactEventHandler<T> | undefined;
2462
+ onCanPlayThrough?: ReactEventHandler<T> | undefined;
2463
+ onCanPlayThroughCapture?: ReactEventHandler<T> | undefined;
2464
+ onDurationChange?: ReactEventHandler<T> | undefined;
2465
+ onDurationChangeCapture?: ReactEventHandler<T> | undefined;
2466
+ onEmptied?: ReactEventHandler<T> | undefined;
2467
+ onEmptiedCapture?: ReactEventHandler<T> | undefined;
2468
+ onEncrypted?: ReactEventHandler<T> | undefined;
2469
+ onEncryptedCapture?: ReactEventHandler<T> | undefined;
2470
+ onEnded?: ReactEventHandler<T> | undefined;
2471
+ onEndedCapture?: ReactEventHandler<T> | undefined;
2472
+ onLoadedData?: ReactEventHandler<T> | undefined;
2473
+ onLoadedDataCapture?: ReactEventHandler<T> | undefined;
2474
+ onLoadedMetadata?: ReactEventHandler<T> | undefined;
2475
+ onLoadedMetadataCapture?: ReactEventHandler<T> | undefined;
2476
+ onLoadStart?: ReactEventHandler<T> | undefined;
2477
+ onLoadStartCapture?: ReactEventHandler<T> | undefined;
2478
+ onPause?: ReactEventHandler<T> | undefined;
2479
+ onPauseCapture?: ReactEventHandler<T> | undefined;
2480
+ onPlay?: ReactEventHandler<T> | undefined;
2481
+ onPlayCapture?: ReactEventHandler<T> | undefined;
2482
+ onPlaying?: ReactEventHandler<T> | undefined;
2483
+ onPlayingCapture?: ReactEventHandler<T> | undefined;
2484
+ onProgress?: ReactEventHandler<T> | undefined;
2485
+ onProgressCapture?: ReactEventHandler<T> | undefined;
2486
+ onRateChange?: ReactEventHandler<T> | undefined;
2487
+ onRateChangeCapture?: ReactEventHandler<T> | undefined;
2488
+ onSeeked?: ReactEventHandler<T> | undefined;
2489
+ onSeekedCapture?: ReactEventHandler<T> | undefined;
2490
+ onSeeking?: ReactEventHandler<T> | undefined;
2491
+ onSeekingCapture?: ReactEventHandler<T> | undefined;
2492
+ onStalled?: ReactEventHandler<T> | undefined;
2493
+ onStalledCapture?: ReactEventHandler<T> | undefined;
2494
+ onSuspend?: ReactEventHandler<T> | undefined;
2495
+ onSuspendCapture?: ReactEventHandler<T> | undefined;
2496
+ onTimeUpdate?: ReactEventHandler<T> | undefined;
2497
+ onTimeUpdateCapture?: ReactEventHandler<T> | undefined;
2498
+ onVolumeChange?: ReactEventHandler<T> | undefined;
2499
+ onVolumeChangeCapture?: ReactEventHandler<T> | undefined;
2500
+ onWaiting?: ReactEventHandler<T> | undefined;
2501
+ onWaitingCapture?: ReactEventHandler<T> | undefined;
2502
+
2503
+ // MouseEvents
2504
+ onAuxClick?: MouseEventHandler<T> | undefined;
2505
+ onAuxClickCapture?: MouseEventHandler<T> | undefined;
2506
+ onClick?: MouseEventHandler<T> | undefined;
2507
+ onClickCapture?: MouseEventHandler<T> | undefined;
2508
+ onContextMenu?: MouseEventHandler<T> | undefined;
2509
+ onContextMenuCapture?: MouseEventHandler<T> | undefined;
2510
+ onDoubleClick?: MouseEventHandler<T> | undefined;
2511
+ onDoubleClickCapture?: MouseEventHandler<T> | undefined;
2512
+ onDrag?: DragEventHandler<T> | undefined;
2513
+ onDragCapture?: DragEventHandler<T> | undefined;
2514
+ onDragEnd?: DragEventHandler<T> | undefined;
2515
+ onDragEndCapture?: DragEventHandler<T> | undefined;
2516
+ onDragEnter?: DragEventHandler<T> | undefined;
2517
+ onDragEnterCapture?: DragEventHandler<T> | undefined;
2518
+ onDragExit?: DragEventHandler<T> | undefined;
2519
+ onDragExitCapture?: DragEventHandler<T> | undefined;
2520
+ onDragLeave?: DragEventHandler<T> | undefined;
2521
+ onDragLeaveCapture?: DragEventHandler<T> | undefined;
2522
+ onDragOver?: DragEventHandler<T> | undefined;
2523
+ onDragOverCapture?: DragEventHandler<T> | undefined;
2524
+ onDragStart?: DragEventHandler<T> | undefined;
2525
+ onDragStartCapture?: DragEventHandler<T> | undefined;
2526
+ onDrop?: DragEventHandler<T> | undefined;
2527
+ onDropCapture?: DragEventHandler<T> | undefined;
2528
+ onMouseDown?: MouseEventHandler<T> | undefined;
2529
+ onMouseDownCapture?: MouseEventHandler<T> | undefined;
2530
+ onMouseEnter?: MouseEventHandler<T> | undefined;
2531
+ onMouseLeave?: MouseEventHandler<T> | undefined;
2532
+ onMouseMove?: MouseEventHandler<T> | undefined;
2533
+ onMouseMoveCapture?: MouseEventHandler<T> | undefined;
2534
+ onMouseOut?: MouseEventHandler<T> | undefined;
2535
+ onMouseOutCapture?: MouseEventHandler<T> | undefined;
2536
+ onMouseOver?: MouseEventHandler<T> | undefined;
2537
+ onMouseOverCapture?: MouseEventHandler<T> | undefined;
2538
+ onMouseUp?: MouseEventHandler<T> | undefined;
2539
+ onMouseUpCapture?: MouseEventHandler<T> | undefined;
2540
+
2541
+ // Selection Events
2542
+ onSelect?: ReactEventHandler<T> | undefined;
2543
+ onSelectCapture?: ReactEventHandler<T> | undefined;
2544
+
2545
+ // Touch Events
2546
+ onTouchCancel?: TouchEventHandler<T> | undefined;
2547
+ onTouchCancelCapture?: TouchEventHandler<T> | undefined;
2548
+ onTouchEnd?: TouchEventHandler<T> | undefined;
2549
+ onTouchEndCapture?: TouchEventHandler<T> | undefined;
2550
+ onTouchMove?: TouchEventHandler<T> | undefined;
2551
+ onTouchMoveCapture?: TouchEventHandler<T> | undefined;
2552
+ onTouchStart?: TouchEventHandler<T> | undefined;
2553
+ onTouchStartCapture?: TouchEventHandler<T> | undefined;
2554
+
2555
+ // Pointer Events
2556
+ onPointerDown?: PointerEventHandler<T> | undefined;
2557
+ onPointerDownCapture?: PointerEventHandler<T> | undefined;
2558
+ onPointerMove?: PointerEventHandler<T> | undefined;
2559
+ onPointerMoveCapture?: PointerEventHandler<T> | undefined;
2560
+ onPointerUp?: PointerEventHandler<T> | undefined;
2561
+ onPointerUpCapture?: PointerEventHandler<T> | undefined;
2562
+ onPointerCancel?: PointerEventHandler<T> | undefined;
2563
+ onPointerCancelCapture?: PointerEventHandler<T> | undefined;
2564
+ onPointerEnter?: PointerEventHandler<T> | undefined;
2565
+ onPointerLeave?: PointerEventHandler<T> | undefined;
2566
+ onPointerOver?: PointerEventHandler<T> | undefined;
2567
+ onPointerOverCapture?: PointerEventHandler<T> | undefined;
2568
+ onPointerOut?: PointerEventHandler<T> | undefined;
2569
+ onPointerOutCapture?: PointerEventHandler<T> | undefined;
2570
+ onGotPointerCapture?: PointerEventHandler<T> | undefined;
2571
+ onGotPointerCaptureCapture?: PointerEventHandler<T> | undefined;
2572
+ onLostPointerCapture?: PointerEventHandler<T> | undefined;
2573
+ onLostPointerCaptureCapture?: PointerEventHandler<T> | undefined;
2574
+
2575
+ // UI Events
2576
+ onScroll?: UIEventHandler<T> | undefined;
2577
+ onScrollCapture?: UIEventHandler<T> | undefined;
2578
+
2579
+ // Wheel Events
2580
+ onWheel?: WheelEventHandler<T> | undefined;
2581
+ onWheelCapture?: WheelEventHandler<T> | undefined;
2582
+
2583
+ // Animation Events
2584
+ onAnimationStart?: AnimationEventHandler<T> | undefined;
2585
+ onAnimationStartCapture?: AnimationEventHandler<T> | undefined;
2586
+ onAnimationEnd?: AnimationEventHandler<T> | undefined;
2587
+ onAnimationEndCapture?: AnimationEventHandler<T> | undefined;
2588
+ onAnimationIteration?: AnimationEventHandler<T> | undefined;
2589
+ onAnimationIterationCapture?: AnimationEventHandler<T> | undefined;
2590
+
2591
+ // Transition Events
2592
+ onTransitionEnd?: TransitionEventHandler<T> | undefined;
2593
+ onTransitionEndCapture?: TransitionEventHandler<T> | undefined;
2594
+ }
2595
+
2596
+ export interface CSSProperties extends CSS.Properties<string | number> {
2597
+ /**
2598
+ * The index signature was removed to enable closed typing for style
2599
+ * using CSSType. You're able to use type assertion or module augmentation
2600
+ * to add properties or an index signature of your own.
2601
+ *
2602
+ * For examples and more information, visit:
2603
+ * https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
2604
+ */
2605
+ }
2606
+
2607
+ // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
2608
+ interface AriaAttributes {
2609
+ /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
2610
+ "aria-activedescendant"?: string | undefined;
2611
+ /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
2612
+ "aria-atomic"?: Booleanish | undefined;
2613
+ /**
2614
+ * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
2615
+ * presented if they are made.
2616
+ */
2617
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
2618
+ /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
2619
+ /**
2620
+ * Defines a string value that labels the current element, which is intended to be converted into Braille.
2621
+ * @see aria-label.
2622
+ */
2623
+ "aria-braillelabel"?: string | undefined;
2624
+ /**
2625
+ * Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
2626
+ * @see aria-roledescription.
2627
+ */
2628
+ "aria-brailleroledescription"?: string | undefined;
2629
+ "aria-busy"?: Booleanish | undefined;
2630
+ /**
2631
+ * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
2632
+ * @see aria-pressed @see aria-selected.
2633
+ */
2634
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
2635
+ /**
2636
+ * Defines the total number of columns in a table, grid, or treegrid.
2637
+ * @see aria-colindex.
2638
+ */
2639
+ "aria-colcount"?: number | undefined;
2640
+ /**
2641
+ * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
2642
+ * @see aria-colcount @see aria-colspan.
2643
+ */
2644
+ "aria-colindex"?: number | undefined;
2645
+ /**
2646
+ * Defines a human readable text alternative of aria-colindex.
2647
+ * @see aria-rowindextext.
2648
+ */
2649
+ "aria-colindextext"?: string | undefined;
2650
+ /**
2651
+ * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
2652
+ * @see aria-colindex @see aria-rowspan.
2653
+ */
2654
+ "aria-colspan"?: number | undefined;
2655
+ /**
2656
+ * Identifies the element (or elements) whose contents or presence are controlled by the current element.
2657
+ * @see aria-owns.
2658
+ */
2659
+ "aria-controls"?: string | undefined;
2660
+ /** Indicates the element that represents the current item within a container or set of related elements. */
2661
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
2662
+ /**
2663
+ * Identifies the element (or elements) that describes the object.
2664
+ * @see aria-labelledby
2665
+ */
2666
+ "aria-describedby"?: string | undefined;
2667
+ /**
2668
+ * Defines a string value that describes or annotates the current element.
2669
+ * @see related aria-describedby.
2670
+ */
2671
+ "aria-description"?: string | undefined;
2672
+ /**
2673
+ * Identifies the element that provides a detailed, extended description for the object.
2674
+ * @see aria-describedby.
2675
+ */
2676
+ "aria-details"?: string | undefined;
2677
+ /**
2678
+ * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
2679
+ * @see aria-hidden @see aria-readonly.
2680
+ */
2681
+ "aria-disabled"?: Booleanish | undefined;
2682
+ /**
2683
+ * Indicates what functions can be performed when a dragged object is released on the drop target.
2684
+ * @deprecated in ARIA 1.1
2685
+ */
2686
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
2687
+ /**
2688
+ * Identifies the element that provides an error message for the object.
2689
+ * @see aria-invalid @see aria-describedby.
2690
+ */
2691
+ "aria-errormessage"?: string | undefined;
2692
+ /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
2693
+ "aria-expanded"?: Booleanish | undefined;
2694
+ /**
2695
+ * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
2696
+ * allows assistive technology to override the general default of reading in document source order.
2697
+ */
2698
+ "aria-flowto"?: string | undefined;
2699
+ /**
2700
+ * Indicates an element's "grabbed" state in a drag-and-drop operation.
2701
+ * @deprecated in ARIA 1.1
2702
+ */
2703
+ "aria-grabbed"?: Booleanish | undefined;
2704
+ /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
2705
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
2706
+ /**
2707
+ * Indicates whether the element is exposed to an accessibility API.
2708
+ * @see aria-disabled.
2709
+ */
2710
+ "aria-hidden"?: Booleanish | undefined;
2711
+ /**
2712
+ * Indicates the entered value does not conform to the format expected by the application.
2713
+ * @see aria-errormessage.
2714
+ */
2715
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
2716
+ /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
2717
+ "aria-keyshortcuts"?: string | undefined;
2718
+ /**
2719
+ * Defines a string value that labels the current element.
2720
+ * @see aria-labelledby.
2721
+ */
2722
+ "aria-label"?: string | undefined;
2723
+ /**
2724
+ * Identifies the element (or elements) that labels the current element.
2725
+ * @see aria-describedby.
2726
+ */
2727
+ "aria-labelledby"?: string | undefined;
2728
+ /** Defines the hierarchical level of an element within a structure. */
2729
+ "aria-level"?: number | undefined;
2730
+ /** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
2731
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
2732
+ /** Indicates whether an element is modal when displayed. */
2733
+ "aria-modal"?: Booleanish | undefined;
2734
+ /** Indicates whether a text box accepts multiple lines of input or only a single line. */
2735
+ "aria-multiline"?: Booleanish | undefined;
2736
+ /** Indicates that the user may select more than one item from the current selectable descendants. */
2737
+ "aria-multiselectable"?: Booleanish | undefined;
2738
+ /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
2739
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
2740
+ /**
2741
+ * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
2742
+ * between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
2743
+ * @see aria-controls.
2744
+ */
2745
+ "aria-owns"?: string | undefined;
2746
+ /**
2747
+ * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
2748
+ * A hint could be a sample value or a brief description of the expected format.
2749
+ */
2750
+ "aria-placeholder"?: string | undefined;
2751
+ /**
2752
+ * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
2753
+ * @see aria-setsize.
2754
+ */
2755
+ "aria-posinset"?: number | undefined;
2756
+ /**
2757
+ * Indicates the current "pressed" state of toggle buttons.
2758
+ * @see aria-checked @see aria-selected.
2759
+ */
2760
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
2761
+ /**
2762
+ * Indicates that the element is not editable, but is otherwise operable.
2763
+ * @see aria-disabled.
2764
+ */
2765
+ "aria-readonly"?: Booleanish | undefined;
2766
+ /**
2767
+ * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
2768
+ * @see aria-atomic.
2769
+ */
2770
+ "aria-relevant"?:
2771
+ | "additions"
2772
+ | "additions removals"
2773
+ | "additions text"
2774
+ | "all"
2775
+ | "removals"
2776
+ | "removals additions"
2777
+ | "removals text"
2778
+ | "text"
2779
+ | "text additions"
2780
+ | "text removals"
2781
+ | undefined;
2782
+ /** Indicates that user input is required on the element before a form may be submitted. */
2783
+ "aria-required"?: Booleanish | undefined;
2784
+ /** Defines a human-readable, author-localized description for the role of an element. */
2785
+ "aria-roledescription"?: string | undefined;
2786
+ /**
2787
+ * Defines the total number of rows in a table, grid, or treegrid.
2788
+ * @see aria-rowindex.
2789
+ */
2790
+ "aria-rowcount"?: number | undefined;
2791
+ /**
2792
+ * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
2793
+ * @see aria-rowcount @see aria-rowspan.
2794
+ */
2795
+ "aria-rowindex"?: number | undefined;
2796
+ /**
2797
+ * Defines a human readable text alternative of aria-rowindex.
2798
+ * @see aria-colindextext.
2799
+ */
2800
+ "aria-rowindextext"?: string | undefined;
2801
+ /**
2802
+ * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
2803
+ * @see aria-rowindex @see aria-colspan.
2804
+ */
2805
+ "aria-rowspan"?: number | undefined;
2806
+ /**
2807
+ * Indicates the current "selected" state of various widgets.
2808
+ * @see aria-checked @see aria-pressed.
2809
+ */
2810
+ "aria-selected"?: Booleanish | undefined;
2811
+ /**
2812
+ * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
2813
+ * @see aria-posinset.
2814
+ */
2815
+ "aria-setsize"?: number | undefined;
2816
+ /** Indicates if items in a table or grid are sorted in ascending or descending order. */
2817
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
2818
+ /** Defines the maximum allowed value for a range widget. */
2819
+ "aria-valuemax"?: number | undefined;
2820
+ /** Defines the minimum allowed value for a range widget. */
2821
+ "aria-valuemin"?: number | undefined;
2822
+ /**
2823
+ * Defines the current value for a range widget.
2824
+ * @see aria-valuetext.
2825
+ */
2826
+ "aria-valuenow"?: number | undefined;
2827
+ /** Defines the human readable text alternative of aria-valuenow for a range widget. */
2828
+ "aria-valuetext"?: string | undefined;
2829
+ }
2830
+
2831
+ // All the WAI-ARIA 1.1 role attribute values from https://www.w3.org/TR/wai-aria-1.1/#role_definitions
2832
+ type AriaRole =
2833
+ | "alert"
2834
+ | "alertdialog"
2835
+ | "application"
2836
+ | "article"
2837
+ | "banner"
2838
+ | "button"
2839
+ | "cell"
2840
+ | "checkbox"
2841
+ | "columnheader"
2842
+ | "combobox"
2843
+ | "complementary"
2844
+ | "contentinfo"
2845
+ | "definition"
2846
+ | "dialog"
2847
+ | "directory"
2848
+ | "document"
2849
+ | "feed"
2850
+ | "figure"
2851
+ | "form"
2852
+ | "grid"
2853
+ | "gridcell"
2854
+ | "group"
2855
+ | "heading"
2856
+ | "img"
2857
+ | "link"
2858
+ | "list"
2859
+ | "listbox"
2860
+ | "listitem"
2861
+ | "log"
2862
+ | "main"
2863
+ | "marquee"
2864
+ | "math"
2865
+ | "menu"
2866
+ | "menubar"
2867
+ | "menuitem"
2868
+ | "menuitemcheckbox"
2869
+ | "menuitemradio"
2870
+ | "navigation"
2871
+ | "none"
2872
+ | "note"
2873
+ | "option"
2874
+ | "presentation"
2875
+ | "progressbar"
2876
+ | "radio"
2877
+ | "radiogroup"
2878
+ | "region"
2879
+ | "row"
2880
+ | "rowgroup"
2881
+ | "rowheader"
2882
+ | "scrollbar"
2883
+ | "search"
2884
+ | "searchbox"
2885
+ | "separator"
2886
+ | "slider"
2887
+ | "spinbutton"
2888
+ | "status"
2889
+ | "switch"
2890
+ | "tab"
2891
+ | "table"
2892
+ | "tablist"
2893
+ | "tabpanel"
2894
+ | "term"
2895
+ | "textbox"
2896
+ | "timer"
2897
+ | "toolbar"
2898
+ | "tooltip"
2899
+ | "tree"
2900
+ | "treegrid"
2901
+ | "treeitem"
2902
+ | (string & {});
2903
+
2904
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
2905
+ // React-specific Attributes
2906
+ defaultChecked?: boolean | undefined;
2907
+ defaultValue?: string | number | readonly string[] | undefined;
2908
+ suppressContentEditableWarning?: boolean | undefined;
2909
+ suppressHydrationWarning?: boolean | undefined;
2910
+
2911
+ // Standard HTML Attributes
2912
+ accessKey?: string | undefined;
2913
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
2914
+ autoFocus?: boolean | undefined;
2915
+ className?: string | undefined;
2916
+ contentEditable?: Booleanish | "inherit" | "plaintext-only" | undefined;
2917
+ contextMenu?: string | undefined;
2918
+ dir?: string | undefined;
2919
+ draggable?: Booleanish | undefined;
2920
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
2921
+ hidden?: boolean | undefined;
2922
+ id?: string | undefined;
2923
+ lang?: string | undefined;
2924
+ nonce?: string | undefined;
2925
+ slot?: string | undefined;
2926
+ spellCheck?: Booleanish | undefined;
2927
+ style?: CSSProperties | undefined;
2928
+ tabIndex?: number | undefined;
2929
+ title?: string | undefined;
2930
+ translate?: "yes" | "no" | undefined;
2931
+
2932
+ // Unknown
2933
+ radioGroup?: string | undefined; // <command>, <menuitem>
2934
+
2935
+ // WAI-ARIA
2936
+ role?: AriaRole | undefined;
2937
+
2938
+ // RDFa Attributes
2939
+ about?: string | undefined;
2940
+ content?: string | undefined;
2941
+ datatype?: string | undefined;
2942
+ inlist?: any;
2943
+ prefix?: string | undefined;
2944
+ property?: string | undefined;
2945
+ rel?: string | undefined;
2946
+ resource?: string | undefined;
2947
+ rev?: string | undefined;
2948
+ typeof?: string | undefined;
2949
+ vocab?: string | undefined;
2950
+
2951
+ // Non-standard Attributes
2952
+ autoCorrect?: string | undefined;
2953
+ autoSave?: string | undefined;
2954
+ color?: string | undefined;
2955
+ itemProp?: string | undefined;
2956
+ itemScope?: boolean | undefined;
2957
+ itemType?: string | undefined;
2958
+ itemID?: string | undefined;
2959
+ itemRef?: string | undefined;
2960
+ results?: number | undefined;
2961
+ security?: string | undefined;
2962
+ unselectable?: "on" | "off" | undefined;
2963
+
2964
+ // Living Standard
2965
+ /**
2966
+ * Hints at the type of data that might be entered by the user while editing the element or its contents
2967
+ * @see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}
2968
+ */
2969
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
2970
+ /**
2971
+ * Specify that a standard HTML element should behave like a defined custom built-in element
2972
+ * @see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}
2973
+ */
2974
+ is?: string | undefined;
2975
+ /**
2976
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
2977
+ */
2978
+ exportparts?: string | undefined;
2979
+ /**
2980
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
2981
+ */
2982
+ part?: string | undefined;
2983
+ }
2984
+
2985
+ /**
2986
+ * For internal usage only.
2987
+ * Different release channels declare additional types of ReactNode this particular release channel accepts.
2988
+ * App or library types should never augment this interface.
2989
+ */
2990
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS {}
2991
+
2992
+ interface AllHTMLAttributes<T> extends HTMLAttributes<T> {
2993
+ // Standard HTML Attributes
2994
+ accept?: string | undefined;
2995
+ acceptCharset?: string | undefined;
2996
+ action?:
2997
+ | string
2998
+ | undefined
2999
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3000
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3001
+ ];
3002
+ allowFullScreen?: boolean | undefined;
3003
+ allowTransparency?: boolean | undefined;
3004
+ alt?: string | undefined;
3005
+ as?: string | undefined;
3006
+ async?: boolean | undefined;
3007
+ autoComplete?: string | undefined;
3008
+ autoPlay?: boolean | undefined;
3009
+ capture?: boolean | "user" | "environment" | undefined;
3010
+ cellPadding?: number | string | undefined;
3011
+ cellSpacing?: number | string | undefined;
3012
+ charSet?: string | undefined;
3013
+ challenge?: string | undefined;
3014
+ checked?: boolean | undefined;
3015
+ cite?: string | undefined;
3016
+ classID?: string | undefined;
3017
+ cols?: number | undefined;
3018
+ colSpan?: number | undefined;
3019
+ controls?: boolean | undefined;
3020
+ coords?: string | undefined;
3021
+ crossOrigin?: CrossOrigin;
3022
+ data?: string | undefined;
3023
+ dateTime?: string | undefined;
3024
+ default?: boolean | undefined;
3025
+ defer?: boolean | undefined;
3026
+ disabled?: boolean | undefined;
3027
+ download?: any;
3028
+ encType?: string | undefined;
3029
+ form?: string | undefined;
3030
+ formAction?:
3031
+ | string
3032
+ | undefined
3033
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3034
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3035
+ ];
3036
+ formEncType?: string | undefined;
3037
+ formMethod?: string | undefined;
3038
+ formNoValidate?: boolean | undefined;
3039
+ formTarget?: string | undefined;
3040
+ frameBorder?: number | string | undefined;
3041
+ headers?: string | undefined;
3042
+ height?: number | string | undefined;
3043
+ high?: number | undefined;
3044
+ href?: string | undefined;
3045
+ hrefLang?: string | undefined;
3046
+ htmlFor?: string | undefined;
3047
+ httpEquiv?: string | undefined;
3048
+ integrity?: string | undefined;
3049
+ keyParams?: string | undefined;
3050
+ keyType?: string | undefined;
3051
+ kind?: string | undefined;
3052
+ label?: string | undefined;
3053
+ list?: string | undefined;
3054
+ loop?: boolean | undefined;
3055
+ low?: number | undefined;
3056
+ manifest?: string | undefined;
3057
+ marginHeight?: number | undefined;
3058
+ marginWidth?: number | undefined;
3059
+ max?: number | string | undefined;
3060
+ maxLength?: number | undefined;
3061
+ media?: string | undefined;
3062
+ mediaGroup?: string | undefined;
3063
+ method?: string | undefined;
3064
+ min?: number | string | undefined;
3065
+ minLength?: number | undefined;
3066
+ multiple?: boolean | undefined;
3067
+ muted?: boolean | undefined;
3068
+ name?: string | undefined;
3069
+ noValidate?: boolean | undefined;
3070
+ open?: boolean | undefined;
3071
+ optimum?: number | undefined;
3072
+ pattern?: string | undefined;
3073
+ placeholder?: string | undefined;
3074
+ playsInline?: boolean | undefined;
3075
+ poster?: string | undefined;
3076
+ preload?: string | undefined;
3077
+ readOnly?: boolean | undefined;
3078
+ required?: boolean | undefined;
3079
+ reversed?: boolean | undefined;
3080
+ rows?: number | undefined;
3081
+ rowSpan?: number | undefined;
3082
+ sandbox?: string | undefined;
3083
+ scope?: string | undefined;
3084
+ scoped?: boolean | undefined;
3085
+ scrolling?: string | undefined;
3086
+ seamless?: boolean | undefined;
3087
+ selected?: boolean | undefined;
3088
+ shape?: string | undefined;
3089
+ size?: number | undefined;
3090
+ sizes?: string | undefined;
3091
+ span?: number | undefined;
3092
+ src?: string | undefined;
3093
+ srcDoc?: string | undefined;
3094
+ srcLang?: string | undefined;
3095
+ srcSet?: string | undefined;
3096
+ start?: number | undefined;
3097
+ step?: number | string | undefined;
3098
+ summary?: string | undefined;
3099
+ target?: string | undefined;
3100
+ type?: string | undefined;
3101
+ useMap?: string | undefined;
3102
+ value?: string | readonly string[] | number | undefined;
3103
+ width?: number | string | undefined;
3104
+ wmode?: string | undefined;
3105
+ wrap?: string | undefined;
3106
+ }
3107
+
3108
+ type HTMLAttributeReferrerPolicy =
3109
+ | ""
3110
+ | "no-referrer"
3111
+ | "no-referrer-when-downgrade"
3112
+ | "origin"
3113
+ | "origin-when-cross-origin"
3114
+ | "same-origin"
3115
+ | "strict-origin"
3116
+ | "strict-origin-when-cross-origin"
3117
+ | "unsafe-url";
3118
+
3119
+ type HTMLAttributeAnchorTarget =
3120
+ | "_self"
3121
+ | "_blank"
3122
+ | "_parent"
3123
+ | "_top"
3124
+ | (string & {});
3125
+
3126
+ interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
3127
+ download?: any;
3128
+ href?: string | undefined;
3129
+ hrefLang?: string | undefined;
3130
+ media?: string | undefined;
3131
+ ping?: string | undefined;
3132
+ target?: HTMLAttributeAnchorTarget | undefined;
3133
+ type?: string | undefined;
3134
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3135
+ }
3136
+
3137
+ interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
3138
+
3139
+ interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
3140
+ alt?: string | undefined;
3141
+ coords?: string | undefined;
3142
+ download?: any;
3143
+ href?: string | undefined;
3144
+ hrefLang?: string | undefined;
3145
+ media?: string | undefined;
3146
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3147
+ shape?: string | undefined;
3148
+ target?: string | undefined;
3149
+ }
3150
+
3151
+ interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
3152
+ href?: string | undefined;
3153
+ target?: string | undefined;
3154
+ }
3155
+
3156
+ interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
3157
+ cite?: string | undefined;
3158
+ }
3159
+
3160
+ interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
3161
+ disabled?: boolean | undefined;
3162
+ form?: string | undefined;
3163
+ formAction?:
3164
+ | string
3165
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3166
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3167
+ ]
3168
+ | undefined;
3169
+ formEncType?: string | undefined;
3170
+ formMethod?: string | undefined;
3171
+ formNoValidate?: boolean | undefined;
3172
+ formTarget?: string | undefined;
3173
+ name?: string | undefined;
3174
+ type?: "submit" | "reset" | "button" | undefined;
3175
+ value?: string | readonly string[] | number | undefined;
3176
+ }
3177
+
3178
+ interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
3179
+ height?: number | string | undefined;
3180
+ width?: number | string | undefined;
3181
+ }
3182
+
3183
+ interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
3184
+ span?: number | undefined;
3185
+ width?: number | string | undefined;
3186
+ }
3187
+
3188
+ interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
3189
+ span?: number | undefined;
3190
+ }
3191
+
3192
+ interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
3193
+ value?: string | readonly string[] | number | undefined;
3194
+ }
3195
+
3196
+ interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
3197
+ open?: boolean | undefined;
3198
+ onToggle?: ReactEventHandler<T> | undefined;
3199
+ name?: string | undefined;
3200
+ }
3201
+
3202
+ interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
3203
+ cite?: string | undefined;
3204
+ dateTime?: string | undefined;
3205
+ }
3206
+
3207
+ interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
3208
+ closedby?: "any" | "closerequest" | "none" | undefined;
3209
+ onCancel?: ReactEventHandler<T> | undefined;
3210
+ onClose?: ReactEventHandler<T> | undefined;
3211
+ open?: boolean | undefined;
3212
+ }
3213
+
3214
+ interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
3215
+ height?: number | string | undefined;
3216
+ src?: string | undefined;
3217
+ type?: string | undefined;
3218
+ width?: number | string | undefined;
3219
+ }
3220
+
3221
+ interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
3222
+ disabled?: boolean | undefined;
3223
+ form?: string | undefined;
3224
+ name?: string | undefined;
3225
+ }
3226
+
3227
+ interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
3228
+ acceptCharset?: string | undefined;
3229
+ action?:
3230
+ | string
3231
+ | undefined
3232
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3233
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3234
+ ];
3235
+ autoComplete?: string | undefined;
3236
+ encType?: string | undefined;
3237
+ method?: string | undefined;
3238
+ name?: string | undefined;
3239
+ noValidate?: boolean | undefined;
3240
+ target?: string | undefined;
3241
+ }
3242
+
3243
+ interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
3244
+ manifest?: string | undefined;
3245
+ }
3246
+
3247
+ interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
3248
+ allow?: string | undefined;
3249
+ allowFullScreen?: boolean | undefined;
3250
+ allowTransparency?: boolean | undefined;
3251
+ /** @deprecated */
3252
+ frameBorder?: number | string | undefined;
3253
+ height?: number | string | undefined;
3254
+ loading?: "eager" | "lazy" | undefined;
3255
+ /** @deprecated */
3256
+ marginHeight?: number | undefined;
3257
+ /** @deprecated */
3258
+ marginWidth?: number | undefined;
3259
+ name?: string | undefined;
3260
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3261
+ sandbox?: string | undefined;
3262
+ /** @deprecated */
3263
+ scrolling?: string | undefined;
3264
+ seamless?: boolean | undefined;
3265
+ src?: string | undefined;
3266
+ srcDoc?: string | undefined;
3267
+ width?: number | string | undefined;
3268
+ }
3269
+
3270
+ interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
3271
+ alt?: string | undefined;
3272
+ crossOrigin?: CrossOrigin;
3273
+ decoding?: "async" | "auto" | "sync" | undefined;
3274
+ fetchPriority?: "high" | "low" | "auto";
3275
+ height?: number | string | undefined;
3276
+ loading?: "eager" | "lazy" | undefined;
3277
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3278
+ sizes?: string | undefined;
3279
+ src?: string | undefined;
3280
+ srcSet?: string | undefined;
3281
+ useMap?: string | undefined;
3282
+ width?: number | string | undefined;
3283
+ }
3284
+
3285
+ interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
3286
+ cite?: string | undefined;
3287
+ dateTime?: string | undefined;
3288
+ }
3289
+
3290
+ type HTMLInputTypeAttribute =
3291
+ | "button"
3292
+ | "checkbox"
3293
+ | "color"
3294
+ | "date"
3295
+ | "datetime-local"
3296
+ | "email"
3297
+ | "file"
3298
+ | "hidden"
3299
+ | "image"
3300
+ | "month"
3301
+ | "number"
3302
+ | "password"
3303
+ | "radio"
3304
+ | "range"
3305
+ | "reset"
3306
+ | "search"
3307
+ | "submit"
3308
+ | "tel"
3309
+ | "text"
3310
+ | "time"
3311
+ | "url"
3312
+ | "week"
3313
+ | (string & {});
3314
+
3315
+ type AutoFillAddressKind = "billing" | "shipping";
3316
+ type AutoFillBase = "" | "off" | "on";
3317
+ type AutoFillContactField =
3318
+ | "email"
3319
+ | "tel"
3320
+ | "tel-area-code"
3321
+ | "tel-country-code"
3322
+ | "tel-extension"
3323
+ | "tel-local"
3324
+ | "tel-local-prefix"
3325
+ | "tel-local-suffix"
3326
+ | "tel-national";
3327
+ type AutoFillContactKind = "home" | "mobile" | "work";
3328
+ type AutoFillCredentialField = "webauthn";
3329
+ type AutoFillNormalField =
3330
+ | "additional-name"
3331
+ | "address-level1"
3332
+ | "address-level2"
3333
+ | "address-level3"
3334
+ | "address-level4"
3335
+ | "address-line1"
3336
+ | "address-line2"
3337
+ | "address-line3"
3338
+ | "bday-day"
3339
+ | "bday-month"
3340
+ | "bday-year"
3341
+ | "cc-csc"
3342
+ | "cc-exp"
3343
+ | "cc-exp-month"
3344
+ | "cc-exp-year"
3345
+ | "cc-family-name"
3346
+ | "cc-given-name"
3347
+ | "cc-name"
3348
+ | "cc-number"
3349
+ | "cc-type"
3350
+ | "country"
3351
+ | "country-name"
3352
+ | "current-password"
3353
+ | "family-name"
3354
+ | "given-name"
3355
+ | "honorific-prefix"
3356
+ | "honorific-suffix"
3357
+ | "name"
3358
+ | "new-password"
3359
+ | "one-time-code"
3360
+ | "organization"
3361
+ | "postal-code"
3362
+ | "street-address"
3363
+ | "transaction-amount"
3364
+ | "transaction-currency"
3365
+ | "username";
3366
+ type OptionalPrefixToken<T extends string> = `${T} ` | "";
3367
+ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
3368
+ type AutoFillField = AutoFillNormalField | `${OptionalPrefixToken<AutoFillContactKind>}${AutoFillContactField}`;
3369
+ type AutoFillSection = `section-${string}`;
3370
+ type AutoFill =
3371
+ | AutoFillBase
3372
+ | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<
3373
+ AutoFillAddressKind
3374
+ >}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
3375
+ type HTMLInputAutoCompleteAttribute = AutoFill | (string & {});
3376
+
3377
+ interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
3378
+ accept?: string | undefined;
3379
+ alt?: string | undefined;
3380
+ autoComplete?: HTMLInputAutoCompleteAttribute | undefined;
3381
+ capture?: boolean | "user" | "environment" | undefined; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
3382
+ checked?: boolean | undefined;
3383
+ disabled?: boolean | undefined;
3384
+ form?: string | undefined;
3385
+ formAction?:
3386
+ | string
3387
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3388
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3389
+ ]
3390
+ | undefined;
3391
+ formEncType?: string | undefined;
3392
+ formMethod?: string | undefined;
3393
+ formNoValidate?: boolean | undefined;
3394
+ formTarget?: string | undefined;
3395
+ height?: number | string | undefined;
3396
+ list?: string | undefined;
3397
+ max?: number | string | undefined;
3398
+ maxLength?: number | undefined;
3399
+ min?: number | string | undefined;
3400
+ minLength?: number | undefined;
3401
+ multiple?: boolean | undefined;
3402
+ name?: string | undefined;
3403
+ pattern?: string | undefined;
3404
+ placeholder?: string | undefined;
3405
+ readOnly?: boolean | undefined;
3406
+ required?: boolean | undefined;
3407
+ size?: number | undefined;
3408
+ src?: string | undefined;
3409
+ step?: number | string | undefined;
3410
+ type?: HTMLInputTypeAttribute | undefined;
3411
+ value?: string | readonly string[] | number | undefined;
3412
+ width?: number | string | undefined;
3413
+
3414
+ onChange?: ChangeEventHandler<T> | undefined;
3415
+ }
3416
+
3417
+ interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
3418
+ challenge?: string | undefined;
3419
+ disabled?: boolean | undefined;
3420
+ form?: string | undefined;
3421
+ keyType?: string | undefined;
3422
+ keyParams?: string | undefined;
3423
+ name?: string | undefined;
3424
+ }
3425
+
3426
+ interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
3427
+ form?: string | undefined;
3428
+ htmlFor?: string | undefined;
3429
+ }
3430
+
3431
+ interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
3432
+ value?: string | readonly string[] | number | undefined;
3433
+ }
3434
+
3435
+ interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
3436
+ as?: string | undefined;
3437
+ blocking?: "render" | (string & {}) | undefined;
3438
+ crossOrigin?: CrossOrigin;
3439
+ fetchPriority?: "high" | "low" | "auto";
3440
+ href?: string | undefined;
3441
+ hrefLang?: string | undefined;
3442
+ integrity?: string | undefined;
3443
+ media?: string | undefined;
3444
+ imageSrcSet?: string | undefined;
3445
+ imageSizes?: string | undefined;
3446
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3447
+ sizes?: string | undefined;
3448
+ type?: string | undefined;
3449
+ charSet?: string | undefined;
3450
+ }
3451
+
3452
+ interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
3453
+ name?: string | undefined;
3454
+ }
3455
+
3456
+ interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
3457
+ type?: string | undefined;
3458
+ }
3459
+
3460
+ interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
3461
+ autoPlay?: boolean | undefined;
3462
+ controls?: boolean | undefined;
3463
+ controlsList?: string | undefined;
3464
+ crossOrigin?: CrossOrigin;
3465
+ loop?: boolean | undefined;
3466
+ mediaGroup?: string | undefined;
3467
+ muted?: boolean | undefined;
3468
+ playsInline?: boolean | undefined;
3469
+ preload?: string | undefined;
3470
+ src?: string | undefined;
3471
+ }
3472
+
3473
+ interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
3474
+ charSet?: string | undefined;
3475
+ content?: string | undefined;
3476
+ httpEquiv?: string | undefined;
3477
+ media?: string | undefined;
3478
+ name?: string | undefined;
3479
+ }
3480
+
3481
+ interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
3482
+ form?: string | undefined;
3483
+ high?: number | undefined;
3484
+ low?: number | undefined;
3485
+ max?: number | string | undefined;
3486
+ min?: number | string | undefined;
3487
+ optimum?: number | undefined;
3488
+ value?: string | readonly string[] | number | undefined;
3489
+ }
3490
+
3491
+ interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
3492
+ cite?: string | undefined;
3493
+ }
3494
+
3495
+ interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
3496
+ classID?: string | undefined;
3497
+ data?: string | undefined;
3498
+ form?: string | undefined;
3499
+ height?: number | string | undefined;
3500
+ name?: string | undefined;
3501
+ type?: string | undefined;
3502
+ useMap?: string | undefined;
3503
+ width?: number | string | undefined;
3504
+ wmode?: string | undefined;
3505
+ }
3506
+
3507
+ interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
3508
+ reversed?: boolean | undefined;
3509
+ start?: number | undefined;
3510
+ type?: "1" | "a" | "A" | "i" | "I" | undefined;
3511
+ }
3512
+
3513
+ interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
3514
+ disabled?: boolean | undefined;
3515
+ label?: string | undefined;
3516
+ }
3517
+
3518
+ interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
3519
+ disabled?: boolean | undefined;
3520
+ label?: string | undefined;
3521
+ selected?: boolean | undefined;
3522
+ value?: string | readonly string[] | number | undefined;
3523
+ }
3524
+
3525
+ interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
3526
+ form?: string | undefined;
3527
+ htmlFor?: string | undefined;
3528
+ name?: string | undefined;
3529
+ }
3530
+
3531
+ interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
3532
+ name?: string | undefined;
3533
+ value?: string | readonly string[] | number | undefined;
3534
+ }
3535
+
3536
+ interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
3537
+ max?: number | string | undefined;
3538
+ value?: string | readonly string[] | number | undefined;
3539
+ }
3540
+
3541
+ interface SlotHTMLAttributes<T> extends HTMLAttributes<T> {
3542
+ name?: string | undefined;
3543
+ }
3544
+
3545
+ interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
3546
+ async?: boolean | undefined;
3547
+ blocking?: "render" | (string & {}) | undefined;
3548
+ /** @deprecated */
3549
+ charSet?: string | undefined;
3550
+ crossOrigin?: CrossOrigin;
3551
+ defer?: boolean | undefined;
3552
+ integrity?: string | undefined;
3553
+ noModule?: boolean | undefined;
3554
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3555
+ src?: string | undefined;
3556
+ type?: string | undefined;
3557
+ }
3558
+
3559
+ interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
3560
+ autoComplete?: string | undefined;
3561
+ disabled?: boolean | undefined;
3562
+ form?: string | undefined;
3563
+ multiple?: boolean | undefined;
3564
+ name?: string | undefined;
3565
+ required?: boolean | undefined;
3566
+ size?: number | undefined;
3567
+ value?: string | readonly string[] | number | undefined;
3568
+ onChange?: ChangeEventHandler<T> | undefined;
3569
+ }
3570
+
3571
+ interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
3572
+ height?: number | string | undefined;
3573
+ media?: string | undefined;
3574
+ sizes?: string | undefined;
3575
+ src?: string | undefined;
3576
+ srcSet?: string | undefined;
3577
+ type?: string | undefined;
3578
+ width?: number | string | undefined;
3579
+ }
3580
+
3581
+ interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
3582
+ blocking?: "render" | (string & {}) | undefined;
3583
+ media?: string | undefined;
3584
+ scoped?: boolean | undefined;
3585
+ type?: string | undefined;
3586
+ }
3587
+
3588
+ interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
3589
+ align?: "left" | "center" | "right" | undefined;
3590
+ bgcolor?: string | undefined;
3591
+ border?: number | undefined;
3592
+ cellPadding?: number | string | undefined;
3593
+ cellSpacing?: number | string | undefined;
3594
+ frame?: boolean | undefined;
3595
+ rules?: "none" | "groups" | "rows" | "columns" | "all" | undefined;
3596
+ summary?: string | undefined;
3597
+ width?: number | string | undefined;
3598
+ }
3599
+
3600
+ interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
3601
+ autoComplete?: string | undefined;
3602
+ cols?: number | undefined;
3603
+ dirName?: string | undefined;
3604
+ disabled?: boolean | undefined;
3605
+ form?: string | undefined;
3606
+ maxLength?: number | undefined;
3607
+ minLength?: number | undefined;
3608
+ name?: string | undefined;
3609
+ placeholder?: string | undefined;
3610
+ readOnly?: boolean | undefined;
3611
+ required?: boolean | undefined;
3612
+ rows?: number | undefined;
3613
+ value?: string | readonly string[] | number | undefined;
3614
+ wrap?: string | undefined;
3615
+
3616
+ onChange?: ChangeEventHandler<T> | undefined;
3617
+ }
3618
+
3619
+ interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
3620
+ align?: "left" | "center" | "right" | "justify" | "char" | undefined;
3621
+ colSpan?: number | undefined;
3622
+ headers?: string | undefined;
3623
+ rowSpan?: number | undefined;
3624
+ scope?: string | undefined;
3625
+ abbr?: string | undefined;
3626
+ height?: number | string | undefined;
3627
+ width?: number | string | undefined;
3628
+ valign?: "top" | "middle" | "bottom" | "baseline" | undefined;
3629
+ }
3630
+
3631
+ interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
3632
+ align?: "left" | "center" | "right" | "justify" | "char" | undefined;
3633
+ colSpan?: number | undefined;
3634
+ headers?: string | undefined;
3635
+ rowSpan?: number | undefined;
3636
+ scope?: string | undefined;
3637
+ abbr?: string | undefined;
3638
+ }
3639
+
3640
+ interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
3641
+ dateTime?: string | undefined;
3642
+ }
3643
+
3644
+ interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
3645
+ default?: boolean | undefined;
3646
+ kind?: string | undefined;
3647
+ label?: string | undefined;
3648
+ src?: string | undefined;
3649
+ srcLang?: string | undefined;
3650
+ }
3651
+
3652
+ interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
3653
+ height?: number | string | undefined;
3654
+ playsInline?: boolean | undefined;
3655
+ poster?: string | undefined;
3656
+ width?: number | string | undefined;
3657
+ disablePictureInPicture?: boolean | undefined;
3658
+ disableRemotePlayback?: boolean | undefined;
3659
+
3660
+ onResize?: ReactEventHandler<T> | undefined;
3661
+ onResizeCapture?: ReactEventHandler<T> | undefined;
3662
+ }
3663
+
3664
+ // this list is "complete" in that it contains every SVG attribute
3665
+ // that React supports, but the types can be improved.
3666
+ // Full list here: https://facebook.github.io/react/docs/dom-elements.html
3667
+ //
3668
+ // The three broad type categories are (in order of restrictiveness):
3669
+ // - "number | string"
3670
+ // - "string"
3671
+ // - union of string literals
3672
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
3673
+ // React-specific Attributes
3674
+ suppressHydrationWarning?: boolean | undefined;
3675
+
3676
+ // Attributes which also defined in HTMLAttributes
3677
+ // See comment in SVGDOMPropertyConfig.js
3678
+ className?: string | undefined;
3679
+ color?: string | undefined;
3680
+ height?: number | string | undefined;
3681
+ id?: string | undefined;
3682
+ lang?: string | undefined;
3683
+ max?: number | string | undefined;
3684
+ media?: string | undefined;
3685
+ method?: string | undefined;
3686
+ min?: number | string | undefined;
3687
+ name?: string | undefined;
3688
+ style?: CSSProperties | undefined;
3689
+ target?: string | undefined;
3690
+ type?: string | undefined;
3691
+ width?: number | string | undefined;
3692
+
3693
+ // Other HTML properties supported by SVG elements in browsers
3694
+ role?: AriaRole | undefined;
3695
+ tabIndex?: number | undefined;
3696
+ crossOrigin?: CrossOrigin;
3697
+
3698
+ // SVG Specific attributes
3699
+ accentHeight?: number | string | undefined;
3700
+ accumulate?: "none" | "sum" | undefined;
3701
+ additive?: "replace" | "sum" | undefined;
3702
+ alignmentBaseline?:
3703
+ | "auto"
3704
+ | "baseline"
3705
+ | "before-edge"
3706
+ | "text-before-edge"
3707
+ | "middle"
3708
+ | "central"
3709
+ | "after-edge"
3710
+ | "text-after-edge"
3711
+ | "ideographic"
3712
+ | "alphabetic"
3713
+ | "hanging"
3714
+ | "mathematical"
3715
+ | "inherit"
3716
+ | undefined;
3717
+ allowReorder?: "no" | "yes" | undefined;
3718
+ alphabetic?: number | string | undefined;
3719
+ amplitude?: number | string | undefined;
3720
+ arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
3721
+ ascent?: number | string | undefined;
3722
+ attributeName?: string | undefined;
3723
+ attributeType?: string | undefined;
3724
+ autoReverse?: Booleanish | undefined;
3725
+ azimuth?: number | string | undefined;
3726
+ baseFrequency?: number | string | undefined;
3727
+ baselineShift?: number | string | undefined;
3728
+ baseProfile?: number | string | undefined;
3729
+ bbox?: number | string | undefined;
3730
+ begin?: number | string | undefined;
3731
+ bias?: number | string | undefined;
3732
+ by?: number | string | undefined;
3733
+ calcMode?: number | string | undefined;
3734
+ capHeight?: number | string | undefined;
3735
+ clip?: number | string | undefined;
3736
+ clipPath?: string | undefined;
3737
+ clipPathUnits?: number | string | undefined;
3738
+ clipRule?: number | string | undefined;
3739
+ colorInterpolation?: number | string | undefined;
3740
+ colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
3741
+ colorProfile?: number | string | undefined;
3742
+ colorRendering?: number | string | undefined;
3743
+ contentScriptType?: number | string | undefined;
3744
+ contentStyleType?: number | string | undefined;
3745
+ cursor?: number | string | undefined;
3746
+ cx?: number | string | undefined;
3747
+ cy?: number | string | undefined;
3748
+ d?: string | undefined;
3749
+ decelerate?: number | string | undefined;
3750
+ descent?: number | string | undefined;
3751
+ diffuseConstant?: number | string | undefined;
3752
+ direction?: number | string | undefined;
3753
+ display?: number | string | undefined;
3754
+ divisor?: number | string | undefined;
3755
+ dominantBaseline?:
3756
+ | "auto"
3757
+ | "use-script"
3758
+ | "no-change"
3759
+ | "reset-size"
3760
+ | "ideographic"
3761
+ | "alphabetic"
3762
+ | "hanging"
3763
+ | "mathematical"
3764
+ | "central"
3765
+ | "middle"
3766
+ | "text-after-edge"
3767
+ | "text-before-edge"
3768
+ | "inherit"
3769
+ | undefined;
3770
+ dur?: number | string | undefined;
3771
+ dx?: number | string | undefined;
3772
+ dy?: number | string | undefined;
3773
+ edgeMode?: number | string | undefined;
3774
+ elevation?: number | string | undefined;
3775
+ enableBackground?: number | string | undefined;
3776
+ end?: number | string | undefined;
3777
+ exponent?: number | string | undefined;
3778
+ externalResourcesRequired?: Booleanish | undefined;
3779
+ fill?: string | undefined;
3780
+ fillOpacity?: number | string | undefined;
3781
+ fillRule?: "nonzero" | "evenodd" | "inherit" | undefined;
3782
+ filter?: string | undefined;
3783
+ filterRes?: number | string | undefined;
3784
+ filterUnits?: number | string | undefined;
3785
+ floodColor?: number | string | undefined;
3786
+ floodOpacity?: number | string | undefined;
3787
+ focusable?: Booleanish | "auto" | undefined;
3788
+ fontFamily?: string | undefined;
3789
+ fontSize?: number | string | undefined;
3790
+ fontSizeAdjust?: number | string | undefined;
3791
+ fontStretch?: number | string | undefined;
3792
+ fontStyle?: number | string | undefined;
3793
+ fontVariant?: number | string | undefined;
3794
+ fontWeight?: number | string | undefined;
3795
+ format?: number | string | undefined;
3796
+ fr?: number | string | undefined;
3797
+ from?: number | string | undefined;
3798
+ fx?: number | string | undefined;
3799
+ fy?: number | string | undefined;
3800
+ g1?: number | string | undefined;
3801
+ g2?: number | string | undefined;
3802
+ glyphName?: number | string | undefined;
3803
+ glyphOrientationHorizontal?: number | string | undefined;
3804
+ glyphOrientationVertical?: number | string | undefined;
3805
+ glyphRef?: number | string | undefined;
3806
+ gradientTransform?: string | undefined;
3807
+ gradientUnits?: string | undefined;
3808
+ hanging?: number | string | undefined;
3809
+ horizAdvX?: number | string | undefined;
3810
+ horizOriginX?: number | string | undefined;
3811
+ href?: string | undefined;
3812
+ ideographic?: number | string | undefined;
3813
+ imageRendering?: number | string | undefined;
3814
+ in2?: number | string | undefined;
3815
+ in?: string | undefined;
3816
+ intercept?: number | string | undefined;
3817
+ k1?: number | string | undefined;
3818
+ k2?: number | string | undefined;
3819
+ k3?: number | string | undefined;
3820
+ k4?: number | string | undefined;
3821
+ k?: number | string | undefined;
3822
+ kernelMatrix?: number | string | undefined;
3823
+ kernelUnitLength?: number | string | undefined;
3824
+ kerning?: number | string | undefined;
3825
+ keyPoints?: number | string | undefined;
3826
+ keySplines?: number | string | undefined;
3827
+ keyTimes?: number | string | undefined;
3828
+ lengthAdjust?: number | string | undefined;
3829
+ letterSpacing?: number | string | undefined;
3830
+ lightingColor?: number | string | undefined;
3831
+ limitingConeAngle?: number | string | undefined;
3832
+ local?: number | string | undefined;
3833
+ markerEnd?: string | undefined;
3834
+ markerHeight?: number | string | undefined;
3835
+ markerMid?: string | undefined;
3836
+ markerStart?: string | undefined;
3837
+ markerUnits?: number | string | undefined;
3838
+ markerWidth?: number | string | undefined;
3839
+ mask?: string | undefined;
3840
+ maskContentUnits?: number | string | undefined;
3841
+ maskUnits?: number | string | undefined;
3842
+ mathematical?: number | string | undefined;
3843
+ mode?: number | string | undefined;
3844
+ numOctaves?: number | string | undefined;
3845
+ offset?: number | string | undefined;
3846
+ opacity?: number | string | undefined;
3847
+ operator?: number | string | undefined;
3848
+ order?: number | string | undefined;
3849
+ orient?: number | string | undefined;
3850
+ orientation?: number | string | undefined;
3851
+ origin?: number | string | undefined;
3852
+ overflow?: number | string | undefined;
3853
+ overlinePosition?: number | string | undefined;
3854
+ overlineThickness?: number | string | undefined;
3855
+ paintOrder?: number | string | undefined;
3856
+ panose1?: number | string | undefined;
3857
+ path?: string | undefined;
3858
+ pathLength?: number | string | undefined;
3859
+ patternContentUnits?: string | undefined;
3860
+ patternTransform?: number | string | undefined;
3861
+ patternUnits?: string | undefined;
3862
+ pointerEvents?: number | string | undefined;
3863
+ points?: string | undefined;
3864
+ pointsAtX?: number | string | undefined;
3865
+ pointsAtY?: number | string | undefined;
3866
+ pointsAtZ?: number | string | undefined;
3867
+ preserveAlpha?: Booleanish | undefined;
3868
+ preserveAspectRatio?: string | undefined;
3869
+ primitiveUnits?: number | string | undefined;
3870
+ r?: number | string | undefined;
3871
+ radius?: number | string | undefined;
3872
+ refX?: number | string | undefined;
3873
+ refY?: number | string | undefined;
3874
+ renderingIntent?: number | string | undefined;
3875
+ repeatCount?: number | string | undefined;
3876
+ repeatDur?: number | string | undefined;
3877
+ requiredExtensions?: number | string | undefined;
3878
+ requiredFeatures?: number | string | undefined;
3879
+ restart?: number | string | undefined;
3880
+ result?: string | undefined;
3881
+ rotate?: number | string | undefined;
3882
+ rx?: number | string | undefined;
3883
+ ry?: number | string | undefined;
3884
+ scale?: number | string | undefined;
3885
+ seed?: number | string | undefined;
3886
+ shapeRendering?: number | string | undefined;
3887
+ slope?: number | string | undefined;
3888
+ spacing?: number | string | undefined;
3889
+ specularConstant?: number | string | undefined;
3890
+ specularExponent?: number | string | undefined;
3891
+ speed?: number | string | undefined;
3892
+ spreadMethod?: string | undefined;
3893
+ startOffset?: number | string | undefined;
3894
+ stdDeviation?: number | string | undefined;
3895
+ stemh?: number | string | undefined;
3896
+ stemv?: number | string | undefined;
3897
+ stitchTiles?: number | string | undefined;
3898
+ stopColor?: string | undefined;
3899
+ stopOpacity?: number | string | undefined;
3900
+ strikethroughPosition?: number | string | undefined;
3901
+ strikethroughThickness?: number | string | undefined;
3902
+ string?: number | string | undefined;
3903
+ stroke?: string | undefined;
3904
+ strokeDasharray?: string | number | undefined;
3905
+ strokeDashoffset?: string | number | undefined;
3906
+ strokeLinecap?: "butt" | "round" | "square" | "inherit" | undefined;
3907
+ strokeLinejoin?: "miter" | "round" | "bevel" | "inherit" | undefined;
3908
+ strokeMiterlimit?: number | string | undefined;
3909
+ strokeOpacity?: number | string | undefined;
3910
+ strokeWidth?: number | string | undefined;
3911
+ surfaceScale?: number | string | undefined;
3912
+ systemLanguage?: number | string | undefined;
3913
+ tableValues?: number | string | undefined;
3914
+ targetX?: number | string | undefined;
3915
+ targetY?: number | string | undefined;
3916
+ textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
3917
+ textDecoration?: number | string | undefined;
3918
+ textLength?: number | string | undefined;
3919
+ textRendering?: number | string | undefined;
3920
+ to?: number | string | undefined;
3921
+ transform?: string | undefined;
3922
+ transformOrigin?: string | undefined;
3923
+ u1?: number | string | undefined;
3924
+ u2?: number | string | undefined;
3925
+ underlinePosition?: number | string | undefined;
3926
+ underlineThickness?: number | string | undefined;
3927
+ unicode?: number | string | undefined;
3928
+ unicodeBidi?: number | string | undefined;
3929
+ unicodeRange?: number | string | undefined;
3930
+ unitsPerEm?: number | string | undefined;
3931
+ vAlphabetic?: number | string | undefined;
3932
+ values?: string | undefined;
3933
+ vectorEffect?: number | string | undefined;
3934
+ version?: string | undefined;
3935
+ vertAdvY?: number | string | undefined;
3936
+ vertOriginX?: number | string | undefined;
3937
+ vertOriginY?: number | string | undefined;
3938
+ vHanging?: number | string | undefined;
3939
+ vIdeographic?: number | string | undefined;
3940
+ viewBox?: string | undefined;
3941
+ viewTarget?: number | string | undefined;
3942
+ visibility?: number | string | undefined;
3943
+ vMathematical?: number | string | undefined;
3944
+ widths?: number | string | undefined;
3945
+ wordSpacing?: number | string | undefined;
3946
+ writingMode?: number | string | undefined;
3947
+ x1?: number | string | undefined;
3948
+ x2?: number | string | undefined;
3949
+ x?: number | string | undefined;
3950
+ xChannelSelector?: string | undefined;
3951
+ xHeight?: number | string | undefined;
3952
+ xlinkActuate?: string | undefined;
3953
+ xlinkArcrole?: string | undefined;
3954
+ xlinkHref?: string | undefined;
3955
+ xlinkRole?: string | undefined;
3956
+ xlinkShow?: string | undefined;
3957
+ xlinkTitle?: string | undefined;
3958
+ xlinkType?: string | undefined;
3959
+ xmlBase?: string | undefined;
3960
+ xmlLang?: string | undefined;
3961
+ xmlns?: string | undefined;
3962
+ xmlnsXlink?: string | undefined;
3963
+ xmlSpace?: string | undefined;
3964
+ y1?: number | string | undefined;
3965
+ y2?: number | string | undefined;
3966
+ y?: number | string | undefined;
3967
+ yChannelSelector?: string | undefined;
3968
+ z?: number | string | undefined;
3969
+ zoomAndPan?: string | undefined;
3970
+ }
3971
+
3972
+ interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
3973
+ allowFullScreen?: boolean | undefined;
3974
+ allowpopups?: boolean | undefined;
3975
+ autosize?: boolean | undefined;
3976
+ blinkfeatures?: string | undefined;
3977
+ disableblinkfeatures?: string | undefined;
3978
+ disableguestresize?: boolean | undefined;
3979
+ disablewebsecurity?: boolean | undefined;
3980
+ guestinstance?: string | undefined;
3981
+ httpreferrer?: string | undefined;
3982
+ nodeintegration?: boolean | undefined;
3983
+ partition?: string | undefined;
3984
+ plugins?: boolean | undefined;
3985
+ preload?: string | undefined;
3986
+ src?: string | undefined;
3987
+ useragent?: string | undefined;
3988
+ webpreferences?: string | undefined;
3989
+ }
3990
+
3991
+ //
3992
+ // React.DOM
3993
+ // ----------------------------------------------------------------------
3994
+
3995
+ /* deprecated */
3996
+ interface ReactHTML {
3997
+ a: DetailedHTMLFactory<AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
3998
+ abbr: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
3999
+ address: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4000
+ area: DetailedHTMLFactory<AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>;
4001
+ article: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4002
+ aside: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4003
+ audio: DetailedHTMLFactory<AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>;
4004
+ b: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4005
+ base: DetailedHTMLFactory<BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>;
4006
+ bdi: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4007
+ bdo: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4008
+ big: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4009
+ blockquote: DetailedHTMLFactory<BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4010
+ body: DetailedHTMLFactory<HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>;
4011
+ br: DetailedHTMLFactory<HTMLAttributes<HTMLBRElement>, HTMLBRElement>;
4012
+ button: DetailedHTMLFactory<ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
4013
+ canvas: DetailedHTMLFactory<CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>;
4014
+ caption: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4015
+ center: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4016
+ cite: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4017
+ code: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4018
+ col: DetailedHTMLFactory<ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4019
+ colgroup: DetailedHTMLFactory<ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4020
+ data: DetailedHTMLFactory<DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>;
4021
+ datalist: DetailedHTMLFactory<HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>;
4022
+ dd: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4023
+ del: DetailedHTMLFactory<DelHTMLAttributes<HTMLModElement>, HTMLModElement>;
4024
+ details: DetailedHTMLFactory<DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>;
4025
+ dfn: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4026
+ dialog: DetailedHTMLFactory<DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>;
4027
+ div: DetailedHTMLFactory<HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
4028
+ dl: DetailedHTMLFactory<HTMLAttributes<HTMLDListElement>, HTMLDListElement>;
4029
+ dt: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4030
+ em: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4031
+ embed: DetailedHTMLFactory<EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>;
4032
+ fieldset: DetailedHTMLFactory<FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>;
4033
+ figcaption: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4034
+ figure: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4035
+ footer: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4036
+ form: DetailedHTMLFactory<FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>;
4037
+ h1: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4038
+ h2: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4039
+ h3: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4040
+ h4: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4041
+ h5: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4042
+ h6: DetailedHTMLFactory<HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4043
+ head: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLHeadElement>;
4044
+ header: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4045
+ hgroup: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4046
+ hr: DetailedHTMLFactory<HTMLAttributes<HTMLHRElement>, HTMLHRElement>;
4047
+ html: DetailedHTMLFactory<HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>;
4048
+ i: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4049
+ iframe: DetailedHTMLFactory<IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>;
4050
+ img: DetailedHTMLFactory<ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
4051
+ input: DetailedHTMLFactory<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
4052
+ ins: DetailedHTMLFactory<InsHTMLAttributes<HTMLModElement>, HTMLModElement>;
4053
+ kbd: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4054
+ keygen: DetailedHTMLFactory<KeygenHTMLAttributes<HTMLElement>, HTMLElement>;
4055
+ label: DetailedHTMLFactory<LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>;
4056
+ legend: DetailedHTMLFactory<HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>;
4057
+ li: DetailedHTMLFactory<LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>;
4058
+ link: DetailedHTMLFactory<LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>;
4059
+ main: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4060
+ map: DetailedHTMLFactory<MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>;
4061
+ mark: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4062
+ menu: DetailedHTMLFactory<MenuHTMLAttributes<HTMLElement>, HTMLElement>;
4063
+ menuitem: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4064
+ meta: DetailedHTMLFactory<MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>;
4065
+ meter: DetailedHTMLFactory<MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>;
4066
+ nav: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4067
+ noscript: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4068
+ object: DetailedHTMLFactory<ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>;
4069
+ ol: DetailedHTMLFactory<OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>;
4070
+ optgroup: DetailedHTMLFactory<OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>;
4071
+ option: DetailedHTMLFactory<OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>;
4072
+ output: DetailedHTMLFactory<OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>;
4073
+ p: DetailedHTMLFactory<HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>;
4074
+ param: DetailedHTMLFactory<ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>;
4075
+ picture: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4076
+ pre: DetailedHTMLFactory<HTMLAttributes<HTMLPreElement>, HTMLPreElement>;
4077
+ progress: DetailedHTMLFactory<ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>;
4078
+ q: DetailedHTMLFactory<QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4079
+ rp: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4080
+ rt: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4081
+ ruby: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4082
+ s: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4083
+ samp: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4084
+ search: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4085
+ slot: DetailedHTMLFactory<SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>;
4086
+ script: DetailedHTMLFactory<ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>;
4087
+ section: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4088
+ select: DetailedHTMLFactory<SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
4089
+ small: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4090
+ source: DetailedHTMLFactory<SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>;
4091
+ span: DetailedHTMLFactory<HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>;
4092
+ strong: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4093
+ style: DetailedHTMLFactory<StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>;
4094
+ sub: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4095
+ summary: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4096
+ sup: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4097
+ table: DetailedHTMLFactory<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
4098
+ template: DetailedHTMLFactory<HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
4099
+ tbody: DetailedHTMLFactory<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4100
+ td: DetailedHTMLFactory<TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
4101
+ textarea: DetailedHTMLFactory<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
4102
+ tfoot: DetailedHTMLFactory<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4103
+ th: DetailedHTMLFactory<ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>;
4104
+ thead: DetailedHTMLFactory<HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4105
+ time: DetailedHTMLFactory<TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>;
4106
+ title: DetailedHTMLFactory<HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>;
4107
+ tr: DetailedHTMLFactory<HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>;
4108
+ track: DetailedHTMLFactory<TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>;
4109
+ u: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4110
+ ul: DetailedHTMLFactory<HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
4111
+ "var": DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4112
+ video: DetailedHTMLFactory<VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
4113
+ wbr: DetailedHTMLFactory<HTMLAttributes<HTMLElement>, HTMLElement>;
4114
+ webview: DetailedHTMLFactory<WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>;
4115
+ }
4116
+
4117
+ /* deprecated */
4118
+ interface ReactSVG {
4119
+ animate: SVGFactory;
4120
+ circle: SVGFactory;
4121
+ clipPath: SVGFactory;
4122
+ defs: SVGFactory;
4123
+ desc: SVGFactory;
4124
+ ellipse: SVGFactory;
4125
+ feBlend: SVGFactory;
4126
+ feColorMatrix: SVGFactory;
4127
+ feComponentTransfer: SVGFactory;
4128
+ feComposite: SVGFactory;
4129
+ feConvolveMatrix: SVGFactory;
4130
+ feDiffuseLighting: SVGFactory;
4131
+ feDisplacementMap: SVGFactory;
4132
+ feDistantLight: SVGFactory;
4133
+ feDropShadow: SVGFactory;
4134
+ feFlood: SVGFactory;
4135
+ feFuncA: SVGFactory;
4136
+ feFuncB: SVGFactory;
4137
+ feFuncG: SVGFactory;
4138
+ feFuncR: SVGFactory;
4139
+ feGaussianBlur: SVGFactory;
4140
+ feImage: SVGFactory;
4141
+ feMerge: SVGFactory;
4142
+ feMergeNode: SVGFactory;
4143
+ feMorphology: SVGFactory;
4144
+ feOffset: SVGFactory;
4145
+ fePointLight: SVGFactory;
4146
+ feSpecularLighting: SVGFactory;
4147
+ feSpotLight: SVGFactory;
4148
+ feTile: SVGFactory;
4149
+ feTurbulence: SVGFactory;
4150
+ filter: SVGFactory;
4151
+ foreignObject: SVGFactory;
4152
+ g: SVGFactory;
4153
+ image: SVGFactory;
4154
+ line: SVGFactory;
4155
+ linearGradient: SVGFactory;
4156
+ marker: SVGFactory;
4157
+ mask: SVGFactory;
4158
+ metadata: SVGFactory;
4159
+ path: SVGFactory;
4160
+ pattern: SVGFactory;
4161
+ polygon: SVGFactory;
4162
+ polyline: SVGFactory;
4163
+ radialGradient: SVGFactory;
4164
+ rect: SVGFactory;
4165
+ stop: SVGFactory;
4166
+ svg: SVGFactory;
4167
+ switch: SVGFactory;
4168
+ symbol: SVGFactory;
4169
+ text: SVGFactory;
4170
+ textPath: SVGFactory;
4171
+ tspan: SVGFactory;
4172
+ use: SVGFactory;
4173
+ view: SVGFactory;
4174
+ }
4175
+
4176
+ /* deprecated */
4177
+ interface ReactDOM extends ReactHTML, ReactSVG {}
4178
+
4179
+ //
4180
+ // React.PropTypes
4181
+ // ----------------------------------------------------------------------
4182
+
4183
+ /**
4184
+ * @deprecated Use `Validator` from the ´prop-types` instead.
4185
+ */
4186
+ type Validator<T> = PropTypes.Validator<T>;
4187
+
4188
+ /**
4189
+ * @deprecated Use `Requireable` from the ´prop-types` instead.
4190
+ */
4191
+ type Requireable<T> = PropTypes.Requireable<T>;
4192
+
4193
+ /**
4194
+ * @deprecated Use `ValidationMap` from the ´prop-types` instead.
4195
+ */
4196
+ type ValidationMap<T> = PropTypes.ValidationMap<T>;
4197
+
4198
+ /**
4199
+ * @deprecated Use `WeakValidationMap` from the ´prop-types` instead.
4200
+ */
4201
+ type WeakValidationMap<T> = {
4202
+ [K in keyof T]?: null extends T[K] ? Validator<T[K] | null | undefined>
4203
+ : undefined extends T[K] ? Validator<T[K] | null | undefined>
4204
+ : Validator<T[K]>;
4205
+ };
4206
+
4207
+ /**
4208
+ * @deprecated Use `PropTypes.*` where `PropTypes` comes from `import * as PropTypes from 'prop-types'` instead.
4209
+ */
4210
+ interface ReactPropTypes {
4211
+ any: typeof PropTypes.any;
4212
+ array: typeof PropTypes.array;
4213
+ bool: typeof PropTypes.bool;
4214
+ func: typeof PropTypes.func;
4215
+ number: typeof PropTypes.number;
4216
+ object: typeof PropTypes.object;
4217
+ string: typeof PropTypes.string;
4218
+ node: typeof PropTypes.node;
4219
+ element: typeof PropTypes.element;
4220
+ instanceOf: typeof PropTypes.instanceOf;
4221
+ oneOf: typeof PropTypes.oneOf;
4222
+ oneOfType: typeof PropTypes.oneOfType;
4223
+ arrayOf: typeof PropTypes.arrayOf;
4224
+ objectOf: typeof PropTypes.objectOf;
4225
+ shape: typeof PropTypes.shape;
4226
+ exact: typeof PropTypes.exact;
4227
+ }
4228
+
4229
+ //
4230
+ // React.Children
4231
+ // ----------------------------------------------------------------------
4232
+
4233
+ /**
4234
+ * @deprecated - Use `typeof React.Children` instead.
4235
+ */
4236
+ // Sync with type of `const Children`.
4237
+ interface ReactChildren {
4238
+ map<T, C>(
4239
+ children: C | readonly C[],
4240
+ fn: (child: C, index: number) => T,
4241
+ ): C extends null | undefined ? C : Array<Exclude<T, boolean | null | undefined>>;
4242
+ forEach<C>(children: C | readonly C[], fn: (child: C, index: number) => void): void;
4243
+ count(children: any): number;
4244
+ only<C>(children: C): C extends any[] ? never : C;
4245
+ toArray(children: ReactNode | ReactNode[]): Array<Exclude<ReactNode, boolean | null | undefined>>;
4246
+ }
4247
+
4248
+ //
4249
+ // Browser Interfaces
4250
+ // https://github.com/nikeee/2048-typescript/blob/master/2048/js/touch.d.ts
4251
+ // ----------------------------------------------------------------------
4252
+
4253
+ interface AbstractView {
4254
+ styleMedia: StyleMedia;
4255
+ document: Document;
4256
+ }
4257
+
4258
+ interface Touch {
4259
+ identifier: number;
4260
+ target: EventTarget;
4261
+ screenX: number;
4262
+ screenY: number;
4263
+ clientX: number;
4264
+ clientY: number;
4265
+ pageX: number;
4266
+ pageY: number;
4267
+ }
4268
+
4269
+ interface TouchList {
4270
+ [index: number]: Touch;
4271
+ length: number;
4272
+ item(index: number): Touch;
4273
+ identifiedTouch(identifier: number): Touch;
4274
+ }
4275
+
4276
+ //
4277
+ // Error Interfaces
4278
+ // ----------------------------------------------------------------------
4279
+ interface ErrorInfo {
4280
+ /**
4281
+ * Captures which component contained the exception, and its ancestors.
4282
+ */
4283
+ componentStack?: string | null;
4284
+ digest?: string | null;
4285
+ }
4286
+
4287
+ // Keep in sync with JSX namespace in ./jsx-runtime.d.ts and ./jsx-dev-runtime.d.ts
4288
+ namespace JSX {
4289
+ type ElementType = GlobalJSXElementType;
4290
+ interface Element extends GlobalJSXElement {}
4291
+ interface ElementClass extends GlobalJSXElementClass {}
4292
+ interface ElementAttributesProperty extends GlobalJSXElementAttributesProperty {}
4293
+ interface ElementChildrenAttribute extends GlobalJSXElementChildrenAttribute {}
4294
+
4295
+ type LibraryManagedAttributes<C, P> = GlobalJSXLibraryManagedAttributes<C, P>;
4296
+
4297
+ interface IntrinsicAttributes extends GlobalJSXIntrinsicAttributes {}
4298
+ interface IntrinsicClassAttributes<T> extends GlobalJSXIntrinsicClassAttributes<T> {}
4299
+ interface IntrinsicElements extends GlobalJSXIntrinsicElements {}
4300
+ }
4301
+ }
4302
+
4303
+ // naked 'any' type in a conditional type will short circuit and union both the then/else branches
4304
+ // so boolean is only resolved for T = any
4305
+ type IsExactlyAny<T> = boolean extends (T extends never ? true : false) ? true : false;
4306
+
4307
+ type ExactlyAnyPropertyKeys<T> = { [K in keyof T]: IsExactlyAny<T[K]> extends true ? K : never }[keyof T];
4308
+ type NotExactlyAnyPropertyKeys<T> = Exclude<keyof T, ExactlyAnyPropertyKeys<T>>;
4309
+
4310
+ // Try to resolve ill-defined props like for JS users: props can be any, or sometimes objects with properties of type any
4311
+ type MergePropTypes<P, T> =
4312
+ // Distribute over P in case it is a union type
4313
+ P extends any
4314
+ // If props is type any, use propTypes definitions
4315
+ ? IsExactlyAny<P> extends true ? T
4316
+ // If declared props have indexed properties, ignore inferred props entirely as keyof gets widened
4317
+ : string extends keyof P ? P
4318
+ // Prefer declared types which are not exactly any
4319
+ :
4320
+ & Pick<P, NotExactlyAnyPropertyKeys<P>>
4321
+ // For props which are exactly any, use the type inferred from propTypes if present
4322
+ & Pick<T, Exclude<keyof T, NotExactlyAnyPropertyKeys<P>>>
4323
+ // Keep leftover props not specified in propTypes
4324
+ & Pick<P, Exclude<keyof P, keyof T>>
4325
+ : never;
4326
+
4327
+ type InexactPartial<T> = { [K in keyof T]?: T[K] | undefined };
4328
+
4329
+ // Any prop that has a default prop becomes optional, but its type is unchanged
4330
+ // Undeclared default props are augmented into the resulting allowable attributes
4331
+ // If declared props have indexed properties, ignore default props entirely as keyof gets widened
4332
+ // Wrap in an outer-level conditional type to allow distribution over props that are unions
4333
+ type Defaultize<P, D> = P extends any ? string extends keyof P ? P
4334
+ :
4335
+ & Pick<P, Exclude<keyof P, keyof D>>
4336
+ & InexactPartial<Pick<P, Extract<keyof P, keyof D>>>
4337
+ & InexactPartial<Pick<D, Exclude<keyof D, keyof P>>>
4338
+ : never;
4339
+
4340
+ type ReactManagedAttributes<C, P> = C extends { propTypes: infer T; defaultProps: infer D }
4341
+ ? Defaultize<MergePropTypes<P, PropTypes.InferProps<T>>, D>
4342
+ : C extends { propTypes: infer T } ? MergePropTypes<P, PropTypes.InferProps<T>>
4343
+ : C extends { defaultProps: infer D } ? Defaultize<P, D>
4344
+ : P;
4345
+
4346
+ declare global {
4347
+ /**
4348
+ * @deprecated Use `React.JSX` instead of the global `JSX` namespace.
4349
+ */
4350
+ namespace JSX {
4351
+ // We don't just alias React.ElementType because React.ElementType
4352
+ // historically does more than we need it to.
4353
+ // E.g. it also contains .propTypes and so TS also verifies the declared
4354
+ // props type does match the declared .propTypes.
4355
+ // But if libraries declared their .propTypes but not props type,
4356
+ // or they mismatch, you won't be able to use the class component
4357
+ // as a JSX.ElementType.
4358
+ // We could fix this everywhere but we're ultimately not interested in
4359
+ // .propTypes assignability so we might as well drop it entirely here to
4360
+ // reduce the work of the type-checker.
4361
+ // TODO: Check impact of making React.ElementType<P = any> = React.JSXElementConstructor<P>
4362
+ type ElementType = string | React.JSXElementConstructor<any>;
4363
+ interface Element extends React.ReactElement<any, any> {}
4364
+ interface ElementClass extends React.Component<any> {
4365
+ render(): React.ReactNode;
4366
+ }
4367
+ interface ElementAttributesProperty {
4368
+ props: {};
4369
+ }
4370
+ interface ElementChildrenAttribute {
4371
+ children: {};
4372
+ }
4373
+
4374
+ // We can't recurse forever because `type` can't be self-referential;
4375
+ // let's assume it's reasonable to do a single React.lazy() around a single React.memo() / vice-versa
4376
+ type LibraryManagedAttributes<C, P> = C extends
4377
+ React.MemoExoticComponent<infer T> | React.LazyExoticComponent<infer T>
4378
+ ? T extends React.MemoExoticComponent<infer U> | React.LazyExoticComponent<infer U>
4379
+ ? ReactManagedAttributes<U, P>
4380
+ : ReactManagedAttributes<T, P>
4381
+ : ReactManagedAttributes<C, P>;
4382
+
4383
+ interface IntrinsicAttributes extends React.Attributes {}
4384
+ interface IntrinsicClassAttributes<T> extends React.ClassAttributes<T> {}
4385
+
4386
+ interface IntrinsicElements {
4387
+ // HTML
4388
+ a: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
4389
+ abbr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4390
+ address: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4391
+ area: React.DetailedHTMLProps<React.AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>;
4392
+ article: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4393
+ aside: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4394
+ audio: React.DetailedHTMLProps<React.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>;
4395
+ b: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4396
+ base: React.DetailedHTMLProps<React.BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>;
4397
+ bdi: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4398
+ bdo: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4399
+ big: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4400
+ blockquote: React.DetailedHTMLProps<React.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4401
+ body: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>;
4402
+ br: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBRElement>, HTMLBRElement>;
4403
+ button: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
4404
+ canvas: React.DetailedHTMLProps<React.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>;
4405
+ caption: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4406
+ center: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4407
+ cite: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4408
+ code: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4409
+ col: React.DetailedHTMLProps<React.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4410
+ colgroup: React.DetailedHTMLProps<React.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4411
+ data: React.DetailedHTMLProps<React.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>;
4412
+ datalist: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>;
4413
+ dd: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4414
+ del: React.DetailedHTMLProps<React.DelHTMLAttributes<HTMLModElement>, HTMLModElement>;
4415
+ details: React.DetailedHTMLProps<React.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>;
4416
+ dfn: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4417
+ dialog: React.DetailedHTMLProps<React.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>;
4418
+ div: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
4419
+ dl: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDListElement>, HTMLDListElement>;
4420
+ dt: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4421
+ em: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4422
+ embed: React.DetailedHTMLProps<React.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>;
4423
+ fieldset: React.DetailedHTMLProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>;
4424
+ figcaption: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4425
+ figure: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4426
+ footer: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4427
+ form: React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>;
4428
+ h1: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4429
+ h2: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4430
+ h3: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4431
+ h4: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4432
+ h5: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4433
+ h6: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4434
+ head: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>;
4435
+ header: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4436
+ hgroup: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4437
+ hr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHRElement>, HTMLHRElement>;
4438
+ html: React.DetailedHTMLProps<React.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>;
4439
+ i: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4440
+ iframe: React.DetailedHTMLProps<React.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>;
4441
+ img: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
4442
+ input: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
4443
+ ins: React.DetailedHTMLProps<React.InsHTMLAttributes<HTMLModElement>, HTMLModElement>;
4444
+ kbd: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4445
+ keygen: React.DetailedHTMLProps<React.KeygenHTMLAttributes<HTMLElement>, HTMLElement>;
4446
+ label: React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>;
4447
+ legend: React.DetailedHTMLProps<React.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>;
4448
+ li: React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>;
4449
+ link: React.DetailedHTMLProps<React.LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>;
4450
+ main: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4451
+ map: React.DetailedHTMLProps<React.MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>;
4452
+ mark: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4453
+ menu: React.DetailedHTMLProps<React.MenuHTMLAttributes<HTMLElement>, HTMLElement>;
4454
+ menuitem: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4455
+ meta: React.DetailedHTMLProps<React.MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>;
4456
+ meter: React.DetailedHTMLProps<React.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>;
4457
+ nav: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4458
+ noindex: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4459
+ noscript: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4460
+ object: React.DetailedHTMLProps<React.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>;
4461
+ ol: React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>;
4462
+ optgroup: React.DetailedHTMLProps<React.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>;
4463
+ option: React.DetailedHTMLProps<React.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>;
4464
+ output: React.DetailedHTMLProps<React.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>;
4465
+ p: React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>;
4466
+ param: React.DetailedHTMLProps<React.ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>;
4467
+ picture: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4468
+ pre: React.DetailedHTMLProps<React.HTMLAttributes<HTMLPreElement>, HTMLPreElement>;
4469
+ progress: React.DetailedHTMLProps<React.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>;
4470
+ q: React.DetailedHTMLProps<React.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4471
+ rp: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4472
+ rt: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4473
+ ruby: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4474
+ s: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4475
+ samp: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4476
+ search: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4477
+ slot: React.DetailedHTMLProps<React.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>;
4478
+ script: React.DetailedHTMLProps<React.ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>;
4479
+ section: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4480
+ select: React.DetailedHTMLProps<React.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
4481
+ small: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4482
+ source: React.DetailedHTMLProps<React.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>;
4483
+ span: React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>;
4484
+ strong: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4485
+ style: React.DetailedHTMLProps<React.StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>;
4486
+ sub: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4487
+ summary: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4488
+ sup: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4489
+ table: React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
4490
+ template: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
4491
+ tbody: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4492
+ td: React.DetailedHTMLProps<React.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
4493
+ textarea: React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
4494
+ tfoot: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4495
+ th: React.DetailedHTMLProps<React.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>;
4496
+ thead: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4497
+ time: React.DetailedHTMLProps<React.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>;
4498
+ title: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>;
4499
+ tr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>;
4500
+ track: React.DetailedHTMLProps<React.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>;
4501
+ u: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4502
+ ul: React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
4503
+ "var": React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4504
+ video: React.DetailedHTMLProps<React.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
4505
+ wbr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4506
+ webview: React.DetailedHTMLProps<React.WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>;
4507
+
4508
+ // SVG
4509
+ svg: React.SVGProps<SVGSVGElement>;
4510
+
4511
+ animate: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateElement but is not in TypeScript's lib.dom.d.ts for now.
4512
+ animateMotion: React.SVGProps<SVGElement>;
4513
+ animateTransform: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateTransformElement but is not in TypeScript's lib.dom.d.ts for now.
4514
+ circle: React.SVGProps<SVGCircleElement>;
4515
+ clipPath: React.SVGProps<SVGClipPathElement>;
4516
+ defs: React.SVGProps<SVGDefsElement>;
4517
+ desc: React.SVGProps<SVGDescElement>;
4518
+ ellipse: React.SVGProps<SVGEllipseElement>;
4519
+ feBlend: React.SVGProps<SVGFEBlendElement>;
4520
+ feColorMatrix: React.SVGProps<SVGFEColorMatrixElement>;
4521
+ feComponentTransfer: React.SVGProps<SVGFEComponentTransferElement>;
4522
+ feComposite: React.SVGProps<SVGFECompositeElement>;
4523
+ feConvolveMatrix: React.SVGProps<SVGFEConvolveMatrixElement>;
4524
+ feDiffuseLighting: React.SVGProps<SVGFEDiffuseLightingElement>;
4525
+ feDisplacementMap: React.SVGProps<SVGFEDisplacementMapElement>;
4526
+ feDistantLight: React.SVGProps<SVGFEDistantLightElement>;
4527
+ feDropShadow: React.SVGProps<SVGFEDropShadowElement>;
4528
+ feFlood: React.SVGProps<SVGFEFloodElement>;
4529
+ feFuncA: React.SVGProps<SVGFEFuncAElement>;
4530
+ feFuncB: React.SVGProps<SVGFEFuncBElement>;
4531
+ feFuncG: React.SVGProps<SVGFEFuncGElement>;
4532
+ feFuncR: React.SVGProps<SVGFEFuncRElement>;
4533
+ feGaussianBlur: React.SVGProps<SVGFEGaussianBlurElement>;
4534
+ feImage: React.SVGProps<SVGFEImageElement>;
4535
+ feMerge: React.SVGProps<SVGFEMergeElement>;
4536
+ feMergeNode: React.SVGProps<SVGFEMergeNodeElement>;
4537
+ feMorphology: React.SVGProps<SVGFEMorphologyElement>;
4538
+ feOffset: React.SVGProps<SVGFEOffsetElement>;
4539
+ fePointLight: React.SVGProps<SVGFEPointLightElement>;
4540
+ feSpecularLighting: React.SVGProps<SVGFESpecularLightingElement>;
4541
+ feSpotLight: React.SVGProps<SVGFESpotLightElement>;
4542
+ feTile: React.SVGProps<SVGFETileElement>;
4543
+ feTurbulence: React.SVGProps<SVGFETurbulenceElement>;
4544
+ filter: React.SVGProps<SVGFilterElement>;
4545
+ foreignObject: React.SVGProps<SVGForeignObjectElement>;
4546
+ g: React.SVGProps<SVGGElement>;
4547
+ image: React.SVGProps<SVGImageElement>;
4548
+ line: React.SVGLineElementAttributes<SVGLineElement>;
4549
+ linearGradient: React.SVGProps<SVGLinearGradientElement>;
4550
+ marker: React.SVGProps<SVGMarkerElement>;
4551
+ mask: React.SVGProps<SVGMaskElement>;
4552
+ metadata: React.SVGProps<SVGMetadataElement>;
4553
+ mpath: React.SVGProps<SVGElement>;
4554
+ path: React.SVGProps<SVGPathElement>;
4555
+ pattern: React.SVGProps<SVGPatternElement>;
4556
+ polygon: React.SVGProps<SVGPolygonElement>;
4557
+ polyline: React.SVGProps<SVGPolylineElement>;
4558
+ radialGradient: React.SVGProps<SVGRadialGradientElement>;
4559
+ rect: React.SVGProps<SVGRectElement>;
4560
+ set: React.SVGProps<SVGSetElement>;
4561
+ stop: React.SVGProps<SVGStopElement>;
4562
+ switch: React.SVGProps<SVGSwitchElement>;
4563
+ symbol: React.SVGProps<SVGSymbolElement>;
4564
+ text: React.SVGTextElementAttributes<SVGTextElement>;
4565
+ textPath: React.SVGProps<SVGTextPathElement>;
4566
+ tspan: React.SVGProps<SVGTSpanElement>;
4567
+ use: React.SVGProps<SVGUseElement>;
4568
+ view: React.SVGProps<SVGViewElement>;
4569
+ }
4570
+ }
4571
+ }
4572
+
4573
+ // React.JSX needs to point to global.JSX to keep global module augmentations intact.
4574
+ // But we can't access global.JSX so we need to create these aliases instead.
4575
+ // Once the global JSX namespace will be removed we replace React.JSX with the contents of global.JSX
4576
+ type GlobalJSXElementType = JSX.ElementType;
4577
+ interface GlobalJSXElement extends JSX.Element {}
4578
+ interface GlobalJSXElementClass extends JSX.ElementClass {}
4579
+ interface GlobalJSXElementAttributesProperty extends JSX.ElementAttributesProperty {}
4580
+ interface GlobalJSXElementChildrenAttribute extends JSX.ElementChildrenAttribute {}
4581
+
4582
+ type GlobalJSXLibraryManagedAttributes<C, P> = JSX.LibraryManagedAttributes<C, P>;
4583
+
4584
+ interface GlobalJSXIntrinsicAttributes extends JSX.IntrinsicAttributes {}
4585
+ interface GlobalJSXIntrinsicClassAttributes<T> extends JSX.IntrinsicClassAttributes<T> {}
4586
+
4587
+ interface GlobalJSXIntrinsicElements extends JSX.IntrinsicElements {}