@start9labs/start-sdk 2.0.0 → 2.0.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 (3294) hide show
  1. package/CHANGELOG.md +7 -1
  2. package/node_modules/@eslint/config-array/LICENSE +201 -0
  3. package/node_modules/@eslint/config-array/README.md +368 -0
  4. package/node_modules/@eslint/config-array/dist/cjs/index.cjs +1539 -0
  5. package/node_modules/@eslint/config-array/dist/cjs/index.d.cts +145 -0
  6. package/node_modules/@eslint/config-array/dist/cjs/std__path/posix.cjs +1336 -0
  7. package/node_modules/@eslint/config-array/dist/cjs/std__path/windows.cjs +1678 -0
  8. package/node_modules/@eslint/config-array/dist/cjs/types.cts +29 -0
  9. package/node_modules/@eslint/config-array/dist/esm/index.d.ts +145 -0
  10. package/node_modules/@eslint/config-array/dist/esm/index.js +1514 -0
  11. package/node_modules/@eslint/config-array/dist/esm/std__path/posix.js +1314 -0
  12. package/node_modules/@eslint/config-array/dist/esm/std__path/windows.js +1656 -0
  13. package/node_modules/@eslint/config-array/dist/esm/types.d.ts +23 -0
  14. package/node_modules/@eslint/config-array/dist/esm/types.ts +29 -0
  15. package/node_modules/@eslint/config-array/node_modules/brace-expansion/LICENSE +21 -0
  16. package/node_modules/@eslint/config-array/node_modules/brace-expansion/README.md +129 -0
  17. package/node_modules/@eslint/config-array/node_modules/brace-expansion/index.js +203 -0
  18. package/node_modules/@eslint/config-array/node_modules/brace-expansion/package.json +50 -0
  19. package/node_modules/@eslint/config-array/node_modules/minimatch/LICENSE +15 -0
  20. package/node_modules/@eslint/config-array/node_modules/minimatch/README.md +267 -0
  21. package/node_modules/@eslint/config-array/node_modules/minimatch/minimatch.js +1005 -0
  22. package/node_modules/@eslint/config-array/node_modules/minimatch/package.json +33 -0
  23. package/node_modules/@eslint/config-array/package.json +64 -0
  24. package/node_modules/@eslint/config-helpers/LICENSE +201 -0
  25. package/node_modules/@eslint/config-helpers/README.md +97 -0
  26. package/node_modules/@eslint/config-helpers/dist/cjs/index.cjs +588 -0
  27. package/node_modules/@eslint/config-helpers/dist/cjs/index.d.cts +26 -0
  28. package/node_modules/@eslint/config-helpers/dist/cjs/types.cts +29 -0
  29. package/node_modules/@eslint/config-helpers/dist/esm/index.d.ts +26 -0
  30. package/node_modules/@eslint/config-helpers/dist/esm/index.js +586 -0
  31. package/node_modules/@eslint/config-helpers/dist/esm/types.d.ts +23 -0
  32. package/node_modules/@eslint/config-helpers/dist/esm/types.ts +29 -0
  33. package/node_modules/@eslint/config-helpers/package.json +60 -0
  34. package/node_modules/@eslint/core/LICENSE +201 -0
  35. package/node_modules/@eslint/core/README.md +29 -0
  36. package/node_modules/@eslint/core/dist/cjs/types.d.cts +1179 -0
  37. package/node_modules/@eslint/core/dist/esm/types.d.ts +1179 -0
  38. package/node_modules/@eslint/core/package.json +49 -0
  39. package/node_modules/@eslint/eslintrc/LICENSE +19 -0
  40. package/node_modules/@eslint/eslintrc/README.md +145 -0
  41. package/node_modules/@eslint/eslintrc/conf/config-schema.js +79 -0
  42. package/node_modules/@eslint/eslintrc/conf/environments.js +215 -0
  43. package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +1212 -0
  44. package/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -0
  45. package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +4466 -0
  46. package/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -0
  47. package/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
  48. package/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +534 -0
  49. package/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +512 -0
  50. package/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +124 -0
  51. package/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +145 -0
  52. package/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +239 -0
  53. package/node_modules/@eslint/eslintrc/lib/config-array/index.js +19 -0
  54. package/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +227 -0
  55. package/node_modules/@eslint/eslintrc/lib/config-array-factory.js +1162 -0
  56. package/node_modules/@eslint/eslintrc/lib/flat-compat.js +329 -0
  57. package/node_modules/@eslint/eslintrc/lib/index-universal.js +29 -0
  58. package/node_modules/@eslint/eslintrc/lib/index.js +58 -0
  59. package/node_modules/@eslint/eslintrc/lib/shared/ajv.js +191 -0
  60. package/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +135 -0
  61. package/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +383 -0
  62. package/node_modules/@eslint/eslintrc/lib/shared/deep-merge-arrays.js +58 -0
  63. package/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +63 -0
  64. package/node_modules/@eslint/eslintrc/lib/shared/naming.js +96 -0
  65. package/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +43 -0
  66. package/node_modules/@eslint/eslintrc/lib/shared/types.js +149 -0
  67. package/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
  68. package/node_modules/@eslint/eslintrc/node_modules/argparse/LICENSE +254 -0
  69. package/node_modules/@eslint/eslintrc/node_modules/argparse/README.md +84 -0
  70. package/node_modules/@eslint/eslintrc/node_modules/argparse/argparse.js +3707 -0
  71. package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/sub.js +67 -0
  72. package/node_modules/@eslint/eslintrc/node_modules/argparse/lib/textwrap.js +440 -0
  73. package/node_modules/@eslint/eslintrc/node_modules/argparse/package.json +31 -0
  74. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/LICENSE +21 -0
  75. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/README.md +129 -0
  76. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/index.js +203 -0
  77. package/node_modules/@eslint/eslintrc/node_modules/brace-expansion/package.json +50 -0
  78. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/LICENSE +21 -0
  79. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/README.md +231 -0
  80. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/bin/js-yaml.js +117 -0
  81. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js +2404 -0
  82. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.js.map +1 -0
  83. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js +33 -0
  84. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.min.js.map +1 -0
  85. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs +2382 -0
  86. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/dist/js-yaml.mjs.map +1 -0
  87. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/index.js +44 -0
  88. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/common.js +50 -0
  89. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/dumper.js +937 -0
  90. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/exception.js +51 -0
  91. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/index_vite_proxy.tmp.mjs +37 -0
  92. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/loader.js +1794 -0
  93. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/core.js +9 -0
  94. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/default.js +20 -0
  95. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/failsafe.js +14 -0
  96. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema/json.js +17 -0
  97. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/schema.js +109 -0
  98. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/snippet.js +96 -0
  99. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/binary.js +122 -0
  100. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/bool.js +35 -0
  101. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/float.js +99 -0
  102. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/int.js +142 -0
  103. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/map.js +8 -0
  104. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/merge.js +12 -0
  105. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/null.js +35 -0
  106. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/omap.js +45 -0
  107. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/pairs.js +50 -0
  108. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/seq.js +8 -0
  109. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/set.js +29 -0
  110. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/str.js +8 -0
  111. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type/timestamp.js +88 -0
  112. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/lib/type.js +66 -0
  113. package/node_modules/@eslint/eslintrc/node_modules/js-yaml/package.json +77 -0
  114. package/node_modules/@eslint/eslintrc/node_modules/minimatch/LICENSE +15 -0
  115. package/node_modules/@eslint/eslintrc/node_modules/minimatch/README.md +267 -0
  116. package/node_modules/@eslint/eslintrc/node_modules/minimatch/minimatch.js +1005 -0
  117. package/node_modules/@eslint/eslintrc/node_modules/minimatch/package.json +33 -0
  118. package/node_modules/@eslint/eslintrc/package.json +78 -0
  119. package/node_modules/@eslint/eslintrc/universal.js +10 -0
  120. package/node_modules/@eslint/js/LICENSE +19 -0
  121. package/node_modules/@eslint/js/README.md +103 -0
  122. package/node_modules/@eslint/js/package.json +36 -0
  123. package/node_modules/@eslint/js/src/configs/eslint-all.js +217 -0
  124. package/node_modules/@eslint/js/src/configs/eslint-recommended.js +79 -0
  125. package/node_modules/@eslint/js/src/index.js +23 -0
  126. package/node_modules/@eslint/js/types/index.d.ts +14 -0
  127. package/node_modules/@eslint/object-schema/LICENSE +201 -0
  128. package/node_modules/@eslint/object-schema/README.md +242 -0
  129. package/node_modules/@eslint/object-schema/dist/cjs/index.cjs +457 -0
  130. package/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +125 -0
  131. package/node_modules/@eslint/object-schema/dist/cjs/types.cts +57 -0
  132. package/node_modules/@eslint/object-schema/dist/esm/index.d.ts +125 -0
  133. package/node_modules/@eslint/object-schema/dist/esm/index.js +454 -0
  134. package/node_modules/@eslint/object-schema/dist/esm/types.d.ts +40 -0
  135. package/node_modules/@eslint/object-schema/dist/esm/types.ts +57 -0
  136. package/node_modules/@eslint/object-schema/package.json +59 -0
  137. package/node_modules/@eslint/plugin-kit/LICENSE +201 -0
  138. package/node_modules/@eslint/plugin-kit/README.md +273 -0
  139. package/node_modules/@eslint/plugin-kit/dist/cjs/index.cjs +884 -0
  140. package/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +328 -0
  141. package/node_modules/@eslint/plugin-kit/dist/cjs/types.cts +7 -0
  142. package/node_modules/@eslint/plugin-kit/dist/esm/index.d.ts +328 -0
  143. package/node_modules/@eslint/plugin-kit/dist/esm/index.js +879 -0
  144. package/node_modules/@eslint/plugin-kit/dist/esm/types.d.ts +6 -0
  145. package/node_modules/@eslint/plugin-kit/dist/esm/types.ts +7 -0
  146. package/node_modules/@eslint/plugin-kit/package.json +61 -0
  147. package/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
  148. package/node_modules/@eslint-community/eslint-utils/README.md +37 -0
  149. package/node_modules/@eslint-community/eslint-utils/index.d.mts +217 -0
  150. package/node_modules/@eslint-community/eslint-utils/index.d.ts +217 -0
  151. package/node_modules/@eslint-community/eslint-utils/index.js +2620 -0
  152. package/node_modules/@eslint-community/eslint-utils/index.js.map +1 -0
  153. package/node_modules/@eslint-community/eslint-utils/index.mjs +2579 -0
  154. package/node_modules/@eslint-community/eslint-utils/index.mjs.map +1 -0
  155. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
  156. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
  157. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +384 -0
  158. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +27 -0
  159. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  160. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  161. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js +65 -0
  162. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js +315 -0
  163. package/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json +74 -0
  164. package/node_modules/@eslint-community/eslint-utils/package.json +89 -0
  165. package/node_modules/@eslint-community/regexpp/LICENSE +21 -0
  166. package/node_modules/@eslint-community/regexpp/README.md +177 -0
  167. package/node_modules/@eslint-community/regexpp/index.d.ts +1163 -0
  168. package/node_modules/@eslint-community/regexpp/index.js +3042 -0
  169. package/node_modules/@eslint-community/regexpp/index.js.map +1 -0
  170. package/node_modules/@eslint-community/regexpp/index.mjs +3032 -0
  171. package/node_modules/@eslint-community/regexpp/index.mjs.map +1 -0
  172. package/node_modules/@eslint-community/regexpp/package.json +91 -0
  173. package/node_modules/@humanfs/core/LICENSE +201 -0
  174. package/node_modules/@humanfs/core/README.md +140 -0
  175. package/node_modules/@humanfs/core/dist/errors.d.ts +64 -0
  176. package/node_modules/@humanfs/core/dist/fsx.d.ts +193 -0
  177. package/node_modules/@humanfs/core/dist/hfs.d.ts +288 -0
  178. package/node_modules/@humanfs/core/dist/index.d.ts +3 -0
  179. package/node_modules/@humanfs/core/dist/path.d.ts +82 -0
  180. package/node_modules/@humanfs/core/package.json +54 -0
  181. package/node_modules/@humanfs/core/src/errors.js +105 -0
  182. package/node_modules/@humanfs/core/src/hfs.js +699 -0
  183. package/node_modules/@humanfs/core/src/index.js +8 -0
  184. package/node_modules/@humanfs/core/src/path.js +237 -0
  185. package/node_modules/@humanfs/node/LICENSE +201 -0
  186. package/node_modules/@humanfs/node/README.md +141 -0
  187. package/node_modules/@humanfs/node/dist/index.d.ts +2 -0
  188. package/node_modules/@humanfs/node/dist/node-fsx.d.ts +150 -0
  189. package/node_modules/@humanfs/node/dist/node-hfs.d.ts +176 -0
  190. package/node_modules/@humanfs/node/package.json +58 -0
  191. package/node_modules/@humanfs/node/src/index.js +7 -0
  192. package/node_modules/@humanfs/node/src/node-hfs.js +460 -0
  193. package/node_modules/@humanfs/types/CHANGELOG.md +150 -0
  194. package/node_modules/@humanfs/types/README.md +13 -0
  195. package/node_modules/@humanfs/types/package.json +42 -0
  196. package/node_modules/@humanfs/types/src/hfs-types.ts +192 -0
  197. package/node_modules/@humanfs/types/tsconfig.json +13 -0
  198. package/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
  199. package/node_modules/@humanwhocodes/module-importer/README.md +80 -0
  200. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.cjs +22 -0
  201. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.cts +27 -0
  202. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.d.ts +2 -0
  203. package/node_modules/@humanwhocodes/module-importer/dist/module-importer.js +18 -0
  204. package/node_modules/@humanwhocodes/module-importer/package.json +65 -0
  205. package/node_modules/@humanwhocodes/module-importer/src/module-importer.cjs +81 -0
  206. package/node_modules/@humanwhocodes/module-importer/src/module-importer.js +22 -0
  207. package/node_modules/@humanwhocodes/retry/LICENSE +201 -0
  208. package/node_modules/@humanwhocodes/retry/README.md +177 -0
  209. package/node_modules/@humanwhocodes/retry/dist/retrier.cjs +478 -0
  210. package/node_modules/@humanwhocodes/retry/dist/retrier.d.cts +46 -0
  211. package/node_modules/@humanwhocodes/retry/dist/retrier.d.ts +46 -0
  212. package/node_modules/@humanwhocodes/retry/dist/retrier.js +477 -0
  213. package/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -0
  214. package/node_modules/@humanwhocodes/retry/dist/retrier.mjs +476 -0
  215. package/node_modules/@humanwhocodes/retry/package.json +77 -0
  216. package/node_modules/@start9labs/start-core/osBindings/tunnel/WgServer.d.ts +0 -6
  217. package/node_modules/@start9labs/start-core/osBindings/tunnel/index.d.ts +0 -1
  218. package/node_modules/@types/estree/LICENSE +21 -0
  219. package/node_modules/@types/estree/README.md +15 -0
  220. package/node_modules/@types/estree/flow.d.ts +167 -0
  221. package/node_modules/@types/estree/index.d.ts +694 -0
  222. package/node_modules/@types/estree/package.json +27 -0
  223. package/node_modules/@types/json-schema/LICENSE +21 -0
  224. package/node_modules/@types/json-schema/README.md +15 -0
  225. package/node_modules/@types/json-schema/index.d.ts +749 -0
  226. package/node_modules/@types/json-schema/package.json +40 -0
  227. package/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
  228. package/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
  229. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.d.ts +10 -0
  230. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslint-recommended-raw.js +46 -0
  231. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.d.ts +159 -0
  232. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/all.js +165 -0
  233. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.d.ts +8 -0
  234. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/base.js +6 -0
  235. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.d.ts +71 -0
  236. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/disable-type-checked.js +73 -0
  237. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.d.ts +12 -0
  238. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/eslint-recommended.js +13 -0
  239. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.d.ts +33 -0
  240. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked-only.js +39 -0
  241. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.d.ts +56 -0
  242. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended-type-checked.js +62 -0
  243. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.d.ts +29 -0
  244. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/recommended.js +35 -0
  245. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.d.ts +64 -0
  246. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked-only.js +79 -0
  247. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.d.ts +98 -0
  248. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict-type-checked.js +114 -0
  249. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.d.ts +40 -0
  250. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/strict.js +47 -0
  251. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.d.ts +15 -0
  252. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked-only.js +21 -0
  253. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.d.ts +29 -0
  254. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic-type-checked.js +35 -0
  255. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.d.ts +20 -0
  256. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/eslintrc/stylistic.js +26 -0
  257. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.d.ts +7 -0
  258. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/all.js +179 -0
  259. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.d.ts +8 -0
  260. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/base.js +17 -0
  261. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.d.ts +7 -0
  262. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/disable-type-checked.js +81 -0
  263. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.d.ts +9 -0
  264. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/eslint-recommended.js +16 -0
  265. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.d.ts +7 -0
  266. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked-only.js +53 -0
  267. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.d.ts +7 -0
  268. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended-type-checked.js +76 -0
  269. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.d.ts +7 -0
  270. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/recommended.js +49 -0
  271. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.d.ts +7 -0
  272. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked-only.js +93 -0
  273. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.d.ts +7 -0
  274. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict-type-checked.js +128 -0
  275. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.d.ts +7 -0
  276. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/strict.js +61 -0
  277. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.d.ts +7 -0
  278. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked-only.js +35 -0
  279. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.d.ts +7 -0
  280. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic-type-checked.js +49 -0
  281. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.d.ts +7 -0
  282. package/node_modules/@typescript-eslint/eslint-plugin/dist/configs/flat/stylistic.js +40 -0
  283. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.d.ts +1128 -0
  284. package/node_modules/@typescript-eslint/eslint-plugin/dist/index.js +6 -0
  285. package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.d.ts +1152 -0
  286. package/node_modules/@typescript-eslint/eslint-plugin/dist/raw-plugin.js +122 -0
  287. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.d.ts +4 -0
  288. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/adjacent-overload-signatures.js +124 -0
  289. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.d.ts +12 -0
  290. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/array-type.js +224 -0
  291. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.d.ts +6 -0
  292. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/await-thenable.js +228 -0
  293. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.d.ts +17 -0
  294. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-ts-comment.js +195 -0
  295. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.d.ts +4 -0
  296. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/ban-tslint-comment.js +53 -0
  297. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.d.ts +7 -0
  298. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-literal-property-style.js +160 -0
  299. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.d.ts +13 -0
  300. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/class-methods-use-this.js +219 -0
  301. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.d.ts +6 -0
  302. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-generic-constructors.js +126 -0
  303. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.d.ts +7 -0
  304. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-indexed-object-style.js +256 -0
  305. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.d.ts +18 -0
  306. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-return.js +135 -0
  307. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.d.ts +14 -0
  308. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-assertions.js +256 -0
  309. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.d.ts +5 -0
  310. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-definitions.js +100 -0
  311. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.d.ts +11 -0
  312. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-exports.js +335 -0
  313. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.d.ts +15 -0
  314. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/consistent-type-imports.js +608 -0
  315. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.d.ts +4 -0
  316. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/default-param-last.js +68 -0
  317. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.d.ts +23 -0
  318. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/dot-notation.js +139 -0
  319. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.d.ts +36 -0
  320. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/enum-utils/shared.js +121 -0
  321. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.d.ts +17 -0
  322. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-function-return-type.js +179 -0
  323. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.d.ts +19 -0
  324. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-member-accessibility.js +299 -0
  325. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.d.ts +15 -0
  326. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/explicit-module-boundary-types.js +386 -0
  327. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.d.ts +448 -0
  328. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/index.js +275 -0
  329. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.d.ts +15 -0
  330. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/init-declarations.js +105 -0
  331. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.d.ts +25 -0
  332. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/max-params.js +72 -0
  333. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.d.ts +33 -0
  334. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/member-ordering.js +833 -0
  335. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.d.ts +6 -0
  336. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/method-signature-style.js +186 -0
  337. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.d.ts +79 -0
  338. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/enums.js +102 -0
  339. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.d.ts +2 -0
  340. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/format.js +89 -0
  341. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.d.ts +6 -0
  342. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/index.js +11 -0
  343. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.d.ts +2 -0
  344. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/parse-options.js +69 -0
  345. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.d.ts +2 -0
  346. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/schema.js +305 -0
  347. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.d.ts +5 -0
  348. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/shared.js +16 -0
  349. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.d.ts +39 -0
  350. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/types.js +2 -0
  351. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.d.ts +3 -0
  352. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention-utils/validator.js +349 -0
  353. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.d.ts +8 -0
  354. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/naming-convention.js +506 -0
  355. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.d.ts +4 -0
  356. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-constructor.js +62 -0
  357. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.d.ts +6 -0
  358. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-array-delete.js +80 -0
  359. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.d.ts +11 -0
  360. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-base-to-string.js +322 -0
  361. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.d.ts +6 -0
  362. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-non-null-assertion.js +142 -0
  363. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.d.ts +13 -0
  364. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-confusing-void-expression.js +357 -0
  365. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.d.ts +11 -0
  366. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-deprecated.js +404 -0
  367. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.d.ts +14 -0
  368. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dupe-class-members.js +39 -0
  369. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.d.ts +4 -0
  370. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-enum-values.js +83 -0
  371. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.d.ts +11 -0
  372. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-duplicate-type-constituents.js +227 -0
  373. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.d.ts +4 -0
  374. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-dynamic-delete.js +42 -0
  375. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.d.ts +16 -0
  376. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-function.js +134 -0
  377. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.d.ts +11 -0
  378. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-interface.js +102 -0
  379. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.d.ts +15 -0
  380. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-empty-object-type.js +143 -0
  381. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.d.ts +12 -0
  382. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-explicit-any.js +197 -0
  383. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.d.ts +4 -0
  384. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extra-non-null-assertion.js +35 -0
  385. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.d.ts +13 -0
  386. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-extraneous-class.js +121 -0
  387. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.d.ts +16 -0
  388. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-floating-promises.js +377 -0
  389. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.d.ts +4 -0
  390. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-for-in-array.js +86 -0
  391. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.d.ts +4 -0
  392. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-implied-eval.js +152 -0
  393. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.d.ts +7 -0
  394. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-import-type-side-effects.js +53 -0
  395. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.d.ts +11 -0
  396. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-inferrable-types.js +182 -0
  397. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.d.ts +15 -0
  398. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-this.js +75 -0
  399. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.d.ts +9 -0
  400. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-invalid-void-type.js +210 -0
  401. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.d.ts +13 -0
  402. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loop-func.js +187 -0
  403. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.d.ts +9 -0
  404. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-loss-of-precision.js +35 -0
  405. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.d.ts +29 -0
  406. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-magic-numbers.js +249 -0
  407. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.d.ts +10 -0
  408. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-meaningless-void-operator.js +102 -0
  409. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.d.ts +4 -0
  410. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-new.js +81 -0
  411. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.d.ts +21 -0
  412. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-promises.js +765 -0
  413. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.d.ts +12 -0
  414. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-misused-spread.js +260 -0
  415. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.d.ts +4 -0
  416. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-mixed-enums.js +200 -0
  417. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.d.ts +11 -0
  418. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-namespace.js +60 -0
  419. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.d.ts +5 -0
  420. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-nullish-coalescing.js +73 -0
  421. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.d.ts +5 -0
  422. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-asserted-optional-chain.js +65 -0
  423. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.d.ts +6 -0
  424. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-non-null-assertion.js +93 -0
  425. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.d.ts +12 -0
  426. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redeclare.js +199 -0
  427. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.d.ts +4 -0
  428. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-redundant-type-constituents.js +431 -0
  429. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.d.ts +11 -0
  430. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-require-imports.js +115 -0
  431. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.d.ts +9 -0
  432. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-imports.js +243 -0
  433. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.d.ts +16 -0
  434. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-restricted-types.js +171 -0
  435. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.d.ts +16 -0
  436. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-shadow.js +551 -0
  437. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.d.ts +11 -0
  438. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-this-alias.js +66 -0
  439. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.d.ts +18 -0
  440. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-type-alias.js +268 -0
  441. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.d.ts +12 -0
  442. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-boolean-literal-compare.js +261 -0
  443. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.d.ts +14 -0
  444. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-condition.js +689 -0
  445. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.d.ts +4 -0
  446. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-parameter-property-assignment.js +148 -0
  447. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.d.ts +4 -0
  448. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-qualifier.js +156 -0
  449. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.d.ts +6 -0
  450. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-template-expression.js +361 -0
  451. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.d.ts +5 -0
  452. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-arguments.js +202 -0
  453. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.d.ts +11 -0
  454. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-assertion.js +745 -0
  455. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.d.ts +5 -0
  456. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-constraint.js +119 -0
  457. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.d.ts +5 -0
  458. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-conversion.js +356 -0
  459. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.d.ts +5 -0
  460. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unnecessary-type-parameters.js +422 -0
  461. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.d.ts +5 -0
  462. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-argument.js +272 -0
  463. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.d.ts +4 -0
  464. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-assignment.js +322 -0
  465. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.d.ts +5 -0
  466. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-call.js +136 -0
  467. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.d.ts +4 -0
  468. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-declaration-merging.js +54 -0
  469. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.d.ts +5 -0
  470. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-enum-comparison.js +192 -0
  471. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.d.ts +4 -0
  472. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-function-type.js +45 -0
  473. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.d.ts +10 -0
  474. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-member-access.js +183 -0
  475. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.d.ts +4 -0
  476. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-return.js +184 -0
  477. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.d.ts +4 -0
  478. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-type-assertion.js +165 -0
  479. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.d.ts +6 -0
  480. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unsafe-unary-minus.js +78 -0
  481. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.d.ts +19 -0
  482. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-expressions.js +64 -0
  483. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.d.ts +6 -0
  484. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-private-class-members.js +44 -0
  485. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.d.ts +24 -0
  486. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-unused-vars.js +1035 -0
  487. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.d.ts +16 -0
  488. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-use-before-define.js +303 -0
  489. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.d.ts +11 -0
  490. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-constructor.js +57 -0
  491. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.d.ts +11 -0
  492. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-default-assignment.js +321 -0
  493. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.d.ts +4 -0
  494. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-useless-empty-export.js +70 -0
  495. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.d.ts +10 -0
  496. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-var-requires.js +83 -0
  497. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.d.ts +5 -0
  498. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/no-wrapper-object-types.js +60 -0
  499. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.d.ts +4 -0
  500. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/non-nullable-type-assertion-style.js +132 -0
  501. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.d.ts +14 -0
  502. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/only-throw-error.js +158 -0
  503. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.d.ts +13 -0
  504. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/parameter-properties.js +164 -0
  505. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.d.ts +5 -0
  506. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-as-const.js +72 -0
  507. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.d.ts +19 -0
  508. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-destructuring.js +216 -0
  509. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.d.ts +6 -0
  510. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-enum-initializers.js +62 -0
  511. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.d.ts +5 -0
  512. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-find.js +247 -0
  513. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.d.ts +5 -0
  514. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-for-of.js +115 -0
  515. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.d.ts +9 -0
  516. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-function-type.js +186 -0
  517. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.d.ts +5 -0
  518. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-includes.js +242 -0
  519. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.d.ts +6 -0
  520. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-literal-enum-member.js +116 -0
  521. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.d.ts +4 -0
  522. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-namespace-keyword.js +42 -0
  523. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.d.ts +22 -0
  524. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-nullish-coalescing.js +647 -0
  525. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.d.ts +11 -0
  526. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/PreferOptionalChainOptions.js +2 -0
  527. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.d.ts +7 -0
  528. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/analyzeChain.js +612 -0
  529. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.d.ts +6 -0
  530. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/checkNullishAndReport.js +45 -0
  531. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.d.ts +15 -0
  532. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/compareNodes.js +326 -0
  533. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.d.ts +61 -0
  534. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain-utils/gatherLogicalOperands.js +411 -0
  535. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.d.ts +5 -0
  536. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-optional-chain.js +150 -0
  537. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.d.ts +14 -0
  538. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-promise-reject-errors.js +124 -0
  539. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.d.ts +14 -0
  540. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly-parameter-types.js +98 -0
  541. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.d.ts +10 -0
  542. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-readonly.js +439 -0
  543. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.d.ts +4 -0
  544. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-reduce-type-parameter.js +114 -0
  545. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.d.ts +4 -0
  546. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-regexp-exec.js +182 -0
  547. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.d.ts +4 -0
  548. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-return-this-type.js +154 -0
  549. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.d.ts +12 -0
  550. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-string-starts-ends-with.js +512 -0
  551. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.d.ts +5 -0
  552. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/prefer-ts-expect-error.js +71 -0
  553. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.d.ts +15 -0
  554. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/promise-function-async.js +204 -0
  555. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.d.ts +4 -0
  556. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/related-getter-setter-pairs.js +71 -0
  557. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.d.ts +10 -0
  558. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-array-sort-compare.js +63 -0
  559. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.d.ts +4 -0
  560. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/require-await.js +263 -0
  561. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.d.ts +15 -0
  562. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-plus-operands.js +231 -0
  563. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.d.ts +19 -0
  564. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/restrict-template-expressions.js +119 -0
  565. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.d.ts +5 -0
  566. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/return-await.js +363 -0
  567. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.d.ts +14 -0
  568. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/sort-type-constituents.js +272 -0
  569. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.d.ts +19 -0
  570. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-boolean-expressions.js +882 -0
  571. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.d.ts +10 -0
  572. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/strict-void-return.js +377 -0
  573. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.d.ts +33 -0
  574. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/switch-exhaustiveness-check.js +291 -0
  575. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.d.ts +12 -0
  576. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/triple-slash-reference.js +110 -0
  577. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.d.ts +16 -0
  578. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/typedef.js +239 -0
  579. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.d.ts +9 -0
  580. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unbound-method.js +334 -0
  581. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.d.ts +11 -0
  582. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/unified-signatures.js +465 -0
  583. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.d.ts +6 -0
  584. package/node_modules/@typescript-eslint/eslint-plugin/dist/rules/use-unknown-in-catch-callback-variable.js +261 -0
  585. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.d.ts +16 -0
  586. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/assertionFunctionUtils.js +116 -0
  587. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.d.ts +17 -0
  588. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/astUtils.js +143 -0
  589. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.d.ts +13 -0
  590. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/baseTypeUtils.js +75 -0
  591. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.d.ts +52 -0
  592. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/classScopeAnalyzer.js +566 -0
  593. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.d.ts +17 -0
  594. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/extractComputedName.js +70 -0
  595. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.d.ts +12 -0
  596. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/class-scope-analyzer/types.js +10 -0
  597. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.d.ts +15 -0
  598. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/collectUnusedVariables.js +601 -0
  599. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.d.ts +5 -0
  600. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/createRule.js +5 -0
  601. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.d.ts +1 -0
  602. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/escapeRegExp.js +14 -0
  603. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.d.ts +47 -0
  604. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/explicitReturnTypeUtils.js +238 -0
  605. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.d.ts +11 -0
  606. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getBaseTypesOfClassMember.js +31 -0
  607. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.d.ts +35 -0
  608. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getConstraintInfo.js +70 -0
  609. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.d.ts +27 -0
  610. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getESLintCoreRule.js +16 -0
  611. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.d.ts +9 -0
  612. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFixOrSuggest.js +13 -0
  613. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.d.ts +17 -0
  614. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getForStatementHeadLoc.js +26 -0
  615. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.d.ts +101 -0
  616. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getFunctionHeadLoc.js +161 -0
  617. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.d.ts +36 -0
  618. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getMemberHeadLoc.js +79 -0
  619. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.d.ts +39 -0
  620. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getOperatorPrecedence.js +421 -0
  621. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.d.ts +2 -0
  622. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getParentFunctionNode.js +18 -0
  623. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.d.ts +11 -0
  624. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStaticStringValue.js +44 -0
  625. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.d.ts +1 -0
  626. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getStringLength.js +14 -0
  627. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.d.ts +3 -0
  628. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getTextWithParentheses.js +16 -0
  629. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.d.ts +2 -0
  630. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getThisExpression.js +24 -0
  631. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.d.ts +2 -0
  632. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getValueOfLiteralType.js +16 -0
  633. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.d.ts +2 -0
  634. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappedCode.js +6 -0
  635. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.d.ts +42 -0
  636. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/getWrappingFixer.js +184 -0
  637. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.d.ts +6 -0
  638. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/hasOverloadSignatures.js +47 -0
  639. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.d.ts +40 -0
  640. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/index.js +53 -0
  641. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.d.ts +3 -0
  642. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isArrayMethodCallWithPredicate.js +64 -0
  643. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.d.ts +2 -0
  644. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isAssignee.js +50 -0
  645. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.d.ts +2 -0
  646. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isHigherPrecedenceThanAwait.js +46 -0
  647. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.d.ts +2 -0
  648. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNodeEqual.js +25 -0
  649. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.d.ts +2 -0
  650. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isNullLiteral.js +7 -0
  651. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.d.ts +3 -0
  652. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isPromiseAggregatorMethod.js +22 -0
  653. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.d.ts +7 -0
  654. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isStartOfExpressionStatement.js +22 -0
  655. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.d.ts +12 -0
  656. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isTypeImport.js +21 -0
  657. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.d.ts +2 -0
  658. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/isUndefinedIdentifier.js +7 -0
  659. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.d.ts +115 -0
  660. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/misc.js +270 -0
  661. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.d.ts +11 -0
  662. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsPrecedingSemiColon.js +97 -0
  663. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.d.ts +7 -0
  664. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/needsToBeAwaited.js +63 -0
  665. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.d.ts +3 -0
  666. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/objectIterators.js +25 -0
  667. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.d.ts +27 -0
  668. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/promiseUtils.js +98 -0
  669. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.d.ts +2 -0
  670. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/rangeToLoc.js +9 -0
  671. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.d.ts +5 -0
  672. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypePredicate.js +18 -0
  673. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.d.ts +5 -0
  674. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/referenceContainsTypeQuery.js +19 -0
  675. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.d.ts +3 -0
  676. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/scopeUtils.js +10 -0
  677. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.d.ts +2 -0
  678. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/skipChainExpression.js +7 -0
  679. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.d.ts +3 -0
  680. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/truthinessUtils.js +60 -0
  681. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.d.ts +2 -0
  682. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/types.js +2 -0
  683. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.d.ts +7 -0
  684. package/node_modules/@typescript-eslint/eslint-plugin/dist/util/walkStatements.js +56 -0
  685. package/node_modules/@typescript-eslint/eslint-plugin/index.d.ts +13 -0
  686. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/LICENSE-MIT +21 -0
  687. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +452 -0
  688. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.d.ts +81 -0
  689. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/index.js +784 -0
  690. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/legacy.js +681 -0
  691. package/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/package.json +87 -0
  692. package/node_modules/@typescript-eslint/eslint-plugin/package.json +126 -0
  693. package/node_modules/@typescript-eslint/eslint-plugin/raw-plugin.d.ts +25 -0
  694. package/node_modules/@typescript-eslint/eslint-plugin/rules.d.ts +87 -0
  695. package/node_modules/@typescript-eslint/parser/LICENSE +21 -0
  696. package/node_modules/@typescript-eslint/parser/README.md +12 -0
  697. package/node_modules/@typescript-eslint/parser/dist/index.d.ts +7 -0
  698. package/node_modules/@typescript-eslint/parser/dist/index.js +17 -0
  699. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +22 -0
  700. package/node_modules/@typescript-eslint/parser/dist/parser.js +144 -0
  701. package/node_modules/@typescript-eslint/parser/package.json +86 -0
  702. package/node_modules/@typescript-eslint/project-service/LICENSE +21 -0
  703. package/node_modules/@typescript-eslint/project-service/README.md +12 -0
  704. package/node_modules/@typescript-eslint/project-service/dist/createProjectService.d.ts +65 -0
  705. package/node_modules/@typescript-eslint/project-service/dist/createProjectService.js +138 -0
  706. package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.d.ts +2 -0
  707. package/node_modules/@typescript-eslint/project-service/dist/getParsedConfigFileFromTSServer.js +15 -0
  708. package/node_modules/@typescript-eslint/project-service/dist/index.d.ts +1 -0
  709. package/node_modules/@typescript-eslint/project-service/dist/index.js +17 -0
  710. package/node_modules/@typescript-eslint/project-service/package.json +83 -0
  711. package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  712. package/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
  713. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +2 -0
  714. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +19 -0
  715. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +77 -0
  716. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +189 -0
  717. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +53 -0
  718. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +41 -0
  719. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +1 -0
  720. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +9 -0
  721. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +8 -0
  722. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +13 -0
  723. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +8 -0
  724. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +13 -0
  725. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +12 -0
  726. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +2 -0
  727. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +33 -0
  728. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +34 -0
  729. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +13 -0
  730. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +17 -0
  731. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +8 -0
  732. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +13 -0
  733. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +8 -0
  734. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +13 -0
  735. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +9 -0
  736. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +13 -0
  737. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +12 -0
  738. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +18 -0
  739. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +8 -0
  740. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +13 -0
  741. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +8 -0
  742. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +13 -0
  743. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +8 -0
  744. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +13 -0
  745. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +8 -0
  746. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +13 -0
  747. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +8 -0
  748. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +13 -0
  749. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +13 -0
  750. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +29 -0
  751. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +8 -0
  752. package/node_modules/@typescript-eslint/scope-manager/dist/index.js +30 -0
  753. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +15 -0
  754. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +22 -0
  755. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.d.ts +2 -0
  756. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.js +25 -0
  757. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.d.ts +2 -0
  758. package/node_modules/@typescript-eslint/scope-manager/dist/lib/decorators.legacy.js +17 -0
  759. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.d.ts +2 -0
  760. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.asynciterable.js +11 -0
  761. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +2 -0
  762. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +2 -0
  763. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +11 -0
  764. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1812 -0
  765. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +2 -0
  766. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +23 -0
  767. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +2 -0
  768. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +34 -0
  769. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +2 -0
  770. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +2 -0
  771. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +17 -0
  772. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +2 -0
  773. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +62 -0
  774. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +32 -0
  775. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +2 -0
  776. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
  777. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +2 -0
  778. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +15 -0
  779. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +2 -0
  780. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
  781. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +2 -0
  782. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
  783. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +2 -0
  784. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +47 -0
  785. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +2 -0
  786. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +24 -0
  787. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +2 -0
  788. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +2 -0
  789. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +16 -0
  790. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.d.ts +2 -0
  791. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.intl.js +12 -0
  792. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +14 -0
  793. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.d.ts +2 -0
  794. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.arraybuffer.js +12 -0
  795. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +2 -0
  796. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.d.ts +2 -0
  797. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.date.js +12 -0
  798. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +2 -0
  799. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +16 -0
  800. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +2 -0
  801. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
  802. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +28 -0
  803. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +2 -0
  804. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
  805. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +2 -0
  806. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +19 -0
  807. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +2 -0
  808. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
  809. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +2 -0
  810. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +22 -0
  811. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +2 -0
  812. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +17 -0
  813. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +2 -0
  814. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +20 -0
  815. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +2 -0
  816. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +2 -0
  817. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +24 -0
  818. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +2 -0
  819. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
  820. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +24 -0
  821. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +2 -0
  822. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
  823. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +2 -0
  824. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +16 -0
  825. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +2 -0
  826. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +16 -0
  827. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +2 -0
  828. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +2 -0
  829. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +24 -0
  830. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.d.ts +2 -0
  831. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.intl.js +12 -0
  832. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +24 -0
  833. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +2 -0
  834. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +13 -0
  835. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +2 -0
  836. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
  837. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +2 -0
  838. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
  839. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +2 -0
  840. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +23 -0
  841. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +2 -0
  842. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +2 -0
  843. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +13 -0
  844. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +2 -0
  845. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +24 -0
  846. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +2 -0
  847. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +13 -0
  848. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +30 -0
  849. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +2 -0
  850. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +13 -0
  851. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +2 -0
  852. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +17 -0
  853. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +2 -0
  854. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +13 -0
  855. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +2 -0
  856. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +15 -0
  857. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +2 -0
  858. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +18 -0
  859. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +2 -0
  860. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +2 -0
  861. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +24 -0
  862. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +2 -0
  863. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
  864. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +16 -0
  865. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +2 -0
  866. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +16 -0
  867. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +2 -0
  868. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
  869. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +2 -0
  870. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +18 -0
  871. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +2 -0
  872. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +26 -0
  873. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +2 -0
  874. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +2 -0
  875. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +24 -0
  876. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +2 -0
  877. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +24 -0
  878. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +2 -0
  879. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
  880. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +26 -0
  881. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +2 -0
  882. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
  883. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.d.ts +2 -0
  884. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.regexp.js +17 -0
  885. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +2 -0
  886. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
  887. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.d.ts +2 -0
  888. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.array.js +26 -0
  889. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.d.ts +2 -0
  890. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.collection.js +12 -0
  891. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.d.ts +2 -0
  892. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.d.ts +2 -0
  893. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.full.js +24 -0
  894. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.d.ts +2 -0
  895. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.intl.js +12 -0
  896. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2023.js +15 -0
  897. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.d.ts +2 -0
  898. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.arraybuffer.js +15 -0
  899. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.d.ts +2 -0
  900. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.collection.js +12 -0
  901. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.d.ts +2 -0
  902. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.d.ts +2 -0
  903. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.full.js +24 -0
  904. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.js +28 -0
  905. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.d.ts +2 -0
  906. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.object.js +12 -0
  907. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.d.ts +2 -0
  908. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.promise.js +15 -0
  909. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.d.ts +2 -0
  910. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.regexp.js +12 -0
  911. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.d.ts +2 -0
  912. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.sharedmemory.js +17 -0
  913. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.d.ts +2 -0
  914. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2024.string.js +12 -0
  915. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.d.ts +2 -0
  916. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.collection.js +17 -0
  917. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.d.ts +2 -0
  918. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.d.ts +2 -0
  919. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.float16.js +19 -0
  920. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.d.ts +2 -0
  921. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.full.js +24 -0
  922. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.d.ts +2 -0
  923. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.intl.js +13 -0
  924. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.d.ts +2 -0
  925. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.iterator.js +16 -0
  926. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.js +26 -0
  927. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.d.ts +2 -0
  928. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.promise.js +12 -0
  929. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.d.ts +2 -0
  930. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2025.regexp.js +12 -0
  931. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +2 -0
  932. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +118 -0
  933. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +2 -0
  934. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +32 -0
  935. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +2 -0
  936. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +14 -0
  937. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +2 -0
  938. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +12 -0
  939. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +2 -0
  940. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +20 -0
  941. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +2 -0
  942. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +23 -0
  943. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.d.ts +2 -0
  944. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.collection.js +16 -0
  945. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +2 -0
  946. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.d.ts +2 -0
  947. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.date.js +13 -0
  948. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.d.ts +2 -0
  949. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.decorators.js +17 -0
  950. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.d.ts +2 -0
  951. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.disposable.js +27 -0
  952. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.d.ts +2 -0
  953. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.error.js +12 -0
  954. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.d.ts +2 -0
  955. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.float16.js +19 -0
  956. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +2 -0
  957. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +24 -0
  958. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +2 -0
  959. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +13 -0
  960. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.d.ts +2 -0
  961. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.iterator.js +16 -0
  962. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +34 -0
  963. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.d.ts +2 -0
  964. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.object.js +12 -0
  965. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +2 -0
  966. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +12 -0
  967. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.d.ts +2 -0
  968. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.regexp.js +12 -0
  969. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.d.ts +2 -0
  970. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.sharedmemory.js +12 -0
  971. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +2 -0
  972. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
  973. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +2 -0
  974. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
  975. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.d.ts +2 -0
  976. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.temporal.js +15 -0
  977. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.d.ts +2 -0
  978. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.typedarrays.js +15 -0
  979. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +2 -0
  980. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +18 -0
  981. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +2 -0
  982. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +247 -0
  983. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +2 -0
  984. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +15 -0
  985. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +2 -0
  986. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +26 -0
  987. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.d.ts +2 -0
  988. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.asynciterable.js +11 -0
  989. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +2 -0
  990. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +2 -0
  991. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +11 -0
  992. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +2 -0
  993. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +11 -0
  994. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +842 -0
  995. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +27 -0
  996. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +178 -0
  997. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +13 -0
  998. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +71 -0
  999. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +12 -0
  1000. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +36 -0
  1001. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +27 -0
  1002. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +94 -0
  1003. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +87 -0
  1004. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +119 -0
  1005. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +91 -0
  1006. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +558 -0
  1007. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +31 -0
  1008. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +221 -0
  1009. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
  1010. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +29 -0
  1011. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +21 -0
  1012. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +67 -0
  1013. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +1 -0
  1014. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +5 -0
  1015. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +8 -0
  1016. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +11 -0
  1017. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +8 -0
  1018. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +11 -0
  1019. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +8 -0
  1020. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +11 -0
  1021. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +8 -0
  1022. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +11 -0
  1023. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +8 -0
  1024. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +11 -0
  1025. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +8 -0
  1026. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +11 -0
  1027. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +8 -0
  1028. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +11 -0
  1029. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +9 -0
  1030. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
  1031. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +11 -0
  1032. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +35 -0
  1033. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +8 -0
  1034. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +11 -0
  1035. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +17 -0
  1036. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +60 -0
  1037. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +8 -0
  1038. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +11 -0
  1039. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +8 -0
  1040. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +11 -0
  1041. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +19 -0
  1042. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +2 -0
  1043. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +96 -0
  1044. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +308 -0
  1045. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +20 -0
  1046. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +24 -0
  1047. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +8 -0
  1048. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +11 -0
  1049. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +8 -0
  1050. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +11 -0
  1051. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +8 -0
  1052. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +11 -0
  1053. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +8 -0
  1054. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +11 -0
  1055. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +9 -0
  1056. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +21 -0
  1057. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +19 -0
  1058. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +35 -0
  1059. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +32 -0
  1060. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +35 -0
  1061. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +27 -0
  1062. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +26 -0
  1063. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +16 -0
  1064. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +32 -0
  1065. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +42 -0
  1066. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +47 -0
  1067. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +6 -0
  1068. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +9 -0
  1069. package/node_modules/@typescript-eslint/scope-manager/package.json +82 -0
  1070. package/node_modules/@typescript-eslint/tsconfig-utils/LICENSE +21 -0
  1071. package/node_modules/@typescript-eslint/tsconfig-utils/README.md +12 -0
  1072. package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.d.ts +8 -0
  1073. package/node_modules/@typescript-eslint/tsconfig-utils/dist/compilerOptions.js +13 -0
  1074. package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.d.ts +8 -0
  1075. package/node_modules/@typescript-eslint/tsconfig-utils/dist/getParsedConfigFile.js +79 -0
  1076. package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.d.ts +2 -0
  1077. package/node_modules/@typescript-eslint/tsconfig-utils/dist/index.js +18 -0
  1078. package/node_modules/@typescript-eslint/tsconfig-utils/package.json +74 -0
  1079. package/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
  1080. package/node_modules/@typescript-eslint/type-utils/README.md +12 -0
  1081. package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.d.ts +132 -0
  1082. package/node_modules/@typescript-eslint/type-utils/dist/TypeOrValueSpecifier.js +212 -0
  1083. package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.d.ts +53 -0
  1084. package/node_modules/@typescript-eslint/type-utils/dist/builtinSymbolLikes.js +165 -0
  1085. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.d.ts +9 -0
  1086. package/node_modules/@typescript-eslint/type-utils/dist/containsAllTypesByName.js +69 -0
  1087. package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.d.ts +12 -0
  1088. package/node_modules/@typescript-eslint/type-utils/dist/discriminateAnyType.js +77 -0
  1089. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.d.ts +12 -0
  1090. package/node_modules/@typescript-eslint/type-utils/dist/getConstrainedTypeAtLocation.js +19 -0
  1091. package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.d.ts +7 -0
  1092. package/node_modules/@typescript-eslint/type-utils/dist/getContextualType.js +76 -0
  1093. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.d.ts +6 -0
  1094. package/node_modules/@typescript-eslint/type-utils/dist/getDeclaration.js +14 -0
  1095. package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.d.ts +6 -0
  1096. package/node_modules/@typescript-eslint/type-utils/dist/getSourceFileOfNode.js +47 -0
  1097. package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.d.ts +7 -0
  1098. package/node_modules/@typescript-eslint/type-utils/dist/getTypeName.js +84 -0
  1099. package/node_modules/@typescript-eslint/type-utils/dist/index.d.ts +18 -0
  1100. package/node_modules/@typescript-eslint/type-utils/dist/index.js +38 -0
  1101. package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.d.ts +2 -0
  1102. package/node_modules/@typescript-eslint/type-utils/dist/isSymbolFromDefaultLibrary.js +16 -0
  1103. package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.d.ts +2 -0
  1104. package/node_modules/@typescript-eslint/type-utils/dist/isTypeBrandedLiteralLike.js +74 -0
  1105. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.d.ts +100 -0
  1106. package/node_modules/@typescript-eslint/type-utils/dist/isTypeReadonly.js +255 -0
  1107. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.d.ts +16 -0
  1108. package/node_modules/@typescript-eslint/type-utils/dist/isUnsafeAssignment.js +114 -0
  1109. package/node_modules/@typescript-eslint/type-utils/dist/predicates.d.ts +37 -0
  1110. package/node_modules/@typescript-eslint/type-utils/dist/predicates.js +157 -0
  1111. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.d.ts +3 -0
  1112. package/node_modules/@typescript-eslint/type-utils/dist/propertyTypes.js +35 -0
  1113. package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.d.ts +3 -0
  1114. package/node_modules/@typescript-eslint/type-utils/dist/requiresQuoting.js +52 -0
  1115. package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.d.ts +17 -0
  1116. package/node_modules/@typescript-eslint/type-utils/dist/typeFlagUtils.js +70 -0
  1117. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.d.ts +2 -0
  1118. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/specifierNameMatches.js +16 -0
  1119. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.d.ts +2 -0
  1120. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInFile.js +16 -0
  1121. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.d.ts +2 -0
  1122. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInLib.js +11 -0
  1123. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.d.ts +2 -0
  1124. package/node_modules/@typescript-eslint/type-utils/dist/typeOrValueSpecifiers/typeDeclaredInPackageDeclarationFile.js +70 -0
  1125. package/node_modules/@typescript-eslint/type-utils/package.json +85 -0
  1126. package/node_modules/@typescript-eslint/types/LICENSE +21 -0
  1127. package/node_modules/@typescript-eslint/types/README.md +12 -0
  1128. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +2163 -0
  1129. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +200 -0
  1130. package/node_modules/@typescript-eslint/types/dist/index.d.ts +4 -0
  1131. package/node_modules/@typescript-eslint/types/dist/index.js +23 -0
  1132. package/node_modules/@typescript-eslint/types/dist/lib.d.ts +1 -0
  1133. package/node_modules/@typescript-eslint/types/dist/lib.js +6 -0
  1134. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +68 -0
  1135. package/node_modules/@typescript-eslint/types/dist/parser-options.js +2 -0
  1136. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +188 -0
  1137. package/node_modules/@typescript-eslint/types/dist/ts-estree.js +37 -0
  1138. package/node_modules/@typescript-eslint/types/package.json +103 -0
  1139. package/node_modules/@typescript-eslint/typescript-estree/LICENSE +21 -0
  1140. package/node_modules/@typescript-eslint/typescript-estree/README.md +14 -0
  1141. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +8 -0
  1142. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
  1143. package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.d.ts +2 -0
  1144. package/node_modules/@typescript-eslint/typescript-estree/dist/check-modifiers.js +289 -0
  1145. package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.d.ts +3 -0
  1146. package/node_modules/@typescript-eslint/typescript-estree/dist/check-syntax-errors.js +440 -0
  1147. package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.d.ts +9 -0
  1148. package/node_modules/@typescript-eslint/typescript-estree/dist/clear-caches.js +27 -0
  1149. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +9 -0
  1150. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +61 -0
  1151. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +142 -0
  1152. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2400 -0
  1153. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +12 -0
  1154. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +5 -0
  1155. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +6 -0
  1156. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +96 -0
  1157. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +8 -0
  1158. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +23 -0
  1159. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.d.ts +3 -0
  1160. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgramError.js +74 -0
  1161. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
  1162. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +62 -0
  1163. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.d.ts +1 -0
  1164. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/describeFilePath.js +30 -0
  1165. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts +3 -0
  1166. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js +80 -0
  1167. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.d.ts +13 -0
  1168. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getWatchProgramsForProjects.js +380 -0
  1169. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +27 -0
  1170. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +130 -0
  1171. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +11 -0
  1172. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +81 -0
  1173. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.d.ts +2 -0
  1174. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/validateDefaultProjectForFilesGlob.js +23 -0
  1175. package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.d.ts +4 -0
  1176. package/node_modules/@typescript-eslint/typescript-estree/dist/createParserServices.js +33 -0
  1177. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts +3 -0
  1178. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js +74 -0
  1179. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +14 -0
  1180. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +41 -0
  1181. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +1 -0
  1182. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +258 -0
  1183. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +189 -0
  1184. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +673 -0
  1185. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.d.ts +16 -0
  1186. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/ExpiringCache.js +46 -0
  1187. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.d.ts +3 -0
  1188. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/candidateTSConfigRootDirs.js +28 -0
  1189. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.d.ts +6 -0
  1190. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/createParseSettings.js +252 -0
  1191. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.d.ts +12 -0
  1192. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/getProjectConfigFiles.js +82 -0
  1193. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.d.ts +126 -0
  1194. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/index.js +2 -0
  1195. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.d.ts +14 -0
  1196. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/inferSingleRun.js +62 -0
  1197. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.d.ts +18 -0
  1198. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/resolveProjectList.js +95 -0
  1199. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.d.ts +6 -0
  1200. package/node_modules/@typescript-eslint/typescript-estree/dist/parseSettings/warnAboutTSVersion.js +81 -0
  1201. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +210 -0
  1202. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +2 -0
  1203. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +17 -0
  1204. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +184 -0
  1205. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +12 -0
  1206. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +94 -0
  1207. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +11 -0
  1208. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +58 -0
  1209. package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.d.ts +3 -0
  1210. package/node_modules/@typescript-eslint/typescript-estree/dist/source-files.js +49 -0
  1211. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +178 -0
  1212. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +2 -0
  1213. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +3 -0
  1214. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +24 -0
  1215. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +17 -0
  1216. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +2 -0
  1217. package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.d.ts +7 -0
  1218. package/node_modules/@typescript-eslint/typescript-estree/dist/use-at-your-own-risk.js +29 -0
  1219. package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.d.ts +6 -0
  1220. package/node_modules/@typescript-eslint/typescript-estree/dist/useProgramFromProjectService.js +205 -0
  1221. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +4 -0
  1222. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +63 -0
  1223. package/node_modules/@typescript-eslint/typescript-estree/dist/version.d.ts +1 -0
  1224. package/node_modules/@typescript-eslint/typescript-estree/dist/version.js +6 -0
  1225. package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.d.ts +9 -0
  1226. package/node_modules/@typescript-eslint/typescript-estree/dist/withoutProjectParserOptions.js +16 -0
  1227. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/LICENSE.md +23 -0
  1228. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/README.md +57 -0
  1229. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts +9 -0
  1230. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.d.ts.map +1 -0
  1231. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js +59 -0
  1232. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/index.js.map +1 -0
  1233. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/commonjs/package.json +3 -0
  1234. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts +9 -0
  1235. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.d.ts.map +1 -0
  1236. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js +54 -0
  1237. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/index.js.map +1 -0
  1238. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/dist/esm/package.json +3 -0
  1239. package/node_modules/@typescript-eslint/typescript-estree/node_modules/balanced-match/package.json +68 -0
  1240. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +23 -0
  1241. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +94 -0
  1242. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts +6 -0
  1243. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.d.ts.map +1 -0
  1244. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js +201 -0
  1245. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/index.js.map +1 -0
  1246. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/commonjs/package.json +3 -0
  1247. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts +6 -0
  1248. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.d.ts.map +1 -0
  1249. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js +197 -0
  1250. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/index.js.map +1 -0
  1251. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/dist/esm/package.json +3 -0
  1252. package/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/package.json +64 -0
  1253. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE.md +55 -0
  1254. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +528 -0
  1255. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts +2 -0
  1256. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.d.ts.map +1 -0
  1257. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js +14 -0
  1258. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/assert-valid-pattern.js.map +1 -0
  1259. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts +22 -0
  1260. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.d.ts.map +1 -0
  1261. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js +845 -0
  1262. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/ast.js.map +1 -0
  1263. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts +8 -0
  1264. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.d.ts.map +1 -0
  1265. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js +150 -0
  1266. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/brace-expressions.js.map +1 -0
  1267. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts +15 -0
  1268. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.d.ts.map +1 -0
  1269. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js +30 -0
  1270. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/escape.js.map +1 -0
  1271. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts +174 -0
  1272. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.d.ts.map +1 -0
  1273. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js +1127 -0
  1274. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/index.js.map +1 -0
  1275. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/package.json +3 -0
  1276. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts +22 -0
  1277. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.d.ts.map +1 -0
  1278. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js +38 -0
  1279. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/commonjs/unescape.js.map +1 -0
  1280. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts +2 -0
  1281. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.d.ts.map +1 -0
  1282. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js +10 -0
  1283. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/assert-valid-pattern.js.map +1 -0
  1284. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts +22 -0
  1285. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.d.ts.map +1 -0
  1286. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js +841 -0
  1287. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/ast.js.map +1 -0
  1288. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts +8 -0
  1289. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.d.ts.map +1 -0
  1290. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js +146 -0
  1291. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/brace-expressions.js.map +1 -0
  1292. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts +15 -0
  1293. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.d.ts.map +1 -0
  1294. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js +26 -0
  1295. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/escape.js.map +1 -0
  1296. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts +174 -0
  1297. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.d.ts.map +1 -0
  1298. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js +1114 -0
  1299. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/index.js.map +1 -0
  1300. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/package.json +3 -0
  1301. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts +22 -0
  1302. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.d.ts.map +1 -0
  1303. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js +34 -0
  1304. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/dist/esm/unescape.js.map +1 -0
  1305. package/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/package.json +73 -0
  1306. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE +15 -0
  1307. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +680 -0
  1308. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/bin/semver.js +195 -0
  1309. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/comparator.js +143 -0
  1310. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/index.js +7 -0
  1311. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/range.js +564 -0
  1312. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/classes/semver.js +350 -0
  1313. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/clean.js +8 -0
  1314. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/cmp.js +54 -0
  1315. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/coerce.js +62 -0
  1316. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-build.js +9 -0
  1317. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare-loose.js +5 -0
  1318. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/compare.js +7 -0
  1319. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/diff.js +60 -0
  1320. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/eq.js +5 -0
  1321. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gt.js +5 -0
  1322. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/gte.js +5 -0
  1323. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/inc.js +21 -0
  1324. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lt.js +5 -0
  1325. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/lte.js +5 -0
  1326. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/major.js +5 -0
  1327. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/minor.js +5 -0
  1328. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/neq.js +5 -0
  1329. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/parse.js +18 -0
  1330. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/patch.js +5 -0
  1331. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/prerelease.js +8 -0
  1332. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rcompare.js +5 -0
  1333. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/rsort.js +5 -0
  1334. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/satisfies.js +12 -0
  1335. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/sort.js +5 -0
  1336. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/truncate.js +48 -0
  1337. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/functions/valid.js +8 -0
  1338. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/index.js +93 -0
  1339. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/constants.js +37 -0
  1340. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/debug.js +11 -0
  1341. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/identifiers.js +29 -0
  1342. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/lrucache.js +42 -0
  1343. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/parse-options.js +17 -0
  1344. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/internal/re.js +223 -0
  1345. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/package.json +78 -0
  1346. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/preload.js +4 -0
  1347. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/range.bnf +17 -0
  1348. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/gtr.js +6 -0
  1349. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/intersects.js +9 -0
  1350. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/ltr.js +6 -0
  1351. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/max-satisfying.js +27 -0
  1352. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-satisfying.js +26 -0
  1353. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/min-version.js +63 -0
  1354. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/outside.js +82 -0
  1355. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/simplify.js +49 -0
  1356. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/subset.js +249 -0
  1357. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/to-comparators.js +10 -0
  1358. package/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/ranges/valid.js +13 -0
  1359. package/node_modules/@typescript-eslint/typescript-estree/package.json +95 -0
  1360. package/node_modules/@typescript-eslint/utils/LICENSE +21 -0
  1361. package/node_modules/@typescript-eslint/utils/README.md +12 -0
  1362. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.d.ts +47 -0
  1363. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/PatternMatcher.js +44 -0
  1364. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.d.ts +71 -0
  1365. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/ReferenceTracker.js +48 -0
  1366. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.d.ts +83 -0
  1367. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/astUtilities.js +101 -0
  1368. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.d.ts +5 -0
  1369. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/index.js +21 -0
  1370. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.d.ts +31 -0
  1371. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/predicates.js +59 -0
  1372. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.d.ts +16 -0
  1373. package/node_modules/@typescript-eslint/utils/dist/ast-utils/eslint-utils/scopeAnalysis.js +51 -0
  1374. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.d.ts +18 -0
  1375. package/node_modules/@typescript-eslint/utils/dist/ast-utils/helpers.js +21 -0
  1376. package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.d.ts +4 -0
  1377. package/node_modules/@typescript-eslint/utils/dist/ast-utils/index.js +20 -0
  1378. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.d.ts +10 -0
  1379. package/node_modules/@typescript-eslint/utils/dist/ast-utils/misc.js +15 -0
  1380. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.d.ts +68 -0
  1381. package/node_modules/@typescript-eslint/utils/dist/ast-utils/predicates.js +108 -0
  1382. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.d.ts +9 -0
  1383. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/InferTypesFromRule.js +2 -0
  1384. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.d.ts +32 -0
  1385. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/RuleCreator.js +54 -0
  1386. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.d.ts +8 -0
  1387. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/applyDefault.js +33 -0
  1388. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.d.ts +14 -0
  1389. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/deepMerge.js +46 -0
  1390. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.d.ts +22 -0
  1391. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/getParserServices.js +41 -0
  1392. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.d.ts +6 -0
  1393. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/index.js +22 -0
  1394. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.d.ts +12 -0
  1395. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/nullThrows.js +21 -0
  1396. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.d.ts +1 -0
  1397. package/node_modules/@typescript-eslint/utils/dist/eslint-utils/parserSeemsToBeTSESLint.js +6 -0
  1398. package/node_modules/@typescript-eslint/utils/dist/index.d.ts +6 -0
  1399. package/node_modules/@typescript-eslint/utils/dist/index.js +45 -0
  1400. package/node_modules/@typescript-eslint/utils/dist/json-schema.d.ts +387 -0
  1401. package/node_modules/@typescript-eslint/utils/dist/json-schema.js +8 -0
  1402. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.d.ts +8 -0
  1403. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/AST.js +3 -0
  1404. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.d.ts +291 -0
  1405. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Config.js +3 -0
  1406. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.d.ts +7 -0
  1407. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ESLint.js +13 -0
  1408. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.d.ts +255 -0
  1409. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Linter.js +13 -0
  1410. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.d.ts +94 -0
  1411. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Parser.js +3 -0
  1412. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.d.ts +1 -0
  1413. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/ParserOptions.js +2 -0
  1414. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.d.ts +63 -0
  1415. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Processor.js +3 -0
  1416. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.d.ts +614 -0
  1417. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Rule.js +2 -0
  1418. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.d.ts +183 -0
  1419. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/RuleTester.js +11 -0
  1420. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.d.ts +42 -0
  1421. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/Scope.js +43 -0
  1422. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.d.ts +354 -0
  1423. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/SourceCode.js +8 -0
  1424. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.d.ts +381 -0
  1425. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/ESLintShared.js +2 -0
  1426. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.d.ts +87 -0
  1427. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/FlatESLint.js +19 -0
  1428. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.d.ts +72 -0
  1429. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/eslint/LegacyESLint.js +36 -0
  1430. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.d.ts +11 -0
  1431. package/node_modules/@typescript-eslint/utils/dist/ts-eslint/index.js +27 -0
  1432. package/node_modules/@typescript-eslint/utils/dist/ts-estree.d.ts +3 -0
  1433. package/node_modules/@typescript-eslint/utils/dist/ts-estree.js +9 -0
  1434. package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.d.ts +9 -0
  1435. package/node_modules/@typescript-eslint/utils/dist/ts-utils/NoInfer.js +2 -0
  1436. package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.d.ts +2 -0
  1437. package/node_modules/@typescript-eslint/utils/dist/ts-utils/index.js +18 -0
  1438. package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.d.ts +1 -0
  1439. package/node_modules/@typescript-eslint/utils/dist/ts-utils/isArray.js +7 -0
  1440. package/node_modules/@typescript-eslint/utils/package.json +115 -0
  1441. package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  1442. package/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
  1443. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +2 -0
  1444. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +5 -0
  1445. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +2 -0
  1446. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +7 -0
  1447. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +2 -0
  1448. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +194 -0
  1449. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/LICENSE +201 -0
  1450. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/README.md +123 -0
  1451. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +187 -0
  1452. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
  1453. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  1454. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  1455. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/index.js +67 -0
  1456. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/lib/visitor-keys.js +118 -0
  1457. package/node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys/package.json +57 -0
  1458. package/node_modules/@typescript-eslint/visitor-keys/package.json +76 -0
  1459. package/node_modules/acorn/CHANGELOG.md +972 -0
  1460. package/node_modules/acorn/LICENSE +21 -0
  1461. package/node_modules/acorn/README.md +301 -0
  1462. package/node_modules/acorn/bin/acorn +4 -0
  1463. package/node_modules/acorn/dist/acorn.d.mts +883 -0
  1464. package/node_modules/acorn/dist/acorn.d.ts +883 -0
  1465. package/node_modules/acorn/dist/acorn.js +6295 -0
  1466. package/node_modules/acorn/dist/acorn.mjs +6266 -0
  1467. package/node_modules/acorn/dist/bin.js +90 -0
  1468. package/node_modules/acorn/package.json +50 -0
  1469. package/node_modules/acorn-jsx/LICENSE +19 -0
  1470. package/node_modules/acorn-jsx/README.md +40 -0
  1471. package/node_modules/acorn-jsx/index.d.ts +12 -0
  1472. package/node_modules/acorn-jsx/index.js +488 -0
  1473. package/node_modules/acorn-jsx/package.json +27 -0
  1474. package/node_modules/acorn-jsx/xhtml.js +255 -0
  1475. package/node_modules/ajv/.tonic_example.js +20 -0
  1476. package/node_modules/ajv/LICENSE +22 -0
  1477. package/node_modules/ajv/README.md +1505 -0
  1478. package/node_modules/ajv/dist/ajv.bundle.js +7201 -0
  1479. package/node_modules/ajv/dist/ajv.min.js +3 -0
  1480. package/node_modules/ajv/dist/ajv.min.js.map +1 -0
  1481. package/node_modules/ajv/lib/ajv.d.ts +402 -0
  1482. package/node_modules/ajv/lib/ajv.js +506 -0
  1483. package/node_modules/ajv/lib/cache.js +26 -0
  1484. package/node_modules/ajv/lib/compile/async.js +90 -0
  1485. package/node_modules/ajv/lib/compile/equal.js +5 -0
  1486. package/node_modules/ajv/lib/compile/error_classes.js +34 -0
  1487. package/node_modules/ajv/lib/compile/formats.js +142 -0
  1488. package/node_modules/ajv/lib/compile/index.js +389 -0
  1489. package/node_modules/ajv/lib/compile/resolve.js +270 -0
  1490. package/node_modules/ajv/lib/compile/rules.js +66 -0
  1491. package/node_modules/ajv/lib/compile/schema_obj.js +9 -0
  1492. package/node_modules/ajv/lib/compile/ucs2length.js +20 -0
  1493. package/node_modules/ajv/lib/compile/util.js +239 -0
  1494. package/node_modules/ajv/lib/data.js +49 -0
  1495. package/node_modules/ajv/lib/definition_schema.js +37 -0
  1496. package/node_modules/ajv/lib/dot/_limit.jst +113 -0
  1497. package/node_modules/ajv/lib/dot/_limitItems.jst +12 -0
  1498. package/node_modules/ajv/lib/dot/_limitLength.jst +12 -0
  1499. package/node_modules/ajv/lib/dot/_limitProperties.jst +12 -0
  1500. package/node_modules/ajv/lib/dot/allOf.jst +32 -0
  1501. package/node_modules/ajv/lib/dot/anyOf.jst +46 -0
  1502. package/node_modules/ajv/lib/dot/coerce.def +51 -0
  1503. package/node_modules/ajv/lib/dot/comment.jst +9 -0
  1504. package/node_modules/ajv/lib/dot/const.jst +11 -0
  1505. package/node_modules/ajv/lib/dot/contains.jst +55 -0
  1506. package/node_modules/ajv/lib/dot/custom.jst +191 -0
  1507. package/node_modules/ajv/lib/dot/defaults.def +47 -0
  1508. package/node_modules/ajv/lib/dot/definitions.def +203 -0
  1509. package/node_modules/ajv/lib/dot/dependencies.jst +79 -0
  1510. package/node_modules/ajv/lib/dot/enum.jst +30 -0
  1511. package/node_modules/ajv/lib/dot/errors.def +194 -0
  1512. package/node_modules/ajv/lib/dot/format.jst +106 -0
  1513. package/node_modules/ajv/lib/dot/if.jst +73 -0
  1514. package/node_modules/ajv/lib/dot/items.jst +98 -0
  1515. package/node_modules/ajv/lib/dot/missing.def +39 -0
  1516. package/node_modules/ajv/lib/dot/multipleOf.jst +22 -0
  1517. package/node_modules/ajv/lib/dot/not.jst +43 -0
  1518. package/node_modules/ajv/lib/dot/oneOf.jst +54 -0
  1519. package/node_modules/ajv/lib/dot/pattern.jst +25 -0
  1520. package/node_modules/ajv/lib/dot/properties.jst +245 -0
  1521. package/node_modules/ajv/lib/dot/propertyNames.jst +52 -0
  1522. package/node_modules/ajv/lib/dot/ref.jst +85 -0
  1523. package/node_modules/ajv/lib/dot/required.jst +108 -0
  1524. package/node_modules/ajv/lib/dot/uniqueItems.jst +62 -0
  1525. package/node_modules/ajv/lib/dot/validate.jst +276 -0
  1526. package/node_modules/ajv/lib/dotjs/README.md +3 -0
  1527. package/node_modules/ajv/lib/dotjs/_limit.js +163 -0
  1528. package/node_modules/ajv/lib/dotjs/_limitItems.js +80 -0
  1529. package/node_modules/ajv/lib/dotjs/_limitLength.js +85 -0
  1530. package/node_modules/ajv/lib/dotjs/_limitProperties.js +80 -0
  1531. package/node_modules/ajv/lib/dotjs/allOf.js +42 -0
  1532. package/node_modules/ajv/lib/dotjs/anyOf.js +73 -0
  1533. package/node_modules/ajv/lib/dotjs/comment.js +14 -0
  1534. package/node_modules/ajv/lib/dotjs/const.js +56 -0
  1535. package/node_modules/ajv/lib/dotjs/contains.js +81 -0
  1536. package/node_modules/ajv/lib/dotjs/custom.js +228 -0
  1537. package/node_modules/ajv/lib/dotjs/dependencies.js +168 -0
  1538. package/node_modules/ajv/lib/dotjs/enum.js +66 -0
  1539. package/node_modules/ajv/lib/dotjs/format.js +150 -0
  1540. package/node_modules/ajv/lib/dotjs/if.js +103 -0
  1541. package/node_modules/ajv/lib/dotjs/index.js +33 -0
  1542. package/node_modules/ajv/lib/dotjs/items.js +140 -0
  1543. package/node_modules/ajv/lib/dotjs/multipleOf.js +80 -0
  1544. package/node_modules/ajv/lib/dotjs/not.js +84 -0
  1545. package/node_modules/ajv/lib/dotjs/oneOf.js +73 -0
  1546. package/node_modules/ajv/lib/dotjs/pattern.js +85 -0
  1547. package/node_modules/ajv/lib/dotjs/properties.js +335 -0
  1548. package/node_modules/ajv/lib/dotjs/propertyNames.js +81 -0
  1549. package/node_modules/ajv/lib/dotjs/ref.js +124 -0
  1550. package/node_modules/ajv/lib/dotjs/required.js +270 -0
  1551. package/node_modules/ajv/lib/dotjs/uniqueItems.js +86 -0
  1552. package/node_modules/ajv/lib/dotjs/validate.js +482 -0
  1553. package/node_modules/ajv/lib/keyword.js +146 -0
  1554. package/node_modules/ajv/lib/refs/data.json +17 -0
  1555. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +149 -0
  1556. package/node_modules/ajv/lib/refs/json-schema-draft-06.json +154 -0
  1557. package/node_modules/ajv/lib/refs/json-schema-draft-07.json +168 -0
  1558. package/node_modules/ajv/lib/refs/json-schema-secure.json +94 -0
  1559. package/node_modules/ajv/package.json +107 -0
  1560. package/node_modules/ajv/scripts/.eslintrc.yml +3 -0
  1561. package/node_modules/ajv/scripts/bundle.js +61 -0
  1562. package/node_modules/ajv/scripts/compile-dots.js +73 -0
  1563. package/node_modules/ajv/scripts/info +10 -0
  1564. package/node_modules/ajv/scripts/prepare-tests +12 -0
  1565. package/node_modules/ajv/scripts/publish-built-version +32 -0
  1566. package/node_modules/ajv/scripts/travis-gh-pages +23 -0
  1567. package/node_modules/ansi-styles/index.d.ts +345 -0
  1568. package/node_modules/ansi-styles/index.js +163 -0
  1569. package/node_modules/ansi-styles/license +9 -0
  1570. package/node_modules/ansi-styles/package.json +56 -0
  1571. package/node_modules/ansi-styles/readme.md +152 -0
  1572. package/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  1573. package/node_modules/balanced-match/LICENSE.md +21 -0
  1574. package/node_modules/balanced-match/README.md +97 -0
  1575. package/node_modules/balanced-match/index.js +62 -0
  1576. package/node_modules/balanced-match/package.json +48 -0
  1577. package/node_modules/callsites/index.d.ts +96 -0
  1578. package/node_modules/callsites/index.js +13 -0
  1579. package/node_modules/callsites/license +9 -0
  1580. package/node_modules/callsites/package.json +39 -0
  1581. package/node_modules/callsites/readme.md +48 -0
  1582. package/node_modules/chalk/index.d.ts +415 -0
  1583. package/node_modules/chalk/license +9 -0
  1584. package/node_modules/chalk/package.json +68 -0
  1585. package/node_modules/chalk/readme.md +341 -0
  1586. package/node_modules/chalk/source/index.js +229 -0
  1587. package/node_modules/chalk/source/templates.js +134 -0
  1588. package/node_modules/chalk/source/util.js +39 -0
  1589. package/node_modules/color-convert/LICENSE +21 -0
  1590. package/node_modules/color-convert/README.md +68 -0
  1591. package/node_modules/color-convert/conversions.js +839 -0
  1592. package/node_modules/color-convert/index.js +81 -0
  1593. package/node_modules/color-convert/package.json +48 -0
  1594. package/node_modules/color-convert/route.js +97 -0
  1595. package/node_modules/color-name/LICENSE +8 -0
  1596. package/node_modules/color-name/README.md +11 -0
  1597. package/node_modules/color-name/index.js +152 -0
  1598. package/node_modules/color-name/package.json +28 -0
  1599. package/node_modules/concat-map/.travis.yml +4 -0
  1600. package/node_modules/concat-map/LICENSE +18 -0
  1601. package/node_modules/concat-map/README.markdown +62 -0
  1602. package/node_modules/concat-map/example/map.js +6 -0
  1603. package/node_modules/concat-map/index.js +13 -0
  1604. package/node_modules/concat-map/package.json +43 -0
  1605. package/node_modules/concat-map/test/map.js +39 -0
  1606. package/node_modules/cross-spawn/LICENSE +21 -0
  1607. package/node_modules/cross-spawn/README.md +89 -0
  1608. package/node_modules/cross-spawn/index.js +39 -0
  1609. package/node_modules/cross-spawn/lib/enoent.js +59 -0
  1610. package/node_modules/cross-spawn/lib/parse.js +91 -0
  1611. package/node_modules/cross-spawn/lib/util/escape.js +47 -0
  1612. package/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
  1613. package/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
  1614. package/node_modules/cross-spawn/package.json +73 -0
  1615. package/node_modules/debug/LICENSE +20 -0
  1616. package/node_modules/debug/README.md +481 -0
  1617. package/node_modules/debug/package.json +64 -0
  1618. package/node_modules/debug/src/browser.js +272 -0
  1619. package/node_modules/debug/src/common.js +292 -0
  1620. package/node_modules/debug/src/index.js +10 -0
  1621. package/node_modules/debug/src/node.js +263 -0
  1622. package/node_modules/deep-is/.travis.yml +5 -0
  1623. package/node_modules/deep-is/LICENSE +22 -0
  1624. package/node_modules/deep-is/README.markdown +70 -0
  1625. package/node_modules/deep-is/example/cmp.js +11 -0
  1626. package/node_modules/deep-is/index.js +102 -0
  1627. package/node_modules/deep-is/package.json +58 -0
  1628. package/node_modules/deep-is/test/NaN.js +16 -0
  1629. package/node_modules/deep-is/test/cmp.js +23 -0
  1630. package/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
  1631. package/node_modules/eslint/LICENSE +19 -0
  1632. package/node_modules/eslint/README.md +354 -0
  1633. package/node_modules/eslint/bin/eslint.js +196 -0
  1634. package/node_modules/eslint/conf/default-cli-options.js +32 -0
  1635. package/node_modules/eslint/conf/ecma-version.js +16 -0
  1636. package/node_modules/eslint/conf/globals.js +169 -0
  1637. package/node_modules/eslint/conf/replacements.json +26 -0
  1638. package/node_modules/eslint/conf/rule-type-list.json +91 -0
  1639. package/node_modules/eslint/lib/api.js +50 -0
  1640. package/node_modules/eslint/lib/cli-engine/cli-engine.js +1109 -0
  1641. package/node_modules/eslint/lib/cli-engine/file-enumerator.js +541 -0
  1642. package/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +18 -0
  1643. package/node_modules/eslint/lib/cli-engine/formatters/html.js +359 -0
  1644. package/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +16 -0
  1645. package/node_modules/eslint/lib/cli-engine/formatters/json.js +13 -0
  1646. package/node_modules/eslint/lib/cli-engine/formatters/stylish.js +122 -0
  1647. package/node_modules/eslint/lib/cli-engine/hash.js +35 -0
  1648. package/node_modules/eslint/lib/cli-engine/index.js +7 -0
  1649. package/node_modules/eslint/lib/cli-engine/lint-result-cache.js +220 -0
  1650. package/node_modules/eslint/lib/cli-engine/load-rules.js +46 -0
  1651. package/node_modules/eslint/lib/cli.js +553 -0
  1652. package/node_modules/eslint/lib/config/config-loader.js +816 -0
  1653. package/node_modules/eslint/lib/config/config.js +674 -0
  1654. package/node_modules/eslint/lib/config/default-config.js +78 -0
  1655. package/node_modules/eslint/lib/config/flat-config-array.js +217 -0
  1656. package/node_modules/eslint/lib/config/flat-config-schema.js +598 -0
  1657. package/node_modules/eslint/lib/config-api.js +12 -0
  1658. package/node_modules/eslint/lib/eslint/eslint-helpers.js +1465 -0
  1659. package/node_modules/eslint/lib/eslint/eslint.js +1362 -0
  1660. package/node_modules/eslint/lib/eslint/index.js +9 -0
  1661. package/node_modules/eslint/lib/eslint/legacy-eslint.js +786 -0
  1662. package/node_modules/eslint/lib/eslint/worker.js +173 -0
  1663. package/node_modules/eslint/lib/languages/js/index.js +336 -0
  1664. package/node_modules/eslint/lib/languages/js/source-code/index.js +7 -0
  1665. package/node_modules/eslint/lib/languages/js/source-code/source-code.js +1364 -0
  1666. package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-comment-cursor.js +61 -0
  1667. package/node_modules/eslint/lib/languages/js/source-code/token-store/backward-token-cursor.js +57 -0
  1668. package/node_modules/eslint/lib/languages/js/source-code/token-store/cursor.js +76 -0
  1669. package/node_modules/eslint/lib/languages/js/source-code/token-store/cursors.js +120 -0
  1670. package/node_modules/eslint/lib/languages/js/source-code/token-store/decorative-cursor.js +38 -0
  1671. package/node_modules/eslint/lib/languages/js/source-code/token-store/filter-cursor.js +42 -0
  1672. package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-comment-cursor.js +65 -0
  1673. package/node_modules/eslint/lib/languages/js/source-code/token-store/forward-token-cursor.js +62 -0
  1674. package/node_modules/eslint/lib/languages/js/source-code/token-store/index.js +721 -0
  1675. package/node_modules/eslint/lib/languages/js/source-code/token-store/limit-cursor.js +39 -0
  1676. package/node_modules/eslint/lib/languages/js/source-code/token-store/padded-token-cursor.js +45 -0
  1677. package/node_modules/eslint/lib/languages/js/source-code/token-store/skip-cursor.js +41 -0
  1678. package/node_modules/eslint/lib/languages/js/source-code/token-store/utils.js +110 -0
  1679. package/node_modules/eslint/lib/languages/js/validate-language-options.js +196 -0
  1680. package/node_modules/eslint/lib/linter/apply-disable-directives.js +584 -0
  1681. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +828 -0
  1682. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +262 -0
  1683. package/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +2370 -0
  1684. package/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +332 -0
  1685. package/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +223 -0
  1686. package/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +374 -0
  1687. package/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +44 -0
  1688. package/node_modules/eslint/lib/linter/esquery.js +332 -0
  1689. package/node_modules/eslint/lib/linter/file-context.js +144 -0
  1690. package/node_modules/eslint/lib/linter/file-report.js +608 -0
  1691. package/node_modules/eslint/lib/linter/index.js +11 -0
  1692. package/node_modules/eslint/lib/linter/interpolate.js +50 -0
  1693. package/node_modules/eslint/lib/linter/linter.js +2676 -0
  1694. package/node_modules/eslint/lib/linter/rule-fixer.js +169 -0
  1695. package/node_modules/eslint/lib/linter/rules.js +71 -0
  1696. package/node_modules/eslint/lib/linter/source-code-fixer.js +154 -0
  1697. package/node_modules/eslint/lib/linter/source-code-traverser.js +333 -0
  1698. package/node_modules/eslint/lib/linter/source-code-visitor.js +81 -0
  1699. package/node_modules/eslint/lib/linter/timing.js +209 -0
  1700. package/node_modules/eslint/lib/linter/vfile.js +115 -0
  1701. package/node_modules/eslint/lib/options.js +536 -0
  1702. package/node_modules/eslint/lib/rule-tester/index.js +7 -0
  1703. package/node_modules/eslint/lib/rule-tester/rule-tester.js +1579 -0
  1704. package/node_modules/eslint/lib/rules/accessor-pairs.js +420 -0
  1705. package/node_modules/eslint/lib/rules/array-bracket-newline.js +291 -0
  1706. package/node_modules/eslint/lib/rules/array-bracket-spacing.js +301 -0
  1707. package/node_modules/eslint/lib/rules/array-callback-return.js +493 -0
  1708. package/node_modules/eslint/lib/rules/array-element-newline.js +374 -0
  1709. package/node_modules/eslint/lib/rules/arrow-body-style.js +418 -0
  1710. package/node_modules/eslint/lib/rules/arrow-parens.js +237 -0
  1711. package/node_modules/eslint/lib/rules/arrow-spacing.js +188 -0
  1712. package/node_modules/eslint/lib/rules/block-scoped-var.js +137 -0
  1713. package/node_modules/eslint/lib/rules/block-spacing.js +202 -0
  1714. package/node_modules/eslint/lib/rules/brace-style.js +278 -0
  1715. package/node_modules/eslint/lib/rules/callback-return.js +216 -0
  1716. package/node_modules/eslint/lib/rules/camelcase.js +422 -0
  1717. package/node_modules/eslint/lib/rules/capitalized-comments.js +325 -0
  1718. package/node_modules/eslint/lib/rules/class-methods-use-this.js +250 -0
  1719. package/node_modules/eslint/lib/rules/comma-dangle.js +424 -0
  1720. package/node_modules/eslint/lib/rules/comma-spacing.js +208 -0
  1721. package/node_modules/eslint/lib/rules/comma-style.js +391 -0
  1722. package/node_modules/eslint/lib/rules/complexity.js +201 -0
  1723. package/node_modules/eslint/lib/rules/computed-property-spacing.js +251 -0
  1724. package/node_modules/eslint/lib/rules/consistent-return.js +221 -0
  1725. package/node_modules/eslint/lib/rules/consistent-this.js +179 -0
  1726. package/node_modules/eslint/lib/rules/constructor-super.js +453 -0
  1727. package/node_modules/eslint/lib/rules/curly.js +425 -0
  1728. package/node_modules/eslint/lib/rules/default-case-last.js +51 -0
  1729. package/node_modules/eslint/lib/rules/default-case.js +103 -0
  1730. package/node_modules/eslint/lib/rules/default-param-last.js +78 -0
  1731. package/node_modules/eslint/lib/rules/dot-location.js +138 -0
  1732. package/node_modules/eslint/lib/rules/dot-notation.js +216 -0
  1733. package/node_modules/eslint/lib/rules/eol-last.js +135 -0
  1734. package/node_modules/eslint/lib/rules/eqeqeq.js +210 -0
  1735. package/node_modules/eslint/lib/rules/for-direction.js +168 -0
  1736. package/node_modules/eslint/lib/rules/func-call-spacing.js +281 -0
  1737. package/node_modules/eslint/lib/rules/func-name-matching.js +338 -0
  1738. package/node_modules/eslint/lib/rules/func-names.js +192 -0
  1739. package/node_modules/eslint/lib/rules/func-style.js +221 -0
  1740. package/node_modules/eslint/lib/rules/function-call-argument-newline.js +166 -0
  1741. package/node_modules/eslint/lib/rules/function-paren-newline.js +368 -0
  1742. package/node_modules/eslint/lib/rules/generator-star-spacing.js +246 -0
  1743. package/node_modules/eslint/lib/rules/getter-return.js +242 -0
  1744. package/node_modules/eslint/lib/rules/global-require.js +117 -0
  1745. package/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +268 -0
  1746. package/node_modules/eslint/lib/rules/guard-for-in.js +85 -0
  1747. package/node_modules/eslint/lib/rules/handle-callback-err.js +122 -0
  1748. package/node_modules/eslint/lib/rules/id-blacklist.js +241 -0
  1749. package/node_modules/eslint/lib/rules/id-denylist.js +223 -0
  1750. package/node_modules/eslint/lib/rules/id-length.js +217 -0
  1751. package/node_modules/eslint/lib/rules/id-match.js +363 -0
  1752. package/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +125 -0
  1753. package/node_modules/eslint/lib/rules/indent-legacy.js +1369 -0
  1754. package/node_modules/eslint/lib/rules/indent.js +2334 -0
  1755. package/node_modules/eslint/lib/rules/index.js +332 -0
  1756. package/node_modules/eslint/lib/rules/init-declarations.js +172 -0
  1757. package/node_modules/eslint/lib/rules/jsx-quotes.js +128 -0
  1758. package/node_modules/eslint/lib/rules/key-spacing.js +822 -0
  1759. package/node_modules/eslint/lib/rules/keyword-spacing.js +701 -0
  1760. package/node_modules/eslint/lib/rules/line-comment-position.js +157 -0
  1761. package/node_modules/eslint/lib/rules/linebreak-style.js +135 -0
  1762. package/node_modules/eslint/lib/rules/lines-around-comment.js +581 -0
  1763. package/node_modules/eslint/lib/rules/lines-around-directive.js +249 -0
  1764. package/node_modules/eslint/lib/rules/lines-between-class-members.js +358 -0
  1765. package/node_modules/eslint/lib/rules/logical-assignment-operators.js +688 -0
  1766. package/node_modules/eslint/lib/rules/max-classes-per-file.js +90 -0
  1767. package/node_modules/eslint/lib/rules/max-depth.js +159 -0
  1768. package/node_modules/eslint/lib/rules/max-len.js +497 -0
  1769. package/node_modules/eslint/lib/rules/max-lines-per-function.js +238 -0
  1770. package/node_modules/eslint/lib/rules/max-lines.js +189 -0
  1771. package/node_modules/eslint/lib/rules/max-nested-callbacks.js +115 -0
  1772. package/node_modules/eslint/lib/rules/max-params.js +129 -0
  1773. package/node_modules/eslint/lib/rules/max-statements-per-line.js +224 -0
  1774. package/node_modules/eslint/lib/rules/max-statements.js +188 -0
  1775. package/node_modules/eslint/lib/rules/multiline-comment-style.js +652 -0
  1776. package/node_modules/eslint/lib/rules/multiline-ternary.js +257 -0
  1777. package/node_modules/eslint/lib/rules/new-cap.js +277 -0
  1778. package/node_modules/eslint/lib/rules/new-parens.js +120 -0
  1779. package/node_modules/eslint/lib/rules/newline-after-var.js +307 -0
  1780. package/node_modules/eslint/lib/rules/newline-before-return.js +242 -0
  1781. package/node_modules/eslint/lib/rules/newline-per-chained-call.js +159 -0
  1782. package/node_modules/eslint/lib/rules/no-alert.js +149 -0
  1783. package/node_modules/eslint/lib/rules/no-array-constructor.js +195 -0
  1784. package/node_modules/eslint/lib/rules/no-async-promise-executor.js +45 -0
  1785. package/node_modules/eslint/lib/rules/no-await-in-loop.js +115 -0
  1786. package/node_modules/eslint/lib/rules/no-bitwise.js +145 -0
  1787. package/node_modules/eslint/lib/rules/no-buffer-constructor.js +74 -0
  1788. package/node_modules/eslint/lib/rules/no-caller.js +52 -0
  1789. package/node_modules/eslint/lib/rules/no-case-declarations.js +80 -0
  1790. package/node_modules/eslint/lib/rules/no-catch-shadow.js +96 -0
  1791. package/node_modules/eslint/lib/rules/no-class-assign.js +66 -0
  1792. package/node_modules/eslint/lib/rules/no-compare-neg-zero.js +74 -0
  1793. package/node_modules/eslint/lib/rules/no-cond-assign.js +175 -0
  1794. package/node_modules/eslint/lib/rules/no-confusing-arrow.js +127 -0
  1795. package/node_modules/eslint/lib/rules/no-console.js +221 -0
  1796. package/node_modules/eslint/lib/rules/no-const-assign.js +73 -0
  1797. package/node_modules/eslint/lib/rules/no-constant-binary-expression.js +603 -0
  1798. package/node_modules/eslint/lib/rules/no-constant-condition.js +177 -0
  1799. package/node_modules/eslint/lib/rules/no-constructor-return.js +62 -0
  1800. package/node_modules/eslint/lib/rules/no-continue.js +38 -0
  1801. package/node_modules/eslint/lib/rules/no-control-regex.js +142 -0
  1802. package/node_modules/eslint/lib/rules/no-debugger.js +41 -0
  1803. package/node_modules/eslint/lib/rules/no-delete-var.js +42 -0
  1804. package/node_modules/eslint/lib/rules/no-div-regex.js +60 -0
  1805. package/node_modules/eslint/lib/rules/no-dupe-args.js +92 -0
  1806. package/node_modules/eslint/lib/rules/no-dupe-class-members.js +117 -0
  1807. package/node_modules/eslint/lib/rules/no-dupe-else-if.js +145 -0
  1808. package/node_modules/eslint/lib/rules/no-dupe-keys.js +165 -0
  1809. package/node_modules/eslint/lib/rules/no-duplicate-case.js +78 -0
  1810. package/node_modules/eslint/lib/rules/no-duplicate-imports.js +368 -0
  1811. package/node_modules/eslint/lib/rules/no-else-return.js +450 -0
  1812. package/node_modules/eslint/lib/rules/no-empty-character-class.js +83 -0
  1813. package/node_modules/eslint/lib/rules/no-empty-function.js +236 -0
  1814. package/node_modules/eslint/lib/rules/no-empty-pattern.js +85 -0
  1815. package/node_modules/eslint/lib/rules/no-empty-static-block.js +73 -0
  1816. package/node_modules/eslint/lib/rules/no-empty.js +153 -0
  1817. package/node_modules/eslint/lib/rules/no-eq-null.js +51 -0
  1818. package/node_modules/eslint/lib/rules/no-eval.js +295 -0
  1819. package/node_modules/eslint/lib/rules/no-ex-assign.js +57 -0
  1820. package/node_modules/eslint/lib/rules/no-extend-native.js +180 -0
  1821. package/node_modules/eslint/lib/rules/no-extra-bind.js +224 -0
  1822. package/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +420 -0
  1823. package/node_modules/eslint/lib/rules/no-extra-label.js +169 -0
  1824. package/node_modules/eslint/lib/rules/no-extra-parens.js +1669 -0
  1825. package/node_modules/eslint/lib/rules/no-extra-semi.js +167 -0
  1826. package/node_modules/eslint/lib/rules/no-fallthrough.js +260 -0
  1827. package/node_modules/eslint/lib/rules/no-floating-decimal.js +99 -0
  1828. package/node_modules/eslint/lib/rules/no-func-assign.js +77 -0
  1829. package/node_modules/eslint/lib/rules/no-global-assign.js +101 -0
  1830. package/node_modules/eslint/lib/rules/no-implicit-coercion.js +468 -0
  1831. package/node_modules/eslint/lib/rules/no-implicit-globals.js +187 -0
  1832. package/node_modules/eslint/lib/rules/no-implied-eval.js +170 -0
  1833. package/node_modules/eslint/lib/rules/no-import-assign.js +227 -0
  1834. package/node_modules/eslint/lib/rules/no-inline-comments.js +115 -0
  1835. package/node_modules/eslint/lib/rules/no-inner-declarations.js +147 -0
  1836. package/node_modules/eslint/lib/rules/no-invalid-regexp.js +243 -0
  1837. package/node_modules/eslint/lib/rules/no-invalid-this.js +178 -0
  1838. package/node_modules/eslint/lib/rules/no-irregular-whitespace.js +292 -0
  1839. package/node_modules/eslint/lib/rules/no-iterator.js +48 -0
  1840. package/node_modules/eslint/lib/rules/no-label-var.js +78 -0
  1841. package/node_modules/eslint/lib/rules/no-labels.js +156 -0
  1842. package/node_modules/eslint/lib/rules/no-lone-blocks.js +140 -0
  1843. package/node_modules/eslint/lib/rules/no-lonely-if.js +126 -0
  1844. package/node_modules/eslint/lib/rules/no-loop-func.js +267 -0
  1845. package/node_modules/eslint/lib/rules/no-loss-of-precision.js +249 -0
  1846. package/node_modules/eslint/lib/rules/no-magic-numbers.js +365 -0
  1847. package/node_modules/eslint/lib/rules/no-misleading-character-class.js +595 -0
  1848. package/node_modules/eslint/lib/rules/no-mixed-operators.js +253 -0
  1849. package/node_modules/eslint/lib/rules/no-mixed-requires.js +267 -0
  1850. package/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +148 -0
  1851. package/node_modules/eslint/lib/rules/no-multi-assign.js +66 -0
  1852. package/node_modules/eslint/lib/rules/no-multi-spaces.js +179 -0
  1853. package/node_modules/eslint/lib/rules/no-multi-str.js +67 -0
  1854. package/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +210 -0
  1855. package/node_modules/eslint/lib/rules/no-native-reassign.js +114 -0
  1856. package/node_modules/eslint/lib/rules/no-negated-condition.js +100 -0
  1857. package/node_modules/eslint/lib/rules/no-negated-in-lhs.js +59 -0
  1858. package/node_modules/eslint/lib/rules/no-nested-ternary.js +46 -0
  1859. package/node_modules/eslint/lib/rules/no-new-func.js +96 -0
  1860. package/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +70 -0
  1861. package/node_modules/eslint/lib/rules/no-new-object.js +76 -0
  1862. package/node_modules/eslint/lib/rules/no-new-require.js +67 -0
  1863. package/node_modules/eslint/lib/rules/no-new-symbol.js +74 -0
  1864. package/node_modules/eslint/lib/rules/no-new-wrappers.js +62 -0
  1865. package/node_modules/eslint/lib/rules/no-new.js +42 -0
  1866. package/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +176 -0
  1867. package/node_modules/eslint/lib/rules/no-obj-calls.js +99 -0
  1868. package/node_modules/eslint/lib/rules/no-object-constructor.js +124 -0
  1869. package/node_modules/eslint/lib/rules/no-octal-escape.js +53 -0
  1870. package/node_modules/eslint/lib/rules/no-octal.js +42 -0
  1871. package/node_modules/eslint/lib/rules/no-param-reassign.js +248 -0
  1872. package/node_modules/eslint/lib/rules/no-path-concat.js +79 -0
  1873. package/node_modules/eslint/lib/rules/no-plusplus.js +102 -0
  1874. package/node_modules/eslint/lib/rules/no-process-env.js +68 -0
  1875. package/node_modules/eslint/lib/rules/no-process-exit.js +67 -0
  1876. package/node_modules/eslint/lib/rules/no-promise-executor-return.js +264 -0
  1877. package/node_modules/eslint/lib/rules/no-proto.js +45 -0
  1878. package/node_modules/eslint/lib/rules/no-prototype-builtins.js +181 -0
  1879. package/node_modules/eslint/lib/rules/no-redeclare.js +173 -0
  1880. package/node_modules/eslint/lib/rules/no-regex-spaces.js +219 -0
  1881. package/node_modules/eslint/lib/rules/no-restricted-exports.js +227 -0
  1882. package/node_modules/eslint/lib/rules/no-restricted-globals.js +266 -0
  1883. package/node_modules/eslint/lib/rules/no-restricted-imports.js +850 -0
  1884. package/node_modules/eslint/lib/rules/no-restricted-modules.js +249 -0
  1885. package/node_modules/eslint/lib/rules/no-restricted-properties.js +233 -0
  1886. package/node_modules/eslint/lib/rules/no-restricted-syntax.js +74 -0
  1887. package/node_modules/eslint/lib/rules/no-return-assign.js +87 -0
  1888. package/node_modules/eslint/lib/rules/no-return-await.js +162 -0
  1889. package/node_modules/eslint/lib/rules/no-script-url.js +68 -0
  1890. package/node_modules/eslint/lib/rules/no-self-assign.js +186 -0
  1891. package/node_modules/eslint/lib/rules/no-self-compare.js +77 -0
  1892. package/node_modules/eslint/lib/rules/no-sequences.js +158 -0
  1893. package/node_modules/eslint/lib/rules/no-setter-return.js +224 -0
  1894. package/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +113 -0
  1895. package/node_modules/eslint/lib/rules/no-shadow.js +624 -0
  1896. package/node_modules/eslint/lib/rules/no-spaced-func.js +105 -0
  1897. package/node_modules/eslint/lib/rules/no-sparse-arrays.js +68 -0
  1898. package/node_modules/eslint/lib/rules/no-sync.js +81 -0
  1899. package/node_modules/eslint/lib/rules/no-tabs.js +110 -0
  1900. package/node_modules/eslint/lib/rules/no-template-curly-in-string.js +45 -0
  1901. package/node_modules/eslint/lib/rules/no-ternary.js +38 -0
  1902. package/node_modules/eslint/lib/rules/no-this-before-super.js +365 -0
  1903. package/node_modules/eslint/lib/rules/no-throw-literal.js +46 -0
  1904. package/node_modules/eslint/lib/rules/no-trailing-spaces.js +227 -0
  1905. package/node_modules/eslint/lib/rules/no-unassigned-vars.js +80 -0
  1906. package/node_modules/eslint/lib/rules/no-undef-init.js +101 -0
  1907. package/node_modules/eslint/lib/rules/no-undef.js +84 -0
  1908. package/node_modules/eslint/lib/rules/no-undefined.js +85 -0
  1909. package/node_modules/eslint/lib/rules/no-underscore-dangle.js +383 -0
  1910. package/node_modules/eslint/lib/rules/no-unexpected-multiline.js +130 -0
  1911. package/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +360 -0
  1912. package/node_modules/eslint/lib/rules/no-unneeded-ternary.js +232 -0
  1913. package/node_modules/eslint/lib/rules/no-unreachable-loop.js +190 -0
  1914. package/node_modules/eslint/lib/rules/no-unreachable.js +300 -0
  1915. package/node_modules/eslint/lib/rules/no-unsafe-finally.js +119 -0
  1916. package/node_modules/eslint/lib/rules/no-unsafe-negation.js +152 -0
  1917. package/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +221 -0
  1918. package/node_modules/eslint/lib/rules/no-unused-expressions.js +227 -0
  1919. package/node_modules/eslint/lib/rules/no-unused-labels.js +158 -0
  1920. package/node_modules/eslint/lib/rules/no-unused-private-class-members.js +219 -0
  1921. package/node_modules/eslint/lib/rules/no-unused-vars.js +1739 -0
  1922. package/node_modules/eslint/lib/rules/no-use-before-define.js +446 -0
  1923. package/node_modules/eslint/lib/rules/no-useless-assignment.js +654 -0
  1924. package/node_modules/eslint/lib/rules/no-useless-backreference.js +263 -0
  1925. package/node_modules/eslint/lib/rules/no-useless-call.js +95 -0
  1926. package/node_modules/eslint/lib/rules/no-useless-catch.js +57 -0
  1927. package/node_modules/eslint/lib/rules/no-useless-computed-key.js +204 -0
  1928. package/node_modules/eslint/lib/rules/no-useless-concat.js +121 -0
  1929. package/node_modules/eslint/lib/rules/no-useless-constructor.js +252 -0
  1930. package/node_modules/eslint/lib/rules/no-useless-escape.js +406 -0
  1931. package/node_modules/eslint/lib/rules/no-useless-rename.js +202 -0
  1932. package/node_modules/eslint/lib/rules/no-useless-return.js +401 -0
  1933. package/node_modules/eslint/lib/rules/no-var.js +367 -0
  1934. package/node_modules/eslint/lib/rules/no-void.js +69 -0
  1935. package/node_modules/eslint/lib/rules/no-warning-comments.js +209 -0
  1936. package/node_modules/eslint/lib/rules/no-whitespace-before-property.js +150 -0
  1937. package/node_modules/eslint/lib/rules/no-with.js +37 -0
  1938. package/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +164 -0
  1939. package/node_modules/eslint/lib/rules/object-curly-newline.js +383 -0
  1940. package/node_modules/eslint/lib/rules/object-curly-spacing.js +375 -0
  1941. package/node_modules/eslint/lib/rules/object-property-newline.js +151 -0
  1942. package/node_modules/eslint/lib/rules/object-shorthand.js +652 -0
  1943. package/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +117 -0
  1944. package/node_modules/eslint/lib/rules/one-var.js +717 -0
  1945. package/node_modules/eslint/lib/rules/operator-assignment.js +270 -0
  1946. package/node_modules/eslint/lib/rules/operator-linebreak.js +315 -0
  1947. package/node_modules/eslint/lib/rules/padded-blocks.js +366 -0
  1948. package/node_modules/eslint/lib/rules/padding-line-between-statements.js +612 -0
  1949. package/node_modules/eslint/lib/rules/prefer-arrow-callback.js +437 -0
  1950. package/node_modules/eslint/lib/rules/prefer-const.js +546 -0
  1951. package/node_modules/eslint/lib/rules/prefer-destructuring.js +332 -0
  1952. package/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +235 -0
  1953. package/node_modules/eslint/lib/rules/prefer-named-capture-group.js +197 -0
  1954. package/node_modules/eslint/lib/rules/prefer-numeric-literals.js +157 -0
  1955. package/node_modules/eslint/lib/rules/prefer-object-has-own.js +148 -0
  1956. package/node_modules/eslint/lib/rules/prefer-object-spread.js +319 -0
  1957. package/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +154 -0
  1958. package/node_modules/eslint/lib/rules/prefer-reflect.js +150 -0
  1959. package/node_modules/eslint/lib/rules/prefer-regex-literals.js +605 -0
  1960. package/node_modules/eslint/lib/rules/prefer-rest-params.js +117 -0
  1961. package/node_modules/eslint/lib/rules/prefer-spread.js +91 -0
  1962. package/node_modules/eslint/lib/rules/prefer-template.js +347 -0
  1963. package/node_modules/eslint/lib/rules/preserve-caught-error.js +535 -0
  1964. package/node_modules/eslint/lib/rules/quote-props.js +394 -0
  1965. package/node_modules/eslint/lib/rules/quotes.js +416 -0
  1966. package/node_modules/eslint/lib/rules/radix.js +216 -0
  1967. package/node_modules/eslint/lib/rules/require-atomic-updates.js +365 -0
  1968. package/node_modules/eslint/lib/rules/require-await.js +184 -0
  1969. package/node_modules/eslint/lib/rules/require-unicode-regexp.js +317 -0
  1970. package/node_modules/eslint/lib/rules/require-yield.js +76 -0
  1971. package/node_modules/eslint/lib/rules/rest-spread-spacing.js +153 -0
  1972. package/node_modules/eslint/lib/rules/semi-spacing.js +297 -0
  1973. package/node_modules/eslint/lib/rules/semi-style.js +218 -0
  1974. package/node_modules/eslint/lib/rules/semi.js +476 -0
  1975. package/node_modules/eslint/lib/rules/sort-imports.js +319 -0
  1976. package/node_modules/eslint/lib/rules/sort-keys.js +268 -0
  1977. package/node_modules/eslint/lib/rules/sort-vars.js +140 -0
  1978. package/node_modules/eslint/lib/rules/space-before-blocks.js +232 -0
  1979. package/node_modules/eslint/lib/rules/space-before-function-paren.js +205 -0
  1980. package/node_modules/eslint/lib/rules/space-in-parens.js +374 -0
  1981. package/node_modules/eslint/lib/rules/space-infix-ops.js +252 -0
  1982. package/node_modules/eslint/lib/rules/space-unary-ops.js +400 -0
  1983. package/node_modules/eslint/lib/rules/spaced-comment.js +447 -0
  1984. package/node_modules/eslint/lib/rules/strict.js +314 -0
  1985. package/node_modules/eslint/lib/rules/switch-colon-spacing.js +158 -0
  1986. package/node_modules/eslint/lib/rules/symbol-description.js +70 -0
  1987. package/node_modules/eslint/lib/rules/template-curly-spacing.js +168 -0
  1988. package/node_modules/eslint/lib/rules/template-tag-spacing.js +121 -0
  1989. package/node_modules/eslint/lib/rules/unicode-bom.js +73 -0
  1990. package/node_modules/eslint/lib/rules/use-isnan.js +268 -0
  1991. package/node_modules/eslint/lib/rules/utils/ast-utils.js +2733 -0
  1992. package/node_modules/eslint/lib/rules/utils/char-source.js +247 -0
  1993. package/node_modules/eslint/lib/rules/utils/fix-tracker.js +125 -0
  1994. package/node_modules/eslint/lib/rules/utils/keywords.js +67 -0
  1995. package/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +118 -0
  1996. package/node_modules/eslint/lib/rules/utils/regular-expressions.js +58 -0
  1997. package/node_modules/eslint/lib/rules/utils/unicode/index.js +16 -0
  1998. package/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +13 -0
  1999. package/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +13 -0
  2000. package/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +13 -0
  2001. package/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +14 -0
  2002. package/node_modules/eslint/lib/rules/valid-typeof.js +171 -0
  2003. package/node_modules/eslint/lib/rules/vars-on-top.js +165 -0
  2004. package/node_modules/eslint/lib/rules/wrap-iife.js +238 -0
  2005. package/node_modules/eslint/lib/rules/wrap-regex.js +91 -0
  2006. package/node_modules/eslint/lib/rules/yield-star-spacing.js +159 -0
  2007. package/node_modules/eslint/lib/rules/yoda.js +362 -0
  2008. package/node_modules/eslint/lib/services/parser-service.js +65 -0
  2009. package/node_modules/eslint/lib/services/processor-service.js +101 -0
  2010. package/node_modules/eslint/lib/services/suppressions-service.js +302 -0
  2011. package/node_modules/eslint/lib/services/warning-service.js +111 -0
  2012. package/node_modules/eslint/lib/shared/ajv.js +34 -0
  2013. package/node_modules/eslint/lib/shared/assert.js +21 -0
  2014. package/node_modules/eslint/lib/shared/ast-utils.js +30 -0
  2015. package/node_modules/eslint/lib/shared/deep-merge-arrays.js +62 -0
  2016. package/node_modules/eslint/lib/shared/directives.js +16 -0
  2017. package/node_modules/eslint/lib/shared/flags.js +108 -0
  2018. package/node_modules/eslint/lib/shared/logging.js +38 -0
  2019. package/node_modules/eslint/lib/shared/naming.js +109 -0
  2020. package/node_modules/eslint/lib/shared/option-utils.js +63 -0
  2021. package/node_modules/eslint/lib/shared/relative-module-resolver.js +28 -0
  2022. package/node_modules/eslint/lib/shared/runtime-info.js +177 -0
  2023. package/node_modules/eslint/lib/shared/serialization.js +78 -0
  2024. package/node_modules/eslint/lib/shared/severity.js +49 -0
  2025. package/node_modules/eslint/lib/shared/stats.js +30 -0
  2026. package/node_modules/eslint/lib/shared/string-utils.js +58 -0
  2027. package/node_modules/eslint/lib/shared/text-table.js +68 -0
  2028. package/node_modules/eslint/lib/shared/translate-cli-options.js +281 -0
  2029. package/node_modules/eslint/lib/shared/traverser.js +202 -0
  2030. package/node_modules/eslint/lib/types/config-api.d.ts +12 -0
  2031. package/node_modules/eslint/lib/types/index.d.ts +1915 -0
  2032. package/node_modules/eslint/lib/types/rules.d.ts +5589 -0
  2033. package/node_modules/eslint/lib/types/universal.d.ts +6 -0
  2034. package/node_modules/eslint/lib/types/use-at-your-own-risk.d.ts +87 -0
  2035. package/node_modules/eslint/lib/universal.js +10 -0
  2036. package/node_modules/eslint/lib/unsupported-api.js +29 -0
  2037. package/node_modules/eslint/messages/all-files-ignored.js +16 -0
  2038. package/node_modules/eslint/messages/all-matched-files-ignored.js +21 -0
  2039. package/node_modules/eslint/messages/config-file-missing.js +16 -0
  2040. package/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  2041. package/node_modules/eslint/messages/config-serialize-function.js +30 -0
  2042. package/node_modules/eslint/messages/eslintrc-incompat.js +117 -0
  2043. package/node_modules/eslint/messages/eslintrc-plugins.js +27 -0
  2044. package/node_modules/eslint/messages/extend-config-missing.js +13 -0
  2045. package/node_modules/eslint/messages/failed-to-read-json.js +11 -0
  2046. package/node_modules/eslint/messages/file-not-found.js +10 -0
  2047. package/node_modules/eslint/messages/invalid-rule-options.js +17 -0
  2048. package/node_modules/eslint/messages/invalid-rule-severity.js +13 -0
  2049. package/node_modules/eslint/messages/no-config-found.js +15 -0
  2050. package/node_modules/eslint/messages/plugin-conflict.js +22 -0
  2051. package/node_modules/eslint/messages/plugin-invalid.js +16 -0
  2052. package/node_modules/eslint/messages/plugin-missing.js +19 -0
  2053. package/node_modules/eslint/messages/print-config-with-directory-path.js +8 -0
  2054. package/node_modules/eslint/messages/shared.js +23 -0
  2055. package/node_modules/eslint/messages/whitespace-found.js +11 -0
  2056. package/node_modules/eslint/node_modules/brace-expansion/LICENSE +21 -0
  2057. package/node_modules/eslint/node_modules/brace-expansion/README.md +129 -0
  2058. package/node_modules/eslint/node_modules/brace-expansion/index.js +203 -0
  2059. package/node_modules/eslint/node_modules/brace-expansion/package.json +50 -0
  2060. package/node_modules/eslint/node_modules/escape-string-regexp/index.d.ts +18 -0
  2061. package/node_modules/eslint/node_modules/escape-string-regexp/index.js +13 -0
  2062. package/node_modules/eslint/node_modules/escape-string-regexp/license +9 -0
  2063. package/node_modules/eslint/node_modules/escape-string-regexp/package.json +38 -0
  2064. package/node_modules/eslint/node_modules/escape-string-regexp/readme.md +34 -0
  2065. package/node_modules/eslint/node_modules/find-up/index.d.ts +138 -0
  2066. package/node_modules/eslint/node_modules/find-up/index.js +89 -0
  2067. package/node_modules/eslint/node_modules/find-up/license +9 -0
  2068. package/node_modules/eslint/node_modules/find-up/package.json +54 -0
  2069. package/node_modules/eslint/node_modules/find-up/readme.md +151 -0
  2070. package/node_modules/eslint/node_modules/glob-parent/LICENSE +15 -0
  2071. package/node_modules/eslint/node_modules/glob-parent/README.md +134 -0
  2072. package/node_modules/eslint/node_modules/glob-parent/index.js +75 -0
  2073. package/node_modules/eslint/node_modules/glob-parent/package.json +54 -0
  2074. package/node_modules/eslint/node_modules/locate-path/index.d.ts +83 -0
  2075. package/node_modules/eslint/node_modules/locate-path/index.js +68 -0
  2076. package/node_modules/eslint/node_modules/locate-path/license +9 -0
  2077. package/node_modules/eslint/node_modules/locate-path/package.json +46 -0
  2078. package/node_modules/eslint/node_modules/locate-path/readme.md +125 -0
  2079. package/node_modules/eslint/node_modules/minimatch/LICENSE +15 -0
  2080. package/node_modules/eslint/node_modules/minimatch/README.md +267 -0
  2081. package/node_modules/eslint/node_modules/minimatch/minimatch.js +1005 -0
  2082. package/node_modules/eslint/node_modules/minimatch/package.json +33 -0
  2083. package/node_modules/eslint/node_modules/p-locate/index.d.ts +53 -0
  2084. package/node_modules/eslint/node_modules/p-locate/index.js +50 -0
  2085. package/node_modules/eslint/node_modules/p-locate/license +9 -0
  2086. package/node_modules/eslint/node_modules/p-locate/package.json +54 -0
  2087. package/node_modules/eslint/node_modules/p-locate/readme.md +93 -0
  2088. package/node_modules/eslint/package.json +226 -0
  2089. package/node_modules/eslint-scope/LICENSE +22 -0
  2090. package/node_modules/eslint-scope/README.md +198 -0
  2091. package/node_modules/eslint-scope/dist/eslint-scope.cjs +2339 -0
  2092. package/node_modules/eslint-scope/lib/assert.js +17 -0
  2093. package/node_modules/eslint-scope/lib/definition.js +85 -0
  2094. package/node_modules/eslint-scope/lib/index.js +170 -0
  2095. package/node_modules/eslint-scope/lib/pattern-visitor.js +154 -0
  2096. package/node_modules/eslint-scope/lib/reference.js +166 -0
  2097. package/node_modules/eslint-scope/lib/referencer.js +708 -0
  2098. package/node_modules/eslint-scope/lib/scope-manager.js +253 -0
  2099. package/node_modules/eslint-scope/lib/scope.js +793 -0
  2100. package/node_modules/eslint-scope/lib/variable.js +87 -0
  2101. package/node_modules/eslint-scope/lib/version.js +3 -0
  2102. package/node_modules/eslint-scope/package.json +64 -0
  2103. package/node_modules/eslint-visitor-keys/LICENSE +201 -0
  2104. package/node_modules/eslint-visitor-keys/README.md +121 -0
  2105. package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs +396 -0
  2106. package/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts +28 -0
  2107. package/node_modules/eslint-visitor-keys/dist/index.d.ts +16 -0
  2108. package/node_modules/eslint-visitor-keys/dist/visitor-keys.d.ts +12 -0
  2109. package/node_modules/eslint-visitor-keys/lib/index.js +67 -0
  2110. package/node_modules/eslint-visitor-keys/lib/visitor-keys.js +327 -0
  2111. package/node_modules/eslint-visitor-keys/package.json +70 -0
  2112. package/node_modules/espree/LICENSE +25 -0
  2113. package/node_modules/espree/README.md +262 -0
  2114. package/node_modules/espree/dist/espree.cjs +940 -0
  2115. package/node_modules/espree/espree.js +174 -0
  2116. package/node_modules/espree/lib/espree.js +349 -0
  2117. package/node_modules/espree/lib/features.js +27 -0
  2118. package/node_modules/espree/lib/options.js +125 -0
  2119. package/node_modules/espree/lib/token-translator.js +263 -0
  2120. package/node_modules/espree/lib/version.js +3 -0
  2121. package/node_modules/espree/package.json +77 -0
  2122. package/node_modules/esquery/README.md +27 -0
  2123. package/node_modules/esquery/dist/esquery.esm.js +4418 -0
  2124. package/node_modules/esquery/dist/esquery.esm.min.js +2 -0
  2125. package/node_modules/esquery/dist/esquery.esm.min.js.map +1 -0
  2126. package/node_modules/esquery/dist/esquery.js +4426 -0
  2127. package/node_modules/esquery/dist/esquery.lite.js +3716 -0
  2128. package/node_modules/esquery/dist/esquery.lite.min.js +2 -0
  2129. package/node_modules/esquery/dist/esquery.lite.min.js.map +1 -0
  2130. package/node_modules/esquery/dist/esquery.min.js +2 -0
  2131. package/node_modules/esquery/dist/esquery.min.js.map +1 -0
  2132. package/node_modules/esquery/license.txt +24 -0
  2133. package/node_modules/esquery/package.json +78 -0
  2134. package/node_modules/esquery/parser.js +2941 -0
  2135. package/node_modules/esrecurse/.babelrc +3 -0
  2136. package/node_modules/esrecurse/README.md +171 -0
  2137. package/node_modules/esrecurse/esrecurse.js +117 -0
  2138. package/node_modules/esrecurse/gulpfile.babel.js +92 -0
  2139. package/node_modules/esrecurse/package.json +52 -0
  2140. package/node_modules/estraverse/.jshintrc +16 -0
  2141. package/node_modules/estraverse/LICENSE.BSD +19 -0
  2142. package/node_modules/estraverse/README.md +153 -0
  2143. package/node_modules/estraverse/estraverse.js +805 -0
  2144. package/node_modules/estraverse/gulpfile.js +70 -0
  2145. package/node_modules/estraverse/package.json +40 -0
  2146. package/node_modules/esutils/LICENSE.BSD +19 -0
  2147. package/node_modules/esutils/README.md +174 -0
  2148. package/node_modules/esutils/lib/ast.js +144 -0
  2149. package/node_modules/esutils/lib/code.js +135 -0
  2150. package/node_modules/esutils/lib/keyword.js +165 -0
  2151. package/node_modules/esutils/lib/utils.js +33 -0
  2152. package/node_modules/esutils/package.json +44 -0
  2153. package/node_modules/fast-deep-equal/LICENSE +21 -0
  2154. package/node_modules/fast-deep-equal/README.md +96 -0
  2155. package/node_modules/fast-deep-equal/es6/index.d.ts +2 -0
  2156. package/node_modules/fast-deep-equal/es6/index.js +72 -0
  2157. package/node_modules/fast-deep-equal/es6/react.d.ts +2 -0
  2158. package/node_modules/fast-deep-equal/es6/react.js +79 -0
  2159. package/node_modules/fast-deep-equal/index.d.ts +4 -0
  2160. package/node_modules/fast-deep-equal/index.js +46 -0
  2161. package/node_modules/fast-deep-equal/package.json +61 -0
  2162. package/node_modules/fast-deep-equal/react.d.ts +2 -0
  2163. package/node_modules/fast-deep-equal/react.js +53 -0
  2164. package/node_modules/fast-json-stable-stringify/.eslintrc.yml +26 -0
  2165. package/node_modules/fast-json-stable-stringify/.github/FUNDING.yml +1 -0
  2166. package/node_modules/fast-json-stable-stringify/.travis.yml +8 -0
  2167. package/node_modules/fast-json-stable-stringify/LICENSE +21 -0
  2168. package/node_modules/fast-json-stable-stringify/README.md +131 -0
  2169. package/node_modules/fast-json-stable-stringify/benchmark/index.js +31 -0
  2170. package/node_modules/fast-json-stable-stringify/benchmark/test.json +137 -0
  2171. package/node_modules/fast-json-stable-stringify/example/key_cmp.js +7 -0
  2172. package/node_modules/fast-json-stable-stringify/example/nested.js +3 -0
  2173. package/node_modules/fast-json-stable-stringify/example/str.js +3 -0
  2174. package/node_modules/fast-json-stable-stringify/example/value_cmp.js +7 -0
  2175. package/node_modules/fast-json-stable-stringify/index.d.ts +4 -0
  2176. package/node_modules/fast-json-stable-stringify/index.js +59 -0
  2177. package/node_modules/fast-json-stable-stringify/package.json +52 -0
  2178. package/node_modules/fast-json-stable-stringify/test/cmp.js +13 -0
  2179. package/node_modules/fast-json-stable-stringify/test/nested.js +44 -0
  2180. package/node_modules/fast-json-stable-stringify/test/str.js +46 -0
  2181. package/node_modules/fast-json-stable-stringify/test/to-json.js +22 -0
  2182. package/node_modules/fast-levenshtein/LICENSE.md +25 -0
  2183. package/node_modules/fast-levenshtein/README.md +104 -0
  2184. package/node_modules/fast-levenshtein/levenshtein.js +136 -0
  2185. package/node_modules/fast-levenshtein/package.json +39 -0
  2186. package/node_modules/fdir/LICENSE +7 -0
  2187. package/node_modules/fdir/README.md +91 -0
  2188. package/node_modules/fdir/dist/index.cjs +588 -0
  2189. package/node_modules/fdir/dist/index.d.cts +155 -0
  2190. package/node_modules/fdir/dist/index.d.mts +155 -0
  2191. package/node_modules/fdir/dist/index.mjs +570 -0
  2192. package/node_modules/fdir/package.json +103 -0
  2193. package/node_modules/file-entry-cache/LICENSE +22 -0
  2194. package/node_modules/file-entry-cache/README.md +115 -0
  2195. package/node_modules/file-entry-cache/cache.js +291 -0
  2196. package/node_modules/file-entry-cache/package.json +56 -0
  2197. package/node_modules/flat-cache/LICENSE +22 -0
  2198. package/node_modules/flat-cache/README.md +77 -0
  2199. package/node_modules/flat-cache/package.json +63 -0
  2200. package/node_modules/flat-cache/src/cache.js +214 -0
  2201. package/node_modules/flat-cache/src/del.js +30 -0
  2202. package/node_modules/flat-cache/src/utils.js +42 -0
  2203. package/node_modules/flatted/LICENSE +15 -0
  2204. package/node_modules/flatted/README.md +111 -0
  2205. package/node_modules/flatted/cjs/index.js +132 -0
  2206. package/node_modules/flatted/cjs/package.json +1 -0
  2207. package/node_modules/flatted/es.js +1 -0
  2208. package/node_modules/flatted/esm/index.js +127 -0
  2209. package/node_modules/flatted/esm.js +1 -0
  2210. package/node_modules/flatted/golang/README.md +60 -0
  2211. package/node_modules/flatted/golang/pkg/flatted/flatted.go +277 -0
  2212. package/node_modules/flatted/index.js +155 -0
  2213. package/node_modules/flatted/min.js +1 -0
  2214. package/node_modules/flatted/package.json +80 -0
  2215. package/node_modules/flatted/php/flatted.php +156 -0
  2216. package/node_modules/flatted/python/flatted.py +144 -0
  2217. package/node_modules/flatted/types/index.d.ts +4 -0
  2218. package/node_modules/globals/globals.json +1998 -0
  2219. package/node_modules/globals/index.d.ts +2077 -0
  2220. package/node_modules/globals/index.js +2 -0
  2221. package/node_modules/globals/license +9 -0
  2222. package/node_modules/globals/package.json +58 -0
  2223. package/node_modules/globals/readme.md +44 -0
  2224. package/node_modules/has-flag/index.d.ts +39 -0
  2225. package/node_modules/has-flag/index.js +8 -0
  2226. package/node_modules/has-flag/license +9 -0
  2227. package/node_modules/has-flag/package.json +46 -0
  2228. package/node_modules/has-flag/readme.md +89 -0
  2229. package/node_modules/ignore/LICENSE-MIT +21 -0
  2230. package/node_modules/ignore/README.md +412 -0
  2231. package/node_modules/ignore/index.d.ts +61 -0
  2232. package/node_modules/ignore/index.js +636 -0
  2233. package/node_modules/ignore/legacy.js +559 -0
  2234. package/node_modules/ignore/package.json +74 -0
  2235. package/node_modules/import-fresh/index.d.ts +30 -0
  2236. package/node_modules/import-fresh/index.js +34 -0
  2237. package/node_modules/import-fresh/license +9 -0
  2238. package/node_modules/import-fresh/node_modules/resolve-from/index.js +47 -0
  2239. package/node_modules/import-fresh/node_modules/resolve-from/license +9 -0
  2240. package/node_modules/import-fresh/node_modules/resolve-from/package.json +34 -0
  2241. package/node_modules/import-fresh/node_modules/resolve-from/readme.md +72 -0
  2242. package/node_modules/import-fresh/package.json +48 -0
  2243. package/node_modules/import-fresh/readme.md +54 -0
  2244. package/node_modules/imurmurhash/README.md +122 -0
  2245. package/node_modules/imurmurhash/imurmurhash.js +138 -0
  2246. package/node_modules/imurmurhash/imurmurhash.min.js +12 -0
  2247. package/node_modules/imurmurhash/package.json +40 -0
  2248. package/node_modules/is-extglob/LICENSE +21 -0
  2249. package/node_modules/is-extglob/README.md +107 -0
  2250. package/node_modules/is-extglob/index.js +20 -0
  2251. package/node_modules/is-extglob/package.json +69 -0
  2252. package/node_modules/is-glob/LICENSE +21 -0
  2253. package/node_modules/is-glob/README.md +206 -0
  2254. package/node_modules/is-glob/index.js +150 -0
  2255. package/node_modules/is-glob/package.json +81 -0
  2256. package/node_modules/isexe/.npmignore +2 -0
  2257. package/node_modules/isexe/LICENSE +15 -0
  2258. package/node_modules/isexe/README.md +51 -0
  2259. package/node_modules/isexe/index.js +57 -0
  2260. package/node_modules/isexe/mode.js +41 -0
  2261. package/node_modules/isexe/package.json +31 -0
  2262. package/node_modules/isexe/test/basic.js +221 -0
  2263. package/node_modules/isexe/windows.js +42 -0
  2264. package/node_modules/json-buffer/.travis.yml +3 -0
  2265. package/node_modules/json-buffer/LICENSE +22 -0
  2266. package/node_modules/json-buffer/README.md +24 -0
  2267. package/node_modules/json-buffer/index.js +58 -0
  2268. package/node_modules/json-buffer/package.json +34 -0
  2269. package/node_modules/json-buffer/test/index.js +63 -0
  2270. package/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
  2271. package/node_modules/json-schema-traverse/.travis.yml +8 -0
  2272. package/node_modules/json-schema-traverse/LICENSE +21 -0
  2273. package/node_modules/json-schema-traverse/README.md +83 -0
  2274. package/node_modules/json-schema-traverse/index.js +89 -0
  2275. package/node_modules/json-schema-traverse/package.json +43 -0
  2276. package/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
  2277. package/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
  2278. package/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
  2279. package/node_modules/json-stable-stringify-without-jsonify/.npmignore +1 -0
  2280. package/node_modules/json-stable-stringify-without-jsonify/.travis.yml +4 -0
  2281. package/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
  2282. package/node_modules/json-stable-stringify-without-jsonify/example/key_cmp.js +7 -0
  2283. package/node_modules/json-stable-stringify-without-jsonify/example/nested.js +3 -0
  2284. package/node_modules/json-stable-stringify-without-jsonify/example/str.js +3 -0
  2285. package/node_modules/json-stable-stringify-without-jsonify/example/value_cmp.js +7 -0
  2286. package/node_modules/json-stable-stringify-without-jsonify/index.js +82 -0
  2287. package/node_modules/json-stable-stringify-without-jsonify/package.json +43 -0
  2288. package/node_modules/json-stable-stringify-without-jsonify/readme.markdown +132 -0
  2289. package/node_modules/json-stable-stringify-without-jsonify/test/cmp.js +11 -0
  2290. package/node_modules/json-stable-stringify-without-jsonify/test/nested.js +42 -0
  2291. package/node_modules/json-stable-stringify-without-jsonify/test/replacer.js +74 -0
  2292. package/node_modules/json-stable-stringify-without-jsonify/test/space.js +59 -0
  2293. package/node_modules/json-stable-stringify-without-jsonify/test/str.js +32 -0
  2294. package/node_modules/json-stable-stringify-without-jsonify/test/to-json.js +20 -0
  2295. package/node_modules/keyv/README.md +429 -0
  2296. package/node_modules/keyv/package.json +57 -0
  2297. package/node_modules/keyv/src/index.d.ts +112 -0
  2298. package/node_modules/keyv/src/index.js +259 -0
  2299. package/node_modules/levn/LICENSE +22 -0
  2300. package/node_modules/levn/README.md +196 -0
  2301. package/node_modules/levn/lib/cast.js +327 -0
  2302. package/node_modules/levn/lib/index.js +22 -0
  2303. package/node_modules/levn/lib/parse-string.js +113 -0
  2304. package/node_modules/levn/package.json +46 -0
  2305. package/node_modules/lodash.merge/LICENSE +47 -0
  2306. package/node_modules/lodash.merge/README.md +18 -0
  2307. package/node_modules/lodash.merge/index.js +1977 -0
  2308. package/node_modules/lodash.merge/package.json +16 -0
  2309. package/node_modules/ms/index.js +162 -0
  2310. package/node_modules/ms/license.md +21 -0
  2311. package/node_modules/ms/package.json +38 -0
  2312. package/node_modules/ms/readme.md +59 -0
  2313. package/node_modules/natural-compare/README.md +125 -0
  2314. package/node_modules/natural-compare/index.js +57 -0
  2315. package/node_modules/natural-compare/package.json +42 -0
  2316. package/node_modules/optionator/LICENSE +22 -0
  2317. package/node_modules/optionator/README.md +238 -0
  2318. package/node_modules/optionator/lib/help.js +260 -0
  2319. package/node_modules/optionator/lib/index.js +465 -0
  2320. package/node_modules/optionator/lib/util.js +54 -0
  2321. package/node_modules/optionator/package.json +43 -0
  2322. package/node_modules/p-limit/index.d.ts +42 -0
  2323. package/node_modules/p-limit/index.js +71 -0
  2324. package/node_modules/p-limit/license +9 -0
  2325. package/node_modules/p-limit/package.json +52 -0
  2326. package/node_modules/p-limit/readme.md +101 -0
  2327. package/node_modules/parent-module/index.js +37 -0
  2328. package/node_modules/parent-module/license +9 -0
  2329. package/node_modules/parent-module/package.json +46 -0
  2330. package/node_modules/parent-module/readme.md +67 -0
  2331. package/node_modules/path-exists/index.d.ts +28 -0
  2332. package/node_modules/path-exists/index.js +23 -0
  2333. package/node_modules/path-exists/license +9 -0
  2334. package/node_modules/path-exists/package.json +39 -0
  2335. package/node_modules/path-exists/readme.md +52 -0
  2336. package/node_modules/path-key/index.d.ts +40 -0
  2337. package/node_modules/path-key/index.js +16 -0
  2338. package/node_modules/path-key/license +9 -0
  2339. package/node_modules/path-key/package.json +39 -0
  2340. package/node_modules/path-key/readme.md +61 -0
  2341. package/node_modules/picomatch/LICENSE +21 -0
  2342. package/node_modules/picomatch/README.md +749 -0
  2343. package/node_modules/picomatch/index.js +17 -0
  2344. package/node_modules/picomatch/lib/constants.js +184 -0
  2345. package/node_modules/picomatch/lib/parse.js +1386 -0
  2346. package/node_modules/picomatch/lib/picomatch.js +349 -0
  2347. package/node_modules/picomatch/lib/scan.js +391 -0
  2348. package/node_modules/picomatch/lib/utils.js +72 -0
  2349. package/node_modules/picomatch/package.json +82 -0
  2350. package/node_modules/picomatch/posix.js +3 -0
  2351. package/node_modules/prelude-ls/LICENSE +22 -0
  2352. package/node_modules/prelude-ls/README.md +15 -0
  2353. package/node_modules/prelude-ls/lib/Func.js +69 -0
  2354. package/node_modules/prelude-ls/lib/List.js +716 -0
  2355. package/node_modules/prelude-ls/lib/Num.js +130 -0
  2356. package/node_modules/prelude-ls/lib/Obj.js +154 -0
  2357. package/node_modules/prelude-ls/lib/Str.js +92 -0
  2358. package/node_modules/prelude-ls/lib/index.js +178 -0
  2359. package/node_modules/prelude-ls/package.json +46 -0
  2360. package/node_modules/punycode/LICENSE-MIT.txt +20 -0
  2361. package/node_modules/punycode/README.md +148 -0
  2362. package/node_modules/punycode/package.json +58 -0
  2363. package/node_modules/punycode/punycode.es6.js +444 -0
  2364. package/node_modules/punycode/punycode.js +443 -0
  2365. package/node_modules/shebang-command/index.js +19 -0
  2366. package/node_modules/shebang-command/license +9 -0
  2367. package/node_modules/shebang-command/package.json +34 -0
  2368. package/node_modules/shebang-command/readme.md +34 -0
  2369. package/node_modules/shebang-regex/index.d.ts +22 -0
  2370. package/node_modules/shebang-regex/index.js +2 -0
  2371. package/node_modules/shebang-regex/license +9 -0
  2372. package/node_modules/shebang-regex/package.json +35 -0
  2373. package/node_modules/shebang-regex/readme.md +33 -0
  2374. package/node_modules/strip-json-comments/index.d.ts +36 -0
  2375. package/node_modules/strip-json-comments/index.js +77 -0
  2376. package/node_modules/strip-json-comments/license +9 -0
  2377. package/node_modules/strip-json-comments/package.json +47 -0
  2378. package/node_modules/strip-json-comments/readme.md +78 -0
  2379. package/node_modules/supports-color/browser.js +5 -0
  2380. package/node_modules/supports-color/index.js +135 -0
  2381. package/node_modules/supports-color/license +9 -0
  2382. package/node_modules/supports-color/package.json +53 -0
  2383. package/node_modules/supports-color/readme.md +76 -0
  2384. package/node_modules/tinyglobby/LICENSE +21 -0
  2385. package/node_modules/tinyglobby/README.md +25 -0
  2386. package/node_modules/tinyglobby/dist/index.cjs +335 -0
  2387. package/node_modules/tinyglobby/dist/index.d.cts +148 -0
  2388. package/node_modules/tinyglobby/dist/index.d.mts +148 -0
  2389. package/node_modules/tinyglobby/dist/index.mjs +307 -0
  2390. package/node_modules/tinyglobby/package.json +70 -0
  2391. package/node_modules/ts-api-utils/LICENSE.md +20 -0
  2392. package/node_modules/ts-api-utils/README.md +40 -0
  2393. package/node_modules/ts-api-utils/lib/index.cjs +2308 -0
  2394. package/node_modules/ts-api-utils/lib/index.d.cts +3053 -0
  2395. package/node_modules/ts-api-utils/lib/index.d.ts +3053 -0
  2396. package/node_modules/ts-api-utils/lib/index.js +2107 -0
  2397. package/node_modules/ts-api-utils/package.json +101 -0
  2398. package/node_modules/type-check/LICENSE +22 -0
  2399. package/node_modules/type-check/README.md +210 -0
  2400. package/node_modules/type-check/lib/check.js +128 -0
  2401. package/node_modules/type-check/lib/index.js +16 -0
  2402. package/node_modules/type-check/lib/parse-type.js +198 -0
  2403. package/node_modules/type-check/package.json +39 -0
  2404. package/node_modules/typescript-eslint/LICENSE +21 -0
  2405. package/node_modules/typescript-eslint/README.md +12 -0
  2406. package/node_modules/typescript-eslint/dist/compatibility-types.d.ts +16 -0
  2407. package/node_modules/typescript-eslint/dist/compatibility-types.js +7 -0
  2408. package/node_modules/typescript-eslint/dist/config-helper.d.ts +70 -0
  2409. package/node_modules/typescript-eslint/dist/config-helper.js +130 -0
  2410. package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.d.ts +8 -0
  2411. package/node_modules/typescript-eslint/dist/getTSConfigRootDirFromStack.js +52 -0
  2412. package/node_modules/typescript-eslint/dist/index.d.ts +155 -0
  2413. package/node_modules/typescript-eslint/dist/index.js +173 -0
  2414. package/node_modules/typescript-eslint/package.json +104 -0
  2415. package/node_modules/uri-js/LICENSE +11 -0
  2416. package/node_modules/uri-js/README.md +203 -0
  2417. package/node_modules/uri-js/dist/es5/uri.all.d.ts +59 -0
  2418. package/node_modules/uri-js/dist/es5/uri.all.js +1443 -0
  2419. package/node_modules/uri-js/dist/es5/uri.all.js.map +1 -0
  2420. package/node_modules/uri-js/dist/es5/uri.all.min.d.ts +59 -0
  2421. package/node_modules/uri-js/dist/es5/uri.all.min.js +3 -0
  2422. package/node_modules/uri-js/dist/es5/uri.all.min.js.map +1 -0
  2423. package/node_modules/uri-js/dist/esnext/index.d.ts +1 -0
  2424. package/node_modules/uri-js/dist/esnext/index.js +17 -0
  2425. package/node_modules/uri-js/dist/esnext/index.js.map +1 -0
  2426. package/node_modules/uri-js/dist/esnext/regexps-iri.d.ts +3 -0
  2427. package/node_modules/uri-js/dist/esnext/regexps-iri.js +3 -0
  2428. package/node_modules/uri-js/dist/esnext/regexps-iri.js.map +1 -0
  2429. package/node_modules/uri-js/dist/esnext/regexps-uri.d.ts +4 -0
  2430. package/node_modules/uri-js/dist/esnext/regexps-uri.js +42 -0
  2431. package/node_modules/uri-js/dist/esnext/regexps-uri.js.map +1 -0
  2432. package/node_modules/uri-js/dist/esnext/schemes/http.d.ts +3 -0
  2433. package/node_modules/uri-js/dist/esnext/schemes/http.js +28 -0
  2434. package/node_modules/uri-js/dist/esnext/schemes/http.js.map +1 -0
  2435. package/node_modules/uri-js/dist/esnext/schemes/https.d.ts +3 -0
  2436. package/node_modules/uri-js/dist/esnext/schemes/https.js +9 -0
  2437. package/node_modules/uri-js/dist/esnext/schemes/https.js.map +1 -0
  2438. package/node_modules/uri-js/dist/esnext/schemes/mailto.d.ts +12 -0
  2439. package/node_modules/uri-js/dist/esnext/schemes/mailto.js +148 -0
  2440. package/node_modules/uri-js/dist/esnext/schemes/mailto.js.map +1 -0
  2441. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts +7 -0
  2442. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js +23 -0
  2443. package/node_modules/uri-js/dist/esnext/schemes/urn-uuid.js.map +1 -0
  2444. package/node_modules/uri-js/dist/esnext/schemes/urn.d.ts +10 -0
  2445. package/node_modules/uri-js/dist/esnext/schemes/urn.js +49 -0
  2446. package/node_modules/uri-js/dist/esnext/schemes/urn.js.map +1 -0
  2447. package/node_modules/uri-js/dist/esnext/schemes/ws.d.ts +7 -0
  2448. package/node_modules/uri-js/dist/esnext/schemes/ws.js +41 -0
  2449. package/node_modules/uri-js/dist/esnext/schemes/ws.js.map +1 -0
  2450. package/node_modules/uri-js/dist/esnext/schemes/wss.d.ts +3 -0
  2451. package/node_modules/uri-js/dist/esnext/schemes/wss.js +9 -0
  2452. package/node_modules/uri-js/dist/esnext/schemes/wss.js.map +1 -0
  2453. package/node_modules/uri-js/dist/esnext/uri.d.ts +59 -0
  2454. package/node_modules/uri-js/dist/esnext/uri.js +480 -0
  2455. package/node_modules/uri-js/dist/esnext/uri.js.map +1 -0
  2456. package/node_modules/uri-js/dist/esnext/util.d.ts +6 -0
  2457. package/node_modules/uri-js/dist/esnext/util.js +36 -0
  2458. package/node_modules/uri-js/dist/esnext/util.js.map +1 -0
  2459. package/node_modules/uri-js/package.json +77 -0
  2460. package/node_modules/which/LICENSE +15 -0
  2461. package/node_modules/which/README.md +54 -0
  2462. package/node_modules/which/bin/node-which +52 -0
  2463. package/node_modules/which/package.json +43 -0
  2464. package/node_modules/which/which.js +125 -0
  2465. package/node_modules/word-wrap/LICENSE +21 -0
  2466. package/node_modules/word-wrap/README.md +201 -0
  2467. package/node_modules/word-wrap/index.d.ts +50 -0
  2468. package/node_modules/word-wrap/index.js +61 -0
  2469. package/node_modules/word-wrap/package.json +77 -0
  2470. package/node_modules/yocto-queue/index.d.ts +56 -0
  2471. package/node_modules/yocto-queue/index.js +68 -0
  2472. package/node_modules/yocto-queue/license +9 -0
  2473. package/node_modules/yocto-queue/package.json +43 -0
  2474. package/node_modules/yocto-queue/readme.md +64 -0
  2475. package/package.json +7 -5
  2476. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.d.ts +0 -7
  2477. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js +0 -4
  2478. package/node_modules/@start9labs/start-core/osBindings/tunnel/SetIpv6Params.js.map +0 -1
  2479. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/LICENSE +0 -0
  2480. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/README.md +0 -0
  2481. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/index.d.ts +0 -0
  2482. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-date.js +0 -0
  2483. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime-float.js +0 -0
  2484. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-datetime.js +0 -0
  2485. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/create-time.js +0 -0
  2486. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/format-num.js +0 -0
  2487. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser-debug.js +0 -0
  2488. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/parser.js +0 -0
  2489. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/lib/toml-parser.js +0 -0
  2490. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/package.json +0 -0
  2491. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-async.js +0 -0
  2492. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-pretty-error.js +0 -0
  2493. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-stream.js +0 -0
  2494. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse-string.js +0 -0
  2495. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/parse.js +0 -0
  2496. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/stringify.js +0 -0
  2497. /package/node_modules/{@iarna → @start9labs/start-core/node_modules/@iarna}/toml/toml.js +0 -0
  2498. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/LICENSE +0 -0
  2499. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/README.md +0 -0
  2500. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts +0 -0
  2501. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.d.ts.map +0 -0
  2502. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js +0 -0
  2503. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/_shortw_utils.js.map +0 -0
  2504. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts +0 -0
  2505. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.d.ts.map +0 -0
  2506. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js +0 -0
  2507. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/bls.js.map +0 -0
  2508. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts +0 -0
  2509. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.d.ts.map +0 -0
  2510. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js +0 -0
  2511. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/curve.js.map +0 -0
  2512. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts +0 -0
  2513. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.d.ts.map +0 -0
  2514. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js +0 -0
  2515. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/edwards.js.map +0 -0
  2516. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts +0 -0
  2517. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.d.ts.map +0 -0
  2518. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js +0 -0
  2519. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/fft.js.map +0 -0
  2520. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts +0 -0
  2521. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.d.ts.map +0 -0
  2522. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js +0 -0
  2523. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/hash-to-curve.js.map +0 -0
  2524. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts +0 -0
  2525. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.d.ts.map +0 -0
  2526. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js +0 -0
  2527. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/modular.js.map +0 -0
  2528. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts +0 -0
  2529. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.d.ts.map +0 -0
  2530. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js +0 -0
  2531. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/montgomery.js.map +0 -0
  2532. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts +0 -0
  2533. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.d.ts.map +0 -0
  2534. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js +0 -0
  2535. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/poseidon.js.map +0 -0
  2536. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts +0 -0
  2537. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.d.ts.map +0 -0
  2538. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js +0 -0
  2539. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/tower.js.map +0 -0
  2540. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts +0 -0
  2541. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.d.ts.map +0 -0
  2542. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js +0 -0
  2543. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/utils.js.map +0 -0
  2544. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts +0 -0
  2545. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.d.ts.map +0 -0
  2546. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js +0 -0
  2547. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/abstract/weierstrass.js.map +0 -0
  2548. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts +0 -0
  2549. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.d.ts.map +0 -0
  2550. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js +0 -0
  2551. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bls12-381.js.map +0 -0
  2552. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts +0 -0
  2553. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.d.ts.map +0 -0
  2554. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js +0 -0
  2555. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/bn254.js.map +0 -0
  2556. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts +0 -0
  2557. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.d.ts.map +0 -0
  2558. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js +0 -0
  2559. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed25519.js.map +0 -0
  2560. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts +0 -0
  2561. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.d.ts.map +0 -0
  2562. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js +0 -0
  2563. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/ed448.js.map +0 -0
  2564. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts +0 -0
  2565. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.d.ts.map +0 -0
  2566. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js +0 -0
  2567. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/_shortw_utils.js.map +0 -0
  2568. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts +0 -0
  2569. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.d.ts.map +0 -0
  2570. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js +0 -0
  2571. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/bls.js.map +0 -0
  2572. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts +0 -0
  2573. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.d.ts.map +0 -0
  2574. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js +0 -0
  2575. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/curve.js.map +0 -0
  2576. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts +0 -0
  2577. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.d.ts.map +0 -0
  2578. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js +0 -0
  2579. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/edwards.js.map +0 -0
  2580. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts +0 -0
  2581. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.d.ts.map +0 -0
  2582. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js +0 -0
  2583. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/fft.js.map +0 -0
  2584. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts +0 -0
  2585. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.d.ts.map +0 -0
  2586. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js +0 -0
  2587. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/hash-to-curve.js.map +0 -0
  2588. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts +0 -0
  2589. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.d.ts.map +0 -0
  2590. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js +0 -0
  2591. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/modular.js.map +0 -0
  2592. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts +0 -0
  2593. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.d.ts.map +0 -0
  2594. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js +0 -0
  2595. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/montgomery.js.map +0 -0
  2596. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts +0 -0
  2597. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.d.ts.map +0 -0
  2598. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js +0 -0
  2599. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/poseidon.js.map +0 -0
  2600. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts +0 -0
  2601. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.d.ts.map +0 -0
  2602. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js +0 -0
  2603. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/tower.js.map +0 -0
  2604. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts +0 -0
  2605. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.d.ts.map +0 -0
  2606. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js +0 -0
  2607. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/utils.js.map +0 -0
  2608. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts +0 -0
  2609. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.d.ts.map +0 -0
  2610. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js +0 -0
  2611. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/abstract/weierstrass.js.map +0 -0
  2612. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts +0 -0
  2613. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.d.ts.map +0 -0
  2614. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js +0 -0
  2615. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bls12-381.js.map +0 -0
  2616. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts +0 -0
  2617. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.d.ts.map +0 -0
  2618. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js +0 -0
  2619. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/bn254.js.map +0 -0
  2620. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts +0 -0
  2621. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.d.ts.map +0 -0
  2622. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js +0 -0
  2623. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed25519.js.map +0 -0
  2624. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts +0 -0
  2625. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.d.ts.map +0 -0
  2626. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js +0 -0
  2627. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/ed448.js.map +0 -0
  2628. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts +0 -0
  2629. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.d.ts.map +0 -0
  2630. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js +0 -0
  2631. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/index.js.map +0 -0
  2632. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts +0 -0
  2633. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.d.ts.map +0 -0
  2634. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js +0 -0
  2635. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/jubjub.js.map +0 -0
  2636. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts +0 -0
  2637. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.d.ts.map +0 -0
  2638. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js +0 -0
  2639. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/misc.js.map +0 -0
  2640. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts +0 -0
  2641. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.d.ts.map +0 -0
  2642. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js +0 -0
  2643. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/nist.js.map +0 -0
  2644. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts +0 -0
  2645. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.d.ts.map +0 -0
  2646. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js +0 -0
  2647. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p256.js.map +0 -0
  2648. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts +0 -0
  2649. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.d.ts.map +0 -0
  2650. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js +0 -0
  2651. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p384.js.map +0 -0
  2652. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts +0 -0
  2653. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.d.ts.map +0 -0
  2654. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js +0 -0
  2655. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/p521.js.map +0 -0
  2656. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/package.json +0 -0
  2657. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts +0 -0
  2658. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.d.ts.map +0 -0
  2659. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js +0 -0
  2660. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/pasta.js.map +0 -0
  2661. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts +0 -0
  2662. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.d.ts.map +0 -0
  2663. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js +0 -0
  2664. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/secp256k1.js.map +0 -0
  2665. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts +0 -0
  2666. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.d.ts.map +0 -0
  2667. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js +0 -0
  2668. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/esm/utils.js.map +0 -0
  2669. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts +0 -0
  2670. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.d.ts.map +0 -0
  2671. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js +0 -0
  2672. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/index.js.map +0 -0
  2673. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts +0 -0
  2674. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.d.ts.map +0 -0
  2675. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js +0 -0
  2676. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/jubjub.js.map +0 -0
  2677. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts +0 -0
  2678. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.d.ts.map +0 -0
  2679. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js +0 -0
  2680. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/misc.js.map +0 -0
  2681. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts +0 -0
  2682. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.d.ts.map +0 -0
  2683. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js +0 -0
  2684. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/nist.js.map +0 -0
  2685. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts +0 -0
  2686. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.d.ts.map +0 -0
  2687. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js +0 -0
  2688. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p256.js.map +0 -0
  2689. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts +0 -0
  2690. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.d.ts.map +0 -0
  2691. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js +0 -0
  2692. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p384.js.map +0 -0
  2693. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts +0 -0
  2694. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.d.ts.map +0 -0
  2695. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js +0 -0
  2696. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/p521.js.map +0 -0
  2697. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/package.json +0 -0
  2698. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts +0 -0
  2699. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.d.ts.map +0 -0
  2700. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js +0 -0
  2701. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/pasta.js.map +0 -0
  2702. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts +0 -0
  2703. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.d.ts.map +0 -0
  2704. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js +0 -0
  2705. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/secp256k1.js.map +0 -0
  2706. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/_shortw_utils.ts +0 -0
  2707. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/bls.ts +0 -0
  2708. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/curve.ts +0 -0
  2709. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/edwards.ts +0 -0
  2710. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/fft.ts +0 -0
  2711. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/hash-to-curve.ts +0 -0
  2712. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/modular.ts +0 -0
  2713. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/montgomery.ts +0 -0
  2714. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/poseidon.ts +0 -0
  2715. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/tower.ts +0 -0
  2716. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/utils.ts +0 -0
  2717. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/abstract/weierstrass.ts +0 -0
  2718. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bls12-381.ts +0 -0
  2719. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/bn254.ts +0 -0
  2720. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed25519.ts +0 -0
  2721. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/ed448.ts +0 -0
  2722. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/index.ts +0 -0
  2723. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/jubjub.ts +0 -0
  2724. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/misc.ts +0 -0
  2725. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/nist.ts +0 -0
  2726. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p256.ts +0 -0
  2727. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p384.ts +0 -0
  2728. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/p521.ts +0 -0
  2729. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/package.json +0 -0
  2730. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/pasta.ts +0 -0
  2731. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/secp256k1.ts +0 -0
  2732. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/src/utils.ts +0 -0
  2733. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts +0 -0
  2734. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.d.ts.map +0 -0
  2735. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js +0 -0
  2736. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/curves/utils.js.map +0 -0
  2737. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/LICENSE +0 -0
  2738. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/README.md +0 -0
  2739. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts +0 -0
  2740. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.d.ts.map +0 -0
  2741. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js +0 -0
  2742. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_assert.js.map +0 -0
  2743. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts +0 -0
  2744. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.d.ts.map +0 -0
  2745. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js +0 -0
  2746. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_blake.js.map +0 -0
  2747. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts +0 -0
  2748. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.d.ts.map +0 -0
  2749. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js +0 -0
  2750. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_md.js.map +0 -0
  2751. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts +0 -0
  2752. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.d.ts.map +0 -0
  2753. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js +0 -0
  2754. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/_u64.js.map +0 -0
  2755. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts +0 -0
  2756. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.d.ts.map +0 -0
  2757. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js +0 -0
  2758. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/argon2.js.map +0 -0
  2759. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts +0 -0
  2760. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.d.ts.map +0 -0
  2761. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js +0 -0
  2762. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake1.js.map +0 -0
  2763. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts +0 -0
  2764. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.d.ts.map +0 -0
  2765. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js +0 -0
  2766. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2.js.map +0 -0
  2767. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts +0 -0
  2768. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.d.ts.map +0 -0
  2769. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js +0 -0
  2770. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2b.js.map +0 -0
  2771. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts +0 -0
  2772. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.d.ts.map +0 -0
  2773. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js +0 -0
  2774. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake2s.js.map +0 -0
  2775. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts +0 -0
  2776. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.d.ts.map +0 -0
  2777. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js +0 -0
  2778. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/blake3.js.map +0 -0
  2779. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts +0 -0
  2780. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.d.ts.map +0 -0
  2781. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js +0 -0
  2782. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/crypto.js.map +0 -0
  2783. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts +0 -0
  2784. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.d.ts.map +0 -0
  2785. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js +0 -0
  2786. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/cryptoNode.js.map +0 -0
  2787. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts +0 -0
  2788. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.d.ts.map +0 -0
  2789. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js +0 -0
  2790. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/eskdf.js.map +0 -0
  2791. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts +0 -0
  2792. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.d.ts.map +0 -0
  2793. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js +0 -0
  2794. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_assert.js.map +0 -0
  2795. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts +0 -0
  2796. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.d.ts.map +0 -0
  2797. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js +0 -0
  2798. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_blake.js.map +0 -0
  2799. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts +0 -0
  2800. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.d.ts.map +0 -0
  2801. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js +0 -0
  2802. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_md.js.map +0 -0
  2803. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts +0 -0
  2804. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.d.ts.map +0 -0
  2805. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js +0 -0
  2806. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/_u64.js.map +0 -0
  2807. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts +0 -0
  2808. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.d.ts.map +0 -0
  2809. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js +0 -0
  2810. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/argon2.js.map +0 -0
  2811. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts +0 -0
  2812. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.d.ts.map +0 -0
  2813. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js +0 -0
  2814. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake1.js.map +0 -0
  2815. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts +0 -0
  2816. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.d.ts.map +0 -0
  2817. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js +0 -0
  2818. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2.js.map +0 -0
  2819. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts +0 -0
  2820. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.d.ts.map +0 -0
  2821. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js +0 -0
  2822. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2b.js.map +0 -0
  2823. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts +0 -0
  2824. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.d.ts.map +0 -0
  2825. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js +0 -0
  2826. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake2s.js.map +0 -0
  2827. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts +0 -0
  2828. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.d.ts.map +0 -0
  2829. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js +0 -0
  2830. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/blake3.js.map +0 -0
  2831. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts +0 -0
  2832. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.d.ts.map +0 -0
  2833. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js +0 -0
  2834. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/crypto.js.map +0 -0
  2835. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts +0 -0
  2836. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.d.ts.map +0 -0
  2837. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js +0 -0
  2838. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/cryptoNode.js.map +0 -0
  2839. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts +0 -0
  2840. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.d.ts.map +0 -0
  2841. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js +0 -0
  2842. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/eskdf.js.map +0 -0
  2843. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts +0 -0
  2844. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.d.ts.map +0 -0
  2845. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js +0 -0
  2846. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hkdf.js.map +0 -0
  2847. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts +0 -0
  2848. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.d.ts.map +0 -0
  2849. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js +0 -0
  2850. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/hmac.js.map +0 -0
  2851. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts +0 -0
  2852. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.d.ts.map +0 -0
  2853. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js +0 -0
  2854. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/index.js.map +0 -0
  2855. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts +0 -0
  2856. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.d.ts.map +0 -0
  2857. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js +0 -0
  2858. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/legacy.js.map +0 -0
  2859. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/package.json +0 -0
  2860. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts +0 -0
  2861. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.d.ts.map +0 -0
  2862. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js +0 -0
  2863. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/pbkdf2.js.map +0 -0
  2864. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts +0 -0
  2865. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.d.ts.map +0 -0
  2866. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js +0 -0
  2867. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/ripemd160.js.map +0 -0
  2868. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts +0 -0
  2869. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.d.ts.map +0 -0
  2870. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js +0 -0
  2871. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/scrypt.js.map +0 -0
  2872. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts +0 -0
  2873. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.d.ts.map +0 -0
  2874. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js +0 -0
  2875. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha1.js.map +0 -0
  2876. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts +0 -0
  2877. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.d.ts.map +0 -0
  2878. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js +0 -0
  2879. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha2.js.map +0 -0
  2880. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts +0 -0
  2881. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.d.ts.map +0 -0
  2882. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js +0 -0
  2883. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha256.js.map +0 -0
  2884. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts +0 -0
  2885. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.d.ts.map +0 -0
  2886. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js +0 -0
  2887. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3-addons.js.map +0 -0
  2888. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts +0 -0
  2889. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.d.ts.map +0 -0
  2890. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js +0 -0
  2891. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha3.js.map +0 -0
  2892. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts +0 -0
  2893. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.d.ts.map +0 -0
  2894. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js +0 -0
  2895. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/sha512.js.map +0 -0
  2896. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts +0 -0
  2897. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.d.ts.map +0 -0
  2898. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js +0 -0
  2899. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/esm/utils.js.map +0 -0
  2900. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts +0 -0
  2901. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.d.ts.map +0 -0
  2902. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js +0 -0
  2903. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hkdf.js.map +0 -0
  2904. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts +0 -0
  2905. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.d.ts.map +0 -0
  2906. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js +0 -0
  2907. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/hmac.js.map +0 -0
  2908. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts +0 -0
  2909. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.d.ts.map +0 -0
  2910. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js +0 -0
  2911. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/index.js.map +0 -0
  2912. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts +0 -0
  2913. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.d.ts.map +0 -0
  2914. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js +0 -0
  2915. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/legacy.js.map +0 -0
  2916. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/package.json +0 -0
  2917. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts +0 -0
  2918. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.d.ts.map +0 -0
  2919. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js +0 -0
  2920. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/pbkdf2.js.map +0 -0
  2921. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts +0 -0
  2922. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.d.ts.map +0 -0
  2923. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js +0 -0
  2924. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/ripemd160.js.map +0 -0
  2925. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts +0 -0
  2926. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.d.ts.map +0 -0
  2927. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js +0 -0
  2928. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/scrypt.js.map +0 -0
  2929. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts +0 -0
  2930. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.d.ts.map +0 -0
  2931. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js +0 -0
  2932. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha1.js.map +0 -0
  2933. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts +0 -0
  2934. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.d.ts.map +0 -0
  2935. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js +0 -0
  2936. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha2.js.map +0 -0
  2937. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts +0 -0
  2938. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.d.ts.map +0 -0
  2939. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js +0 -0
  2940. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha256.js.map +0 -0
  2941. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts +0 -0
  2942. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.d.ts.map +0 -0
  2943. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js +0 -0
  2944. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3-addons.js.map +0 -0
  2945. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts +0 -0
  2946. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.d.ts.map +0 -0
  2947. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js +0 -0
  2948. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha3.js.map +0 -0
  2949. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts +0 -0
  2950. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.d.ts.map +0 -0
  2951. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js +0 -0
  2952. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/sha512.js.map +0 -0
  2953. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_assert.ts +0 -0
  2954. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_blake.ts +0 -0
  2955. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_md.ts +0 -0
  2956. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/_u64.ts +0 -0
  2957. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/argon2.ts +0 -0
  2958. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake1.ts +0 -0
  2959. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2.ts +0 -0
  2960. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2b.ts +0 -0
  2961. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake2s.ts +0 -0
  2962. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/blake3.ts +0 -0
  2963. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/crypto.ts +0 -0
  2964. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/cryptoNode.ts +0 -0
  2965. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/eskdf.ts +0 -0
  2966. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hkdf.ts +0 -0
  2967. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/hmac.ts +0 -0
  2968. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/index.ts +0 -0
  2969. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/legacy.ts +0 -0
  2970. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/pbkdf2.ts +0 -0
  2971. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/ripemd160.ts +0 -0
  2972. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/scrypt.ts +0 -0
  2973. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha1.ts +0 -0
  2974. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha2.ts +0 -0
  2975. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha256.ts +0 -0
  2976. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3-addons.ts +0 -0
  2977. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha3.ts +0 -0
  2978. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/sha512.ts +0 -0
  2979. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/src/utils.ts +0 -0
  2980. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts +0 -0
  2981. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.d.ts.map +0 -0
  2982. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js +0 -0
  2983. /package/node_modules/{@noble → @start9labs/start-core/node_modules/@noble}/hashes/utils.js.map +0 -0
  2984. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.editorconfig +0 -0
  2985. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.jshintrc +0 -0
  2986. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/.travis.yml +0 -0
  2987. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/LICENSE +0 -0
  2988. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/README.md +0 -0
  2989. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/bower.json +0 -0
  2990. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-bower.js +0 -0
  2991. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-browserify.js +0 -0
  2992. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/fetch-npm-node.js +0 -0
  2993. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/package.json +0 -0
  2994. /package/node_modules/{isomorphic-fetch → @start9labs/start-core/node_modules/isomorphic-fetch}/test/api.test.js +0 -0
  2995. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/LICENSE +0 -0
  2996. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/README.md +0 -0
  2997. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/bin/cli.js +0 -0
  2998. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.d.ts +0 -0
  2999. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/Mime.js +0 -0
  3000. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.d.ts +0 -0
  3001. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index.js +0 -0
  3002. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.d.ts +0 -0
  3003. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/index_lite.js +0 -0
  3004. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.d.ts +0 -0
  3005. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/src/mime_cli.js +0 -0
  3006. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.d.ts +0 -0
  3007. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/other.js +0 -0
  3008. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.d.ts +0 -0
  3009. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/dist/types/standard.js +0 -0
  3010. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/package.json +0 -0
  3011. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/Mime.ts +0 -0
  3012. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index.ts +0 -0
  3013. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/index_lite.ts +0 -0
  3014. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/src/mime_cli.ts +0 -0
  3015. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/other.ts +0 -0
  3016. /package/node_modules/{mime → @start9labs/start-core/node_modules/mime}/types/standard.ts +0 -0
  3017. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/LICENSE.md +0 -0
  3018. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/README.md +0 -0
  3019. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/browser.js +0 -0
  3020. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.es.js +0 -0
  3021. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.js +0 -0
  3022. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/lib/index.mjs +0 -0
  3023. /package/node_modules/{node-fetch → @start9labs/start-core/node_modules/node-fetch}/package.json +0 -0
  3024. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/LICENSE +0 -0
  3025. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/dist/object_hash.js +0 -0
  3026. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/index.js +0 -0
  3027. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/package.json +0 -0
  3028. /package/node_modules/{object-hash → @start9labs/start-core/node_modules/object-hash}/readme.markdown +0 -0
  3029. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/.npmignore +0 -0
  3030. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/index.js +0 -0
  3031. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/.gitkeep +0 -0
  3032. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/lib/mappingTable.json +0 -0
  3033. /package/node_modules/{tr46 → @start9labs/start-core/node_modules/tr46}/package.json +0 -0
  3034. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/LICENSE.md +0 -0
  3035. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/README.md +0 -0
  3036. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/lib/index.js +0 -0
  3037. /package/node_modules/{webidl-conversions → @start9labs/start-core/node_modules/webidl-conversions}/package.json +0 -0
  3038. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/LICENSE +0 -0
  3039. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/README.md +0 -0
  3040. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js +0 -0
  3041. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/dist/fetch.umd.js.flow +0 -0
  3042. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js +0 -0
  3043. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/fetch.js.flow +0 -0
  3044. /package/node_modules/{whatwg-fetch → @start9labs/start-core/node_modules/whatwg-fetch}/package.json +0 -0
  3045. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/LICENSE.txt +0 -0
  3046. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/README.md +0 -0
  3047. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL-impl.js +0 -0
  3048. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/URL.js +0 -0
  3049. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/public-api.js +0 -0
  3050. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/url-state-machine.js +0 -0
  3051. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/lib/utils.js +0 -0
  3052. /package/node_modules/{whatwg-url → @start9labs/start-core/node_modules/whatwg-url}/package.json +0 -0
  3053. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/LICENSE +0 -0
  3054. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/README.md +0 -0
  3055. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/bin.mjs +0 -0
  3056. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-collection.js +0 -0
  3057. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-doc.js +0 -0
  3058. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-node.js +0 -0
  3059. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/compose-scalar.js +0 -0
  3060. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/composer.js +0 -0
  3061. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-map.js +0 -0
  3062. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-scalar.js +0 -0
  3063. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-block-seq.js +0 -0
  3064. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-end.js +0 -0
  3065. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-collection.js +0 -0
  3066. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-flow-scalar.js +0 -0
  3067. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/resolve-props.js +0 -0
  3068. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-contains-newline.js +0 -0
  3069. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-empty-scalar-position.js +0 -0
  3070. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-flow-indent-check.js +0 -0
  3071. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/compose/util-map-includes.js +0 -0
  3072. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/Document.js +0 -0
  3073. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/anchors.js +0 -0
  3074. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/applyReviver.js +0 -0
  3075. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/createNode.js +0 -0
  3076. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/doc/directives.js +0 -0
  3077. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/errors.js +0 -0
  3078. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/index.js +0 -0
  3079. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/log.js +0 -0
  3080. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Alias.js +0 -0
  3081. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Collection.js +0 -0
  3082. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Node.js +0 -0
  3083. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Pair.js +0 -0
  3084. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/Scalar.js +0 -0
  3085. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLMap.js +0 -0
  3086. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/YAMLSeq.js +0 -0
  3087. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/addPairToJSMap.js +0 -0
  3088. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/identity.js +0 -0
  3089. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/nodes/toJS.js +0 -0
  3090. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-scalar.js +0 -0
  3091. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-stringify.js +0 -0
  3092. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst-visit.js +0 -0
  3093. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/cst.js +0 -0
  3094. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/lexer.js +0 -0
  3095. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/line-counter.js +0 -0
  3096. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/parse/parser.js +0 -0
  3097. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/public-api.js +0 -0
  3098. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/Schema.js +0 -0
  3099. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/map.js +0 -0
  3100. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/null.js +0 -0
  3101. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/seq.js +0 -0
  3102. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/common/string.js +0 -0
  3103. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/bool.js +0 -0
  3104. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/float.js +0 -0
  3105. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/int.js +0 -0
  3106. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/core/schema.js +0 -0
  3107. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/json/schema.js +0 -0
  3108. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/tags.js +0 -0
  3109. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/binary.js +0 -0
  3110. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/bool.js +0 -0
  3111. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/float.js +0 -0
  3112. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/int.js +0 -0
  3113. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/merge.js +0 -0
  3114. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/omap.js +0 -0
  3115. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/pairs.js +0 -0
  3116. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/schema.js +0 -0
  3117. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/set.js +0 -0
  3118. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/schema/yaml-1.1/timestamp.js +0 -0
  3119. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/foldFlowLines.js +0 -0
  3120. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringify.js +0 -0
  3121. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyCollection.js +0 -0
  3122. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyComment.js +0 -0
  3123. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyDocument.js +0 -0
  3124. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyNumber.js +0 -0
  3125. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyPair.js +0 -0
  3126. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/stringify/stringifyString.js +0 -0
  3127. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/util.js +0 -0
  3128. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/dist/visit.js +0 -0
  3129. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/index.js +0 -0
  3130. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/browser/package.json +0 -0
  3131. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.d.ts +0 -0
  3132. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/cli.mjs +0 -0
  3133. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.d.ts +0 -0
  3134. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-collection.js +0 -0
  3135. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.d.ts +0 -0
  3136. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-doc.js +0 -0
  3137. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.d.ts +0 -0
  3138. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-node.js +0 -0
  3139. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.d.ts +0 -0
  3140. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/compose-scalar.js +0 -0
  3141. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.d.ts +0 -0
  3142. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/composer.js +0 -0
  3143. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.d.ts +0 -0
  3144. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-map.js +0 -0
  3145. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.d.ts +0 -0
  3146. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-scalar.js +0 -0
  3147. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.d.ts +0 -0
  3148. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-block-seq.js +0 -0
  3149. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.d.ts +0 -0
  3150. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-end.js +0 -0
  3151. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.d.ts +0 -0
  3152. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-collection.js +0 -0
  3153. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.d.ts +0 -0
  3154. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-flow-scalar.js +0 -0
  3155. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.d.ts +0 -0
  3156. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/resolve-props.js +0 -0
  3157. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.d.ts +0 -0
  3158. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-contains-newline.js +0 -0
  3159. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.d.ts +0 -0
  3160. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-empty-scalar-position.js +0 -0
  3161. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.d.ts +0 -0
  3162. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-flow-indent-check.js +0 -0
  3163. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.d.ts +0 -0
  3164. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/compose/util-map-includes.js +0 -0
  3165. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.d.ts +0 -0
  3166. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/Document.js +0 -0
  3167. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.d.ts +0 -0
  3168. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/anchors.js +0 -0
  3169. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.d.ts +0 -0
  3170. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/applyReviver.js +0 -0
  3171. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.d.ts +0 -0
  3172. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/createNode.js +0 -0
  3173. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.d.ts +0 -0
  3174. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/doc/directives.js +0 -0
  3175. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.d.ts +0 -0
  3176. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/errors.js +0 -0
  3177. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.d.ts +0 -0
  3178. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/index.js +0 -0
  3179. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.d.ts +0 -0
  3180. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/log.js +0 -0
  3181. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.d.ts +0 -0
  3182. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Alias.js +0 -0
  3183. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.d.ts +0 -0
  3184. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Collection.js +0 -0
  3185. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.d.ts +0 -0
  3186. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Node.js +0 -0
  3187. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.d.ts +0 -0
  3188. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Pair.js +0 -0
  3189. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.d.ts +0 -0
  3190. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/Scalar.js +0 -0
  3191. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.d.ts +0 -0
  3192. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLMap.js +0 -0
  3193. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.d.ts +0 -0
  3194. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/YAMLSeq.js +0 -0
  3195. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.d.ts +0 -0
  3196. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/addPairToJSMap.js +0 -0
  3197. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.d.ts +0 -0
  3198. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/identity.js +0 -0
  3199. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.d.ts +0 -0
  3200. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/nodes/toJS.js +0 -0
  3201. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/options.d.ts +0 -0
  3202. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.d.ts +0 -0
  3203. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-scalar.js +0 -0
  3204. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.d.ts +0 -0
  3205. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-stringify.js +0 -0
  3206. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.d.ts +0 -0
  3207. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst-visit.js +0 -0
  3208. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.d.ts +0 -0
  3209. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/cst.js +0 -0
  3210. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.d.ts +0 -0
  3211. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/lexer.js +0 -0
  3212. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.d.ts +0 -0
  3213. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/line-counter.js +0 -0
  3214. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.d.ts +0 -0
  3215. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/parse/parser.js +0 -0
  3216. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.d.ts +0 -0
  3217. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/public-api.js +0 -0
  3218. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.d.ts +0 -0
  3219. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/Schema.js +0 -0
  3220. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.d.ts +0 -0
  3221. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/map.js +0 -0
  3222. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.d.ts +0 -0
  3223. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/null.js +0 -0
  3224. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.d.ts +0 -0
  3225. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/seq.js +0 -0
  3226. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.d.ts +0 -0
  3227. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/common/string.js +0 -0
  3228. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.d.ts +0 -0
  3229. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/bool.js +0 -0
  3230. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.d.ts +0 -0
  3231. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/float.js +0 -0
  3232. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.d.ts +0 -0
  3233. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/int.js +0 -0
  3234. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.d.ts +0 -0
  3235. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/core/schema.js +0 -0
  3236. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.d.ts +0 -0
  3237. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json/schema.js +0 -0
  3238. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/json-schema.d.ts +0 -0
  3239. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.d.ts +0 -0
  3240. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/tags.js +0 -0
  3241. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/types.d.ts +0 -0
  3242. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.d.ts +0 -0
  3243. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/binary.js +0 -0
  3244. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.d.ts +0 -0
  3245. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/bool.js +0 -0
  3246. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.d.ts +0 -0
  3247. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/float.js +0 -0
  3248. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.d.ts +0 -0
  3249. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/int.js +0 -0
  3250. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.d.ts +0 -0
  3251. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/merge.js +0 -0
  3252. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.d.ts +0 -0
  3253. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/omap.js +0 -0
  3254. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.d.ts +0 -0
  3255. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/pairs.js +0 -0
  3256. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.d.ts +0 -0
  3257. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/schema.js +0 -0
  3258. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.d.ts +0 -0
  3259. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/set.js +0 -0
  3260. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.d.ts +0 -0
  3261. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/schema/yaml-1.1/timestamp.js +0 -0
  3262. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.d.ts +0 -0
  3263. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/foldFlowLines.js +0 -0
  3264. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.d.ts +0 -0
  3265. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringify.js +0 -0
  3266. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.d.ts +0 -0
  3267. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyCollection.js +0 -0
  3268. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.d.ts +0 -0
  3269. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyComment.js +0 -0
  3270. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.d.ts +0 -0
  3271. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyDocument.js +0 -0
  3272. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.d.ts +0 -0
  3273. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyNumber.js +0 -0
  3274. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.d.ts +0 -0
  3275. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyPair.js +0 -0
  3276. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.d.ts +0 -0
  3277. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/stringify/stringifyString.js +0 -0
  3278. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.d.ts +0 -0
  3279. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/test-events.js +0 -0
  3280. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.d.ts +0 -0
  3281. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/util.js +0 -0
  3282. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.d.ts +0 -0
  3283. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/dist/visit.js +0 -0
  3284. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/package.json +0 -0
  3285. /package/node_modules/{yaml → @start9labs/start-core/node_modules/yaml}/util.js +0 -0
  3286. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/LICENSE +0 -0
  3287. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/README.md +0 -0
  3288. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.d.ts +0 -0
  3289. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js +0 -0
  3290. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/index.js.map +0 -0
  3291. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.d.ts +0 -0
  3292. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js +0 -0
  3293. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/dist/types.js.map +0 -0
  3294. /package/node_modules/{zod-deep-partial → @start9labs/start-core/node_modules/zod-deep-partial}/package.json +0 -0
@@ -0,0 +1,3053 @@
1
+ import ts from 'typescript';
2
+
3
+ /**
4
+ * Descriptive data for a comment as yielded by {@link iterateComments}.
5
+ */
6
+ type Comment = ts.CommentRange & {
7
+ text: string;
8
+ value: string;
9
+ };
10
+ /**
11
+ * Callback type used for {@link forEachComment}.
12
+ * @category Callbacks
13
+ * @param fullText Full parsed text of the comment.
14
+ * @param comment Text range of the comment in its file.
15
+ * @example
16
+ * ```ts
17
+ * let onComment: ForEachCommentCallback = (fullText, comment) => {
18
+ * console.log(`Found comment at position ${comment.pos}: '${fullText}'.`);
19
+ * };
20
+ * ```
21
+ */
22
+ type ForEachCommentCallback = (fullText: string, comment: ts.CommentRange) => void;
23
+ /**
24
+ * Iterates over all comments owned by `node` or its children.
25
+ * @category Nodes - Other Utilities
26
+ * @example
27
+ * ```ts
28
+ * declare const node: ts.Node;
29
+ *
30
+ * forEachComment(node, (fullText, comment) => {
31
+ * console.log(`Found comment at position ${comment.pos}: '${fullText}'.`);
32
+ * });
33
+ * ```
34
+ */
35
+ declare function forEachComment(node: ts.Node, callback: ForEachCommentCallback, sourceFile?: ts.SourceFile): void;
36
+ /**
37
+ * Iterates over all comments owned by `node` or its children.
38
+ * @category Nodes - Other Utilities
39
+ * @example
40
+ * ```ts
41
+ * declare const node: ts.Node;
42
+ *
43
+ * for (const {pos, text} of iterateComment(node) {
44
+ * console.log(`Found comment at position ${pos}: '${text}'.`);
45
+ * };
46
+ * ```
47
+ */
48
+ declare function iterateComments(node: ts.Node, sourceFile?: ts.SourceFile): Generator<Comment>;
49
+
50
+ /**
51
+ * An option that can be tested with {@link isCompilerOptionEnabled}.
52
+ * @category Compiler Options
53
+ */
54
+ type BooleanCompilerOptions = keyof {
55
+ [K in keyof ts.CompilerOptions as NonNullable<ts.CompilerOptions[K]> extends boolean ? K : never]: unknown;
56
+ };
57
+ /**
58
+ * An option that can be tested with {@link isStrictCompilerOptionEnabled}.
59
+ * @category Compiler Options
60
+ */
61
+ type StrictCompilerOption = "alwaysStrict" | "noImplicitAny" | "noImplicitThis" | "strictBindCallApply" | "strictFunctionTypes" | "strictNullChecks" | "strictPropertyInitialization";
62
+ /**
63
+ * Checks if a given compiler option is enabled.
64
+ * It handles dependencies of options, e.g. `declaration` is implicitly enabled by `composite` or `strictNullChecks` is enabled by `strict`.
65
+ * However, it does not check dependencies that are already checked and reported as errors, e.g. `checkJs` without `allowJs`.
66
+ * This function only handles boolean flags.
67
+ * @category Compiler Options
68
+ * @example
69
+ * ```ts
70
+ * const options = {
71
+ * allowJs: true,
72
+ * };
73
+ *
74
+ * isCompilerOptionEnabled(options, "allowJs"); // true
75
+ * isCompilerOptionEnabled(options, "allowSyntheticDefaultImports"); // false
76
+ * ```
77
+ */
78
+ declare function isCompilerOptionEnabled(options: ts.CompilerOptions, option: BooleanCompilerOptions): boolean;
79
+ /**
80
+ * Checks if a given compiler option is enabled, accounting for whether all flags
81
+ * (except `strictPropertyInitialization`) have been enabled by `strict: true`.
82
+ * @category Compiler Options
83
+ * @example
84
+ * ```ts
85
+ * const optionsLenient = {
86
+ * noImplicitAny: true,
87
+ * };
88
+ *
89
+ * isStrictCompilerOptionEnabled(optionsLenient, "noImplicitAny"); // true
90
+ * isStrictCompilerOptionEnabled(optionsLenient, "noImplicitThis"); // false
91
+ * ```
92
+ * @example
93
+ * ```ts
94
+ * const optionsStrict = {
95
+ * noImplicitThis: false,
96
+ * strict: true,
97
+ * };
98
+ *
99
+ * isStrictCompilerOptionEnabled(optionsStrict, "noImplicitAny"); // true
100
+ * isStrictCompilerOptionEnabled(optionsStrict, "noImplicitThis"); // false
101
+ * ```
102
+ */
103
+ declare function isStrictCompilerOptionEnabled(options: ts.CompilerOptions, option: StrictCompilerOption): boolean;
104
+
105
+ /**
106
+ * Test if the given node has the given `ModifierFlags` set.
107
+ * @category Nodes - Flag Utilities
108
+ * @example
109
+ * ```ts
110
+ * declare const node: ts.Node;
111
+ *
112
+ * if (isModifierFlagSet(node, ts.ModifierFlags.Abstract)) {
113
+ * // ...
114
+ * }
115
+ * ```
116
+ */
117
+ declare function isModifierFlagSet(node: ts.Declaration, flag: ts.ModifierFlags): boolean;
118
+ /**
119
+ * Test if the given node has the given `NodeFlags` set.
120
+ * @category Nodes - Flag Utilities
121
+ * @example
122
+ * ```ts
123
+ * declare const node: ts.Node;
124
+ *
125
+ * if (isNodeFlagSet(node, ts.NodeFlags.AwaitContext)) {
126
+ * // ...
127
+ * }
128
+ * ```
129
+ */
130
+ declare const isNodeFlagSet: (node: ts.Node, flag: ts.NodeFlags) => boolean;
131
+ /**
132
+ * Test if the given node has the given `ObjectFlags` set.
133
+ * @category Nodes - Flag Utilities
134
+ * @example
135
+ * ```ts
136
+ * declare const node: ts.Node;
137
+ *
138
+ * if (isObjectFlagSet(node, ts.ObjectFlags.Anonymous)) {
139
+ * // ...
140
+ * }
141
+ * ```
142
+ */
143
+ declare function isObjectFlagSet(objectType: ts.ObjectType, flag: ts.ObjectFlags): boolean;
144
+ /**
145
+ * Test if the given node has the given `SymbolFlags` set.
146
+ * @category Nodes - Flag Utilities
147
+ * @example
148
+ * ```ts
149
+ * declare const symbol: ts.Symbol;
150
+ *
151
+ * if (isSymbolFlagSet(symbol, ts.SymbolFlags.Accessor)) {
152
+ * // ...
153
+ * }
154
+ * ```
155
+ */
156
+ declare const isSymbolFlagSet: (symbol: ts.Symbol, flag: ts.SymbolFlags) => boolean;
157
+ /**
158
+ * Test if the given node has the given `TypeFlags` set.
159
+ * @category Nodes - Flag Utilities
160
+ * @example
161
+ * ```ts
162
+ * declare const type: ts.Type;
163
+ *
164
+ * if (isTypeFlagSet(type, ts.TypeFlags.Any)) {
165
+ * // ...
166
+ * }
167
+ * ```
168
+ */
169
+ declare const isTypeFlagSet: (type: ts.Type, flag: ts.TypeFlags) => boolean;
170
+
171
+ /**
172
+ * Test if the given iterable includes a modifier of any of the given kinds.
173
+ * @category Modifier Utilities
174
+ * @example
175
+ * ```ts
176
+ * declare const modifiers: ts.Modifier[];
177
+ *
178
+ * includesModifier(modifiers, ts.SyntaxKind.AbstractKeyword);
179
+ * ```
180
+ */
181
+ declare function includesModifier(modifiers: Iterable<ts.ModifierLike> | undefined, ...kinds: ts.ModifierSyntaxKind[]): boolean;
182
+
183
+ /**
184
+ * What operations(s), if any, an expression applies.
185
+ */
186
+ declare enum AccessKind {
187
+ None = 0,
188
+ Read = 1,
189
+ Write = 2,
190
+ Delete = 4,
191
+ ReadWrite = 3
192
+ }
193
+ /**
194
+ * Determines which operation(s), if any, an expression applies.
195
+ * @example
196
+ * ```ts
197
+ * declare const node: ts.Expression;
198
+ *
199
+ * if (getAccessKind(node).Write & AccessKind.Write) !== 0) {
200
+ * // this is a reassignment (write)
201
+ * }
202
+ * ```
203
+ */
204
+ declare function getAccessKind(node: ts.Expression): AccessKind;
205
+
206
+ /**
207
+ * An `AssertionExpression` that is declared as const.
208
+ * @category Node Types
209
+ */
210
+ type ConstAssertionExpression = ts.AssertionExpression & {
211
+ type: ts.TypeReferenceNode;
212
+ typeName: ConstAssertionIdentifier;
213
+ };
214
+ /**
215
+ * An `Identifier` with an `escapedText` value of `"const"`.
216
+ * @category Node Types
217
+ */
218
+ type ConstAssertionIdentifier = ts.Identifier & {
219
+ escapedText: "const" & ts.__String;
220
+ };
221
+ /**
222
+ * a `NamedDeclaration` that definitely has a name.
223
+ * @category Node Types
224
+ */
225
+ interface NamedDeclarationWithName extends ts.NamedDeclaration {
226
+ name: ts.DeclarationName;
227
+ }
228
+ /**
229
+ * A number or string-like literal.
230
+ * @category Node Types
231
+ */
232
+ type NumericOrStringLikeLiteral = ts.NumericLiteral | ts.StringLiteralLike;
233
+ /**
234
+ * Test if a node is a {@link ConstAssertionExpression}.
235
+ * @category Nodes - Type Guards
236
+ * @example
237
+ * ```ts
238
+ * declare const node: ts.Node;
239
+ *
240
+ * if (isConstAssertionExpression(node)) {
241
+ * // ...
242
+ * }
243
+ * ```
244
+ * @returns Whether the given node appears to be a {@link ConstAssertionExpression}.
245
+ */
246
+ declare function isConstAssertionExpression(node: ts.AssertionExpression): node is ConstAssertionExpression;
247
+ /**
248
+ * Test if a node is an `IterationStatement`.
249
+ * @category Nodes - Type Guards
250
+ * @example
251
+ * ```ts
252
+ * declare const node: ts.Node;
253
+ *
254
+ * if (isIterationStatement(node)) {
255
+ * // ...
256
+ * }
257
+ * ```
258
+ * @returns Whether the given node appears to be an `IterationStatement`.
259
+ */
260
+ declare function isIterationStatement(node: ts.Node): node is ts.IterationStatement;
261
+ /**
262
+ * Test if a node is a `JSDocNamespaceDeclaration`.
263
+ * @category Nodes - Type Guards
264
+ * @example
265
+ * ```ts
266
+ * declare const node: ts.Node;
267
+ *
268
+ * if (isJSDocNamespaceDeclaration(node)) {
269
+ * // ...
270
+ * }
271
+ * ```
272
+ * @returns Whether the given node appears to be a `JSDocNamespaceDeclaration`.
273
+ */
274
+ declare function isJSDocNamespaceDeclaration(node: ts.Node): node is ts.JSDocNamespaceDeclaration;
275
+ /**
276
+ * Test if a node is a `JsxTagNamePropertyAccess`.
277
+ * @category Nodes - Type Guards
278
+ * @example
279
+ * ```ts
280
+ * declare const node: ts.Node;
281
+ *
282
+ * if (isJsxTagNamePropertyAccess(node)) {
283
+ * // ...
284
+ * }
285
+ * ```
286
+ * @returns Whether the given node appears to be a `JsxTagNamePropertyAccess`.
287
+ */
288
+ declare function isJsxTagNamePropertyAccess(node: ts.Node): node is ts.JsxTagNamePropertyAccess;
289
+ /**
290
+ * Test if a node is a {@link NamedDeclarationWithName}.
291
+ * @category Nodes - Type Guards
292
+ * @example
293
+ * ```ts
294
+ * declare const node: ts.Node;
295
+ *
296
+ * if (isNamedDeclarationWithName(node)) {
297
+ * // ...
298
+ * }
299
+ * ```
300
+ * @returns Whether the given node appears to be a {@link NamedDeclarationWithName}.
301
+ */
302
+ declare function isNamedDeclarationWithName(node: ts.Declaration): node is NamedDeclarationWithName;
303
+ /**
304
+ * Test if a node is a `NamespaceDeclaration`.
305
+ * @category Nodes - Type Guards
306
+ * @example
307
+ * ```ts
308
+ * declare const node: ts.Node;
309
+ *
310
+ * if (isNamespaceDeclaration(node)) {
311
+ * // ...
312
+ * }
313
+ * ```
314
+ * @returns Whether the given node appears to be a `NamespaceDeclaration`.
315
+ */
316
+ declare function isNamespaceDeclaration(node: ts.Node): node is ts.NamespaceDeclaration;
317
+ /**
318
+ * Test if a node is a {@link NumericOrStringLikeLiteral}.
319
+ * @category Nodes - Type Guards
320
+ * @example
321
+ * ```ts
322
+ * declare const node: ts.Node;
323
+ *
324
+ * if (isNumericOrStringLikeLiteral(node)) {
325
+ * // ...
326
+ * }
327
+ * ```
328
+ * @returns Whether the given node appears to be a {@link NumericOrStringLikeLiteral}.
329
+ */
330
+ declare function isNumericOrStringLikeLiteral(node: ts.Node): node is NumericOrStringLikeLiteral;
331
+ /**
332
+ * Test if a node is a `PropertyAccessEntityNameExpression`.
333
+ * @category Nodes - Type Guards
334
+ * @example
335
+ * ```ts
336
+ * declare const node: ts.Node;
337
+ *
338
+ * if (isPropertyAccessEntityNameExpression(node)) {
339
+ * // ...
340
+ * }
341
+ * ```
342
+ * @returns Whether the given node appears to be a `PropertyAccessEntityNameExpression`.
343
+ */
344
+ declare function isPropertyAccessEntityNameExpression(node: ts.Node): node is ts.PropertyAccessEntityNameExpression;
345
+ /**
346
+ * Test if a node is a `SuperElementAccessExpression`.
347
+ * @category Nodes - Type Guards
348
+ * @example
349
+ * ```ts
350
+ * declare const node: ts.Node;
351
+ *
352
+ * if (isSuperElementAccessExpression(node)) {
353
+ * // ...
354
+ * }
355
+ * ```
356
+ * @returns Whether the given node appears to be a `SuperElementAccessExpression`.
357
+ */
358
+ declare function isSuperElementAccessExpression(node: ts.Node): node is ts.SuperElementAccessExpression;
359
+ /**
360
+ * Test if a node is a `SuperPropertyAccessExpression`.
361
+ * @category Nodes - Type Guards
362
+ * @example
363
+ * ```ts
364
+ * declare const node: ts.Node;
365
+ *
366
+ * if (isSuperPropertyAccessExpression(node)) {
367
+ * // ...
368
+ * }
369
+ * ```
370
+ * @returns Whether the given node appears to be a `SuperPropertyAccessExpression`.
371
+ */
372
+ declare function isSuperPropertyAccessExpression(node: ts.Node): node is ts.SuperPropertyAccessExpression;
373
+
374
+ /**
375
+ * A node that represents the any keyword.
376
+ * @category Node Types
377
+ */
378
+ type AnyKeyword = ts.KeywordToken<ts.SyntaxKind.AnyKeyword>;
379
+ /**
380
+ * A node that represents the bigint keyword.
381
+ * @category Node Types
382
+ */
383
+ type BigIntKeyword = ts.KeywordToken<ts.SyntaxKind.BigIntKeyword>;
384
+ /**
385
+ * A node that represents the boolean keyword.
386
+ * @category Node Types
387
+ */
388
+ type BooleanKeyword = ts.KeywordToken<ts.SyntaxKind.BooleanKeyword>;
389
+ /**
390
+ * A node that represents the false keyword.
391
+ * @category Node Types
392
+ */
393
+ type FalseKeyword = ts.KeywordToken<ts.SyntaxKind.FalseKeyword>;
394
+ /**
395
+ * A node that represents the import keyword.
396
+ * @category Node Types
397
+ */
398
+ type ImportKeyword = ts.KeywordToken<ts.SyntaxKind.ImportKeyword>;
399
+ /**
400
+ * A node that represents the never keyword.
401
+ * @category Node Types
402
+ */
403
+ type NeverKeyword = ts.KeywordToken<ts.SyntaxKind.NeverKeyword>;
404
+ /**
405
+ * A node that represents the null keyword.
406
+ * @category Node Types
407
+ */
408
+ type NullKeyword = ts.KeywordToken<ts.SyntaxKind.NullKeyword>;
409
+ /**
410
+ * A node that represents the number keyword.
411
+ * @category Node Types
412
+ */
413
+ type NumberKeyword = ts.KeywordToken<ts.SyntaxKind.NumberKeyword>;
414
+ /**
415
+ * A node that represents the object keyword.
416
+ * @category Node Types
417
+ */
418
+ type ObjectKeyword = ts.KeywordToken<ts.SyntaxKind.ObjectKeyword>;
419
+ /**
420
+ * A node that represents the string keyword.
421
+ * @category Node Types
422
+ */
423
+ type StringKeyword = ts.KeywordToken<ts.SyntaxKind.StringKeyword>;
424
+ /**
425
+ * A node that represents the super keyword.
426
+ * @category Node Types
427
+ */
428
+ type SuperKeyword = ts.KeywordToken<ts.SyntaxKind.SuperKeyword>;
429
+ /**
430
+ * A node that represents the symbol keyword.
431
+ * @category Node Types
432
+ */
433
+ type SymbolKeyword = ts.KeywordToken<ts.SyntaxKind.SymbolKeyword>;
434
+ /**
435
+ * A node that represents the this keyword.
436
+ * @category Node Types
437
+ */
438
+ type ThisKeyword = ts.KeywordToken<ts.SyntaxKind.ThisKeyword>;
439
+ /**
440
+ * A node that represents the true keyword.
441
+ * @category Node Types
442
+ */
443
+ type TrueKeyword = ts.KeywordToken<ts.SyntaxKind.TrueKeyword>;
444
+ /**
445
+ * A node that represents the undefined keyword.
446
+ * @category Node Types
447
+ */
448
+ type UndefinedKeyword = ts.KeywordToken<ts.SyntaxKind.UndefinedKeyword>;
449
+ /**
450
+ * A node that represents the unknown keyword.
451
+ * @category Node Types
452
+ */
453
+ type UnknownKeyword = ts.KeywordToken<ts.SyntaxKind.UnknownKeyword>;
454
+ /**
455
+ * A node that represents the void keyword.
456
+ * @category Node Types
457
+ */
458
+ type VoidKeyword = ts.KeywordToken<ts.SyntaxKind.VoidKeyword>;
459
+ /**
460
+ * Test if a node is an `AbstractKeyword`.
461
+ * @category Nodes - Type Guards
462
+ * @example
463
+ * ```ts
464
+ * declare const node: ts.Node;
465
+ *
466
+ * if (isAbstractKeyword(node)) {
467
+ * // ...
468
+ * }
469
+ * ```
470
+ * @returns Whether the given node appears to be an `AbstractKeyword`.
471
+ */
472
+ declare function isAbstractKeyword(node: ts.Node): node is ts.AbstractKeyword;
473
+ /**
474
+ * Test if a node is an `AccessorKeyword`.
475
+ * @category Nodes - Type Guards
476
+ * @example
477
+ * ```ts
478
+ * declare const node: ts.Node;
479
+ *
480
+ * if (isAccessorKeyword(node)) {
481
+ * // ...
482
+ * }
483
+ * ```
484
+ * @returns Whether the given node appears to be an `AccessorKeyword`.
485
+ */
486
+ declare function isAccessorKeyword(node: ts.Node): node is ts.AccessorKeyword;
487
+ /**
488
+ * Test if a node is an {@link AnyKeyword}.
489
+ * @category Nodes - Type Guards
490
+ * @example
491
+ * ```ts
492
+ * declare const node: ts.Node;
493
+ *
494
+ * if (isAnyKeyword(node)) {
495
+ * // ...
496
+ * }
497
+ * ```
498
+ * @returns Whether the given node appears to be an {@link AnyKeyword}.
499
+ */
500
+ declare function isAnyKeyword(node: ts.Node): node is AnyKeyword;
501
+ /**
502
+ * Test if a node is an `AssertKeyword`.
503
+ * @category Nodes - Type Guards
504
+ * @example
505
+ * ```ts
506
+ * declare const node: ts.Node;
507
+ *
508
+ * if (isAssertKeyword(node)) {
509
+ * // ...
510
+ * }
511
+ * ```
512
+ * @returns Whether the given node appears to be an `AssertKeyword`.
513
+ */
514
+ declare function isAssertKeyword(node: ts.Node): node is ts.AssertKeyword;
515
+ /**
516
+ * Test if a node is an `AssertsKeyword`.
517
+ * @deprecated With TypeScript v5, in favor of typescript's `isAssertsKeyword`.
518
+ * @category Nodes - Type Guards
519
+ * @example
520
+ * ```ts
521
+ * declare const node: ts.Node;
522
+ *
523
+ * if (isAssertsKeyword(node)) {
524
+ * // ...
525
+ * }
526
+ * ```
527
+ * @returns Whether the given node appears to be an `AssertsKeyword`.
528
+ */
529
+ declare function isAssertsKeyword(node: ts.Node): node is ts.AssertsKeyword;
530
+ /**
531
+ * Test if a node is an `AsyncKeyword`.
532
+ * @category Nodes - Type Guards
533
+ * @example
534
+ * ```ts
535
+ * declare const node: ts.Node;
536
+ *
537
+ * if (isAsyncKeyword(node)) {
538
+ * // ...
539
+ * }
540
+ * ```
541
+ * @returns Whether the given node appears to be an `AsyncKeyword`.
542
+ */
543
+ declare function isAsyncKeyword(node: ts.Node): node is ts.AsyncKeyword;
544
+ /**
545
+ * Test if a node is an `AwaitKeyword`.
546
+ * @deprecated With TypeScript v5, in favor of typescript's `isAwaitKeyword`.
547
+ * @category Nodes - Type Guards
548
+ * @example
549
+ * ```ts
550
+ * declare const node: ts.Node;
551
+ *
552
+ * if (isAwaitKeyword(node)) {
553
+ * // ...
554
+ * }
555
+ * ```
556
+ * @returns Whether the given node appears to be an `AwaitKeyword`.
557
+ */
558
+ declare function isAwaitKeyword(node: ts.Node): node is ts.AwaitKeyword;
559
+ /**
560
+ * Test if a node is a {@link BigIntKeyword}.
561
+ * @deprecated With TypeScript v5, in favor of typescript's `isBigIntKeyword`.
562
+ * @category Nodes - Type Guards
563
+ * @example
564
+ * ```ts
565
+ * declare const node: ts.Node;
566
+ *
567
+ * if (isBigIntKeyword(node)) {
568
+ * // ...
569
+ * }
570
+ * ```
571
+ * @returns Whether the given node appears to be a {@link BigIntKeyword}.
572
+ */
573
+ declare function isBigIntKeyword(node: ts.Node): node is BigIntKeyword;
574
+ /**
575
+ * Test if a node is a {@link BooleanKeyword}.
576
+ * @deprecated With TypeScript v5, in favor of typescript's `isBooleanKeyword`.
577
+ * @category Nodes - Type Guards
578
+ * @example
579
+ * ```ts
580
+ * declare const node: ts.Node;
581
+ *
582
+ * if (isBooleanKeyword(node)) {
583
+ * // ...
584
+ * }
585
+ * ```
586
+ * @returns Whether the given node appears to be a {@link BooleanKeyword}.
587
+ */
588
+ declare function isBooleanKeyword(node: ts.Node): node is BooleanKeyword;
589
+ /**
590
+ * Test if a node is a `ColonToken`.
591
+ * @deprecated With TypeScript v5, in favor of typescript's `isColonToken`.
592
+ * @category Nodes - Type Guards
593
+ * @example
594
+ * ```ts
595
+ * declare const node: ts.Node;
596
+ *
597
+ * if (isColonToken(node)) {
598
+ * // ...
599
+ * }
600
+ * ```
601
+ * @returns Whether the given node appears to be a `ColonToken`.
602
+ */
603
+ declare function isColonToken(node: ts.Node): node is ts.ColonToken;
604
+ /**
605
+ * Test if a node is a `ConstKeyword`.
606
+ * @category Nodes - Type Guards
607
+ * @example
608
+ * ```ts
609
+ * declare const node: ts.Node;
610
+ *
611
+ * if (isConstKeyword(node)) {
612
+ * // ...
613
+ * }
614
+ * ```
615
+ * @returns Whether the given node appears to be a `ConstKeyword`.
616
+ */
617
+ declare function isConstKeyword(node: ts.Node): node is ts.ConstKeyword;
618
+ /**
619
+ * Test if a node is a `DeclareKeyword`.
620
+ * @category Nodes - Type Guards
621
+ * @example
622
+ * ```ts
623
+ * declare const node: ts.Node;
624
+ *
625
+ * if (isDeclareKeyword(node)) {
626
+ * // ...
627
+ * }
628
+ * ```
629
+ * @returns Whether the given node appears to be a `DeclareKeyword`.
630
+ */
631
+ declare function isDeclareKeyword(node: ts.Node): node is ts.DeclareKeyword;
632
+ /**
633
+ * Test if a node is a `DefaultKeyword`.
634
+ * @category Nodes - Type Guards
635
+ * @example
636
+ * ```ts
637
+ * declare const node: ts.Node;
638
+ *
639
+ * if (isDefaultKeyword(node)) {
640
+ * // ...
641
+ * }
642
+ * ```
643
+ * @returns Whether the given node appears to be a `DefaultKeyword`.
644
+ */
645
+ declare function isDefaultKeyword(node: ts.Node): node is ts.DefaultKeyword;
646
+ /**
647
+ * Test if a node is a `DotToken`.
648
+ * @category Nodes - Type Guards
649
+ * @example
650
+ * ```ts
651
+ * declare const node: ts.Node;
652
+ *
653
+ * if (isDotToken(node)) {
654
+ * // ...
655
+ * }
656
+ * ```
657
+ * @returns Whether the given node appears to be a `DotToken`.
658
+ */
659
+ declare function isDotToken(node: ts.Node): node is ts.DotToken;
660
+ /**
661
+ * Test if a node is an `EndOfFileToken`.
662
+ * @category Nodes - Type Guards
663
+ * @example
664
+ * ```ts
665
+ * declare const node: ts.Node;
666
+ *
667
+ * if (isEndOfFileToken(node)) {
668
+ * // ...
669
+ * }
670
+ * ```
671
+ * @returns Whether the given node appears to be an `EndOfFileToken`.
672
+ */
673
+ declare function isEndOfFileToken(node: ts.Node): node is ts.EndOfFileToken;
674
+ /**
675
+ * Test if a node is an `EqualsGreaterThanToken`.
676
+ * @deprecated With TypeScript v5, in favor of typescript's `isEqualsGreaterThanToken`.
677
+ * @category Nodes - Type Guards
678
+ * @example
679
+ * ```ts
680
+ * declare const node: ts.Node;
681
+ *
682
+ * if (isEqualsGreaterThanToken(node)) {
683
+ * // ...
684
+ * }
685
+ * ```
686
+ * @returns Whether the given node appears to be an `EqualsGreaterThanToken`.
687
+ */
688
+ declare function isEqualsGreaterThanToken(node: ts.Node): node is ts.EqualsGreaterThanToken;
689
+ /**
690
+ * Test if a node is an `EqualsToken`.
691
+ * @category Nodes - Type Guards
692
+ * @example
693
+ * ```ts
694
+ * declare const node: ts.Node;
695
+ *
696
+ * if (isEqualsToken(node)) {
697
+ * // ...
698
+ * }
699
+ * ```
700
+ * @returns Whether the given node appears to be an `EqualsToken`.
701
+ */
702
+ declare function isEqualsToken(node: ts.Node): node is ts.EqualsToken;
703
+ /**
704
+ * Test if a node is an `ExclamationToken`.
705
+ * @deprecated With TypeScript v5, in favor of typescript's `isExclamationToken`.
706
+ * @category Nodes - Type Guards
707
+ * @example
708
+ * ```ts
709
+ * declare const node: ts.Node;
710
+ *
711
+ * if (isExclamationToken(node)) {
712
+ * // ...
713
+ * }
714
+ * ```
715
+ * @returns Whether the given node appears to be an `ExclamationToken`.
716
+ */
717
+ declare function isExclamationToken(node: ts.Node): node is ts.ExclamationToken;
718
+ /**
719
+ * Test if a node is an `ExportKeyword`.
720
+ * @category Nodes - Type Guards
721
+ * @example
722
+ * ```ts
723
+ * declare const node: ts.Node;
724
+ *
725
+ * if (isExportKeyword(node)) {
726
+ * // ...
727
+ * }
728
+ * ```
729
+ * @returns Whether the given node appears to be an `ExportKeyword`.
730
+ */
731
+ declare function isExportKeyword(node: ts.Node): node is ts.ExportKeyword;
732
+ /**
733
+ * Test if a node is a {@link FalseKeyword}.
734
+ * @category Nodes - Type Guards
735
+ * @example
736
+ * ```ts
737
+ * declare const node: ts.Node;
738
+ *
739
+ * if (isFalseKeyword(node)) {
740
+ * // ...
741
+ * }
742
+ * ```
743
+ * @returns Whether the given node appears to be a {@link FalseKeyword}.
744
+ */
745
+ declare function isFalseKeyword(node: ts.Node): node is FalseKeyword;
746
+ /**
747
+ * Test if a node is a `FalseLiteral`.
748
+ * @category Nodes - Type Guards
749
+ * @example
750
+ * ```ts
751
+ * declare const node: ts.Node;
752
+ *
753
+ * if (isFalseLiteral(node)) {
754
+ * // ...
755
+ * }
756
+ * ```
757
+ * @returns Whether the given node appears to be a `FalseLiteral`.
758
+ */
759
+ declare function isFalseLiteral(node: ts.Node): node is ts.FalseLiteral;
760
+ /**
761
+ * Test if a node is an `ImportExpression`.
762
+ * @category Nodes - Type Guards
763
+ * @example
764
+ * ```ts
765
+ * declare const node: ts.Node;
766
+ *
767
+ * if (isImportExpression(node)) {
768
+ * // ...
769
+ * }
770
+ * ```
771
+ * @returns Whether the given node appears to be an `ImportExpression`.
772
+ */
773
+ declare function isImportExpression(node: ts.Node): node is ts.ImportExpression;
774
+ /**
775
+ * Test if a node is an {@link ImportKeyword}.
776
+ * @category Nodes - Type Guards
777
+ * @example
778
+ * ```ts
779
+ * declare const node: ts.Node;
780
+ *
781
+ * if (isImportKeyword(node)) {
782
+ * // ...
783
+ * }
784
+ * ```
785
+ * @returns Whether the given node appears to be an {@link ImportKeyword}.
786
+ */
787
+ declare function isImportKeyword(node: ts.Node): node is ImportKeyword;
788
+ /**
789
+ * Test if a node is an `InKeyword`.
790
+ * @category Nodes - Type Guards
791
+ * @example
792
+ * ```ts
793
+ * declare const node: ts.Node;
794
+ *
795
+ * if (isInKeyword(node)) {
796
+ * // ...
797
+ * }
798
+ * ```
799
+ * @returns Whether the given node appears to be an `InKeyword`.
800
+ */
801
+ declare function isInKeyword(node: ts.Node): node is ts.InKeyword;
802
+ /**
803
+ * Test if a node is a `JSDocText`.
804
+ * @category Nodes - Type Guards
805
+ * @example
806
+ * ```ts
807
+ * declare const node: ts.Node;
808
+ *
809
+ * if (isJSDocText(node)) {
810
+ * // ...
811
+ * }
812
+ * ```
813
+ * @returns Whether the given node appears to be a `JSDocText`.
814
+ */
815
+ declare function isJSDocText(node: ts.Node): node is ts.JSDocText;
816
+ /**
817
+ * Test if a node is a `JsonMinusNumericLiteral`.
818
+ * @category Nodes - Type Guards
819
+ * @example
820
+ * ```ts
821
+ * declare const node: ts.Node;
822
+ *
823
+ * if (isJsonMinusNumericLiteral(node)) {
824
+ * // ...
825
+ * }
826
+ * ```
827
+ * @returns Whether the given node appears to be a `JsonMinusNumericLiteral`.
828
+ */
829
+ declare function isJsonMinusNumericLiteral(node: ts.Node): node is ts.JsonMinusNumericLiteral;
830
+ /**
831
+ * Test if a node is a {@link NeverKeyword}.
832
+ * @category Nodes - Type Guards
833
+ * @example
834
+ * ```ts
835
+ * declare const node: ts.Node;
836
+ *
837
+ * if (isNeverKeyword(node)) {
838
+ * // ...
839
+ * }
840
+ * ```
841
+ * @returns Whether the given node appears to be a {@link NeverKeyword}.
842
+ */
843
+ declare function isNeverKeyword(node: ts.Node): node is NeverKeyword;
844
+ /**
845
+ * Test if a node is a {@link NullKeyword}.
846
+ * @category Nodes - Type Guards
847
+ * @example
848
+ * ```ts
849
+ * declare const node: ts.Node;
850
+ *
851
+ * if (isNullKeyword(node)) {
852
+ * // ...
853
+ * }
854
+ * ```
855
+ * @returns Whether the given node appears to be a {@link NullKeyword}.
856
+ */
857
+ declare function isNullKeyword(node: ts.Node): node is NullKeyword;
858
+ /**
859
+ * Test if a node is a `NullLiteral`.
860
+ * @category Nodes - Type Guards
861
+ * @example
862
+ * ```ts
863
+ * declare const node: ts.Node;
864
+ *
865
+ * if (isNullLiteral(node)) {
866
+ * // ...
867
+ * }
868
+ * ```
869
+ * @returns Whether the given node appears to be a `NullLiteral`.
870
+ */
871
+ declare function isNullLiteral(node: ts.Node): node is ts.NullLiteral;
872
+ /**
873
+ * Test if a node is a {@link NumberKeyword}.
874
+ * @category Nodes - Type Guards
875
+ * @example
876
+ * ```ts
877
+ * declare const node: ts.Node;
878
+ *
879
+ * if (isNumberKeyword(node)) {
880
+ * // ...
881
+ * }
882
+ * ```
883
+ * @returns Whether the given node appears to be a {@link NumberKeyword}.
884
+ */
885
+ declare function isNumberKeyword(node: ts.Node): node is NumberKeyword;
886
+ /**
887
+ * Test if a node is an {@link ObjectKeyword}.
888
+ * @category Nodes - Type Guards
889
+ * @example
890
+ * ```ts
891
+ * declare const node: ts.Node;
892
+ *
893
+ * if (isObjectKeyword(node)) {
894
+ * // ...
895
+ * }
896
+ * ```
897
+ * @returns Whether the given node appears to be an {@link ObjectKeyword}.
898
+ */
899
+ declare function isObjectKeyword(node: ts.Node): node is ObjectKeyword;
900
+ /**
901
+ * Test if a node is an `OutKeyword`.
902
+ * @category Nodes - Type Guards
903
+ * @example
904
+ * ```ts
905
+ * declare const node: ts.Node;
906
+ *
907
+ * if (isOutKeyword(node)) {
908
+ * // ...
909
+ * }
910
+ * ```
911
+ * @returns Whether the given node appears to be an `OutKeyword`.
912
+ */
913
+ declare function isOutKeyword(node: ts.Node): node is ts.OutKeyword;
914
+ /**
915
+ * Test if a node is an `OverrideKeyword`.
916
+ * @category Nodes - Type Guards
917
+ * @example
918
+ * ```ts
919
+ * declare const node: ts.Node;
920
+ *
921
+ * if (isOverrideKeyword(node)) {
922
+ * // ...
923
+ * }
924
+ * ```
925
+ * @returns Whether the given node appears to be an `OverrideKeyword`.
926
+ */
927
+ declare function isOverrideKeyword(node: ts.Node): node is ts.OverrideKeyword;
928
+ /**
929
+ * Test if a node is a `PrivateKeyword`.
930
+ * @category Nodes - Type Guards
931
+ * @example
932
+ * ```ts
933
+ * declare const node: ts.Node;
934
+ *
935
+ * if (isPrivateKeyword(node)) {
936
+ * // ...
937
+ * }
938
+ * ```
939
+ * @returns Whether the given node appears to be a `PrivateKeyword`.
940
+ */
941
+ declare function isPrivateKeyword(node: ts.Node): node is ts.PrivateKeyword;
942
+ /**
943
+ * Test if a node is a `ProtectedKeyword`.
944
+ * @category Nodes - Type Guards
945
+ * @example
946
+ * ```ts
947
+ * declare const node: ts.Node;
948
+ *
949
+ * if (isProtectedKeyword(node)) {
950
+ * // ...
951
+ * }
952
+ * ```
953
+ * @returns Whether the given node appears to be a `ProtectedKeyword`.
954
+ */
955
+ declare function isProtectedKeyword(node: ts.Node): node is ts.ProtectedKeyword;
956
+ /**
957
+ * Test if a node is a `PublicKeyword`.
958
+ * @category Nodes - Type Guards
959
+ * @example
960
+ * ```ts
961
+ * declare const node: ts.Node;
962
+ *
963
+ * if (isPublicKeyword(node)) {
964
+ * // ...
965
+ * }
966
+ * ```
967
+ * @returns Whether the given node appears to be a `PublicKeyword`.
968
+ */
969
+ declare function isPublicKeyword(node: ts.Node): node is ts.PublicKeyword;
970
+ /**
971
+ * Test if a node is a `QuestionDotToken`.
972
+ * @deprecated With TypeScript v5, in favor of typescript's `isQuestionDotToken`.
973
+ * @category Nodes - Type Guards
974
+ * @example
975
+ * ```ts
976
+ * declare const node: ts.Node;
977
+ *
978
+ * if (isQuestionDotToken(node)) {
979
+ * // ...
980
+ * }
981
+ * ```
982
+ * @returns Whether the given node appears to be a `QuestionDotToken`.
983
+ */
984
+ declare function isQuestionDotToken(node: ts.Node): node is ts.QuestionDotToken;
985
+ /**
986
+ * Test if a node is a `QuestionToken`.
987
+ * @deprecated With TypeScript v5, in favor of typescript's `isQuestionToken`.
988
+ * @category Nodes - Type Guards
989
+ * @example
990
+ * ```ts
991
+ * declare const node: ts.Node;
992
+ *
993
+ * if (isQuestionToken(node)) {
994
+ * // ...
995
+ * }
996
+ * ```
997
+ * @returns Whether the given node appears to be a `QuestionToken`.
998
+ */
999
+ declare function isQuestionToken(node: ts.Node): node is ts.QuestionToken;
1000
+ /**
1001
+ * Test if a node is a `ReadonlyKeyword`.
1002
+ * @category Nodes - Type Guards
1003
+ * @example
1004
+ * ```ts
1005
+ * declare const node: ts.Node;
1006
+ *
1007
+ * if (isReadonlyKeyword(node)) {
1008
+ * // ...
1009
+ * }
1010
+ * ```
1011
+ * @returns Whether the given node appears to be a `ReadonlyKeyword`.
1012
+ */
1013
+ declare function isReadonlyKeyword(node: ts.Node): node is ts.ReadonlyKeyword;
1014
+ /**
1015
+ * Test if a node is a `StaticKeyword`.
1016
+ * @category Nodes - Type Guards
1017
+ * @example
1018
+ * ```ts
1019
+ * declare const node: ts.Node;
1020
+ *
1021
+ * if (isStaticKeyword(node)) {
1022
+ * // ...
1023
+ * }
1024
+ * ```
1025
+ * @returns Whether the given node appears to be a `StaticKeyword`.
1026
+ */
1027
+ declare function isStaticKeyword(node: ts.Node): node is ts.StaticKeyword;
1028
+ /**
1029
+ * Test if a node is a {@link StringKeyword}.
1030
+ * @category Nodes - Type Guards
1031
+ * @example
1032
+ * ```ts
1033
+ * declare const node: ts.Node;
1034
+ *
1035
+ * if (isStringKeyword(node)) {
1036
+ * // ...
1037
+ * }
1038
+ * ```
1039
+ * @returns Whether the given node appears to be a {@link StringKeyword}.
1040
+ */
1041
+ declare function isStringKeyword(node: ts.Node): node is StringKeyword;
1042
+ /**
1043
+ * Test if a node is a `SuperExpression`.
1044
+ * @category Nodes - Type Guards
1045
+ * @example
1046
+ * ```ts
1047
+ * declare const node: ts.Node;
1048
+ *
1049
+ * if (isSuperExpression(node)) {
1050
+ * // ...
1051
+ * }
1052
+ * ```
1053
+ * @returns Whether the given node appears to be a `SuperExpression`.
1054
+ */
1055
+ declare function isSuperExpression(node: ts.Node): node is ts.SuperExpression;
1056
+ /**
1057
+ * Test if a node is a {@link SuperKeyword}.
1058
+ * @category Nodes - Type Guards
1059
+ * @example
1060
+ * ```ts
1061
+ * declare const node: ts.Node;
1062
+ *
1063
+ * if (isSuperKeyword(node)) {
1064
+ * // ...
1065
+ * }
1066
+ * ```
1067
+ * @returns Whether the given node appears to be a {@link SuperKeyword}.
1068
+ */
1069
+ declare function isSuperKeyword(node: ts.Node): node is SuperKeyword;
1070
+ /**
1071
+ * Test if a node is a {@link SymbolKeyword}.
1072
+ * @category Nodes - Type Guards
1073
+ * @example
1074
+ * ```ts
1075
+ * declare const node: ts.Node;
1076
+ *
1077
+ * if (isSymbolKeyword(node)) {
1078
+ * // ...
1079
+ * }
1080
+ * ```
1081
+ * @returns Whether the given node appears to be a {@link SymbolKeyword}.
1082
+ */
1083
+ declare function isSymbolKeyword(node: ts.Node): node is SymbolKeyword;
1084
+ /**
1085
+ * Test if a node is a `SyntaxList`.
1086
+ * @category Nodes - Type Guards
1087
+ * @example
1088
+ * ```ts
1089
+ * declare const node: ts.Node;
1090
+ *
1091
+ * if (isSyntaxList(node)) {
1092
+ * // ...
1093
+ * }
1094
+ * ```
1095
+ * @returns Whether the given node appears to be a `SyntaxList`.
1096
+ */
1097
+ declare function isSyntaxList(node: ts.Node): node is ts.SyntaxList;
1098
+ /**
1099
+ * Test if a node is a `ThisExpression`.
1100
+ * @category Nodes - Type Guards
1101
+ * @example
1102
+ * ```ts
1103
+ * declare const node: ts.Node;
1104
+ *
1105
+ * if (isThisExpression(node)) {
1106
+ * // ...
1107
+ * }
1108
+ * ```
1109
+ * @returns Whether the given node appears to be a `ThisExpression`.
1110
+ */
1111
+ declare function isThisExpression(node: ts.Node): node is ts.ThisExpression;
1112
+ /**
1113
+ * Test if a node is a {@link ThisKeyword}.
1114
+ * @category Nodes - Type Guards
1115
+ * @example
1116
+ * ```ts
1117
+ * declare const node: ts.Node;
1118
+ *
1119
+ * if (isThisKeyword(node)) {
1120
+ * // ...
1121
+ * }
1122
+ * ```
1123
+ * @returns Whether the given node appears to be a {@link ThisKeyword}.
1124
+ */
1125
+ declare function isThisKeyword(node: ts.Node): node is ThisKeyword;
1126
+ /**
1127
+ * Test if a node is a {@link TrueKeyword}.
1128
+ * @category Nodes - Type Guards
1129
+ * @example
1130
+ * ```ts
1131
+ * declare const node: ts.Node;
1132
+ *
1133
+ * if (isTrueKeyword(node)) {
1134
+ * // ...
1135
+ * }
1136
+ * ```
1137
+ * @returns Whether the given node appears to be a {@link TrueKeyword}.
1138
+ */
1139
+ declare function isTrueKeyword(node: ts.Node): node is TrueKeyword;
1140
+ /**
1141
+ * Test if a node is a `TrueLiteral`.
1142
+ * @category Nodes - Type Guards
1143
+ * @example
1144
+ * ```ts
1145
+ * declare const node: ts.Node;
1146
+ *
1147
+ * if (isTrueLiteral(node)) {
1148
+ * // ...
1149
+ * }
1150
+ * ```
1151
+ * @returns Whether the given node appears to be a `TrueLiteral`.
1152
+ */
1153
+ declare function isTrueLiteral(node: ts.Node): node is ts.TrueLiteral;
1154
+ /**
1155
+ * Test if a node is an {@link UndefinedKeyword}.
1156
+ * @category Nodes - Type Guards
1157
+ * @example
1158
+ * ```ts
1159
+ * declare const node: ts.Node;
1160
+ *
1161
+ * if (isUndefinedKeyword(node)) {
1162
+ * // ...
1163
+ * }
1164
+ * ```
1165
+ * @returns Whether the given node appears to be an {@link UndefinedKeyword}.
1166
+ */
1167
+ declare function isUndefinedKeyword(node: ts.Node): node is UndefinedKeyword;
1168
+ /**
1169
+ * Test if a node is an {@link UnknownKeyword}.
1170
+ * @category Nodes - Type Guards
1171
+ * @example
1172
+ * ```ts
1173
+ * declare const node: ts.Node;
1174
+ *
1175
+ * if (isUnknownKeyword(node)) {
1176
+ * // ...
1177
+ * }
1178
+ * ```
1179
+ * @returns Whether the given node appears to be an {@link UnknownKeyword}.
1180
+ */
1181
+ declare function isUnknownKeyword(node: ts.Node): node is UnknownKeyword;
1182
+ /**
1183
+ * Test if a node is a {@link VoidKeyword}.
1184
+ * @category Nodes - Type Guards
1185
+ * @example
1186
+ * ```ts
1187
+ * declare const node: ts.Node;
1188
+ *
1189
+ * if (isVoidKeyword(node)) {
1190
+ * // ...
1191
+ * }
1192
+ * ```
1193
+ * @returns Whether the given node appears to be a {@link VoidKeyword}.
1194
+ */
1195
+ declare function isVoidKeyword(node: ts.Node): node is VoidKeyword;
1196
+
1197
+ /**
1198
+ * Test if a node is a `HasDecorators`.
1199
+ * @category Nodes - Type Guards
1200
+ * @example
1201
+ * ```ts
1202
+ * declare const node: ts.Node;
1203
+ *
1204
+ * if (hasDecorators(node)) {
1205
+ * // ...
1206
+ * }
1207
+ * ```
1208
+ * @returns Whether the given node appears to be a `HasDecorators`.
1209
+ */
1210
+ declare function hasDecorators(node: ts.Node): node is ts.HasDecorators;
1211
+ /**
1212
+ * Test if a node is a `HasExpressionInitializer`.
1213
+ * @category Nodes - Type Guards
1214
+ * @example
1215
+ * ```ts
1216
+ * declare const node: ts.Node;
1217
+ *
1218
+ * if (hasExpressionInitializer(node)) {
1219
+ * // ...
1220
+ * }
1221
+ * ```
1222
+ * @returns Whether the given node appears to be a `HasExpressionInitializer`.
1223
+ */
1224
+ declare function hasExpressionInitializer(node: ts.Node): node is ts.HasExpressionInitializer;
1225
+ /**
1226
+ * Test if a node is a `HasInitializer`.
1227
+ * @category Nodes - Type Guards
1228
+ * @example
1229
+ * ```ts
1230
+ * declare const node: ts.Node;
1231
+ *
1232
+ * if (hasInitializer(node)) {
1233
+ * // ...
1234
+ * }
1235
+ * ```
1236
+ * @returns Whether the given node appears to be a `HasInitializer`.
1237
+ */
1238
+ declare function hasInitializer(node: ts.Node): node is ts.HasInitializer;
1239
+ /**
1240
+ * Test if a node is a `HasJSDoc`.
1241
+ * @category Nodes - Type Guards
1242
+ * @example
1243
+ * ```ts
1244
+ * declare const node: ts.Node;
1245
+ *
1246
+ * if (hasJSDoc(node)) {
1247
+ * // ...
1248
+ * }
1249
+ * ```
1250
+ * @returns Whether the given node appears to be a `HasJSDoc`.
1251
+ */
1252
+ declare function hasJSDoc(node: ts.Node): node is ts.HasJSDoc;
1253
+ /**
1254
+ * Test if a node is a `HasModifiers`.
1255
+ * @category Nodes - Type Guards
1256
+ * @example
1257
+ * ```ts
1258
+ * declare const node: ts.Node;
1259
+ *
1260
+ * if (hasModifiers(node)) {
1261
+ * // ...
1262
+ * }
1263
+ * ```
1264
+ * @returns Whether the given node appears to be a `HasModifiers`.
1265
+ */
1266
+ declare function hasModifiers(node: ts.Node): node is ts.HasModifiers;
1267
+ /**
1268
+ * Test if a node is a `HasType`.
1269
+ * @category Nodes - Type Guards
1270
+ * @example
1271
+ * ```ts
1272
+ * declare const node: ts.Node;
1273
+ *
1274
+ * if (hasType(node)) {
1275
+ * // ...
1276
+ * }
1277
+ * ```
1278
+ * @returns Whether the given node appears to be a `HasType`.
1279
+ */
1280
+ declare function hasType(node: ts.Node): node is ts.HasType;
1281
+ /**
1282
+ * Test if a node is a `HasTypeArguments`.
1283
+ * @category Nodes - Type Guards
1284
+ * @example
1285
+ * ```ts
1286
+ * declare const node: ts.Node;
1287
+ *
1288
+ * if (hasTypeArguments(node)) {
1289
+ * // ...
1290
+ * }
1291
+ * ```
1292
+ * @returns Whether the given node appears to be a `HasTypeArguments`.
1293
+ */
1294
+ declare function hasTypeArguments(node: ts.Node): node is ts.HasTypeArguments;
1295
+ /**
1296
+ * Test if a node is an `AccessExpression`.
1297
+ * @category Nodes - Type Guards
1298
+ * @example
1299
+ * ```ts
1300
+ * declare const node: ts.Node;
1301
+ *
1302
+ * if (isAccessExpression(node)) {
1303
+ * // ...
1304
+ * }
1305
+ * ```
1306
+ * @returns Whether the given node appears to be an `AccessExpression`.
1307
+ */
1308
+ declare function isAccessExpression(node: ts.Node): node is ts.AccessExpression;
1309
+ /**
1310
+ * Test if a node is an `AccessibilityModifier`.
1311
+ * @category Nodes - Type Guards
1312
+ * @example
1313
+ * ```ts
1314
+ * declare const node: ts.Node;
1315
+ *
1316
+ * if (isAccessibilityModifier(node)) {
1317
+ * // ...
1318
+ * }
1319
+ * ```
1320
+ * @returns Whether the given node appears to be an `AccessibilityModifier`.
1321
+ */
1322
+ declare function isAccessibilityModifier(node: ts.Node): node is ts.AccessibilityModifier;
1323
+ /**
1324
+ * Test if a node is an `AccessorDeclaration`.
1325
+ * @deprecated With TypeScript v5, in favor of typescript's `isAccessor`.
1326
+ * @category Nodes - Type Guards
1327
+ * @example
1328
+ * ```ts
1329
+ * declare const node: ts.Node;
1330
+ *
1331
+ * if (isAccessorDeclaration(node)) {
1332
+ * // ...
1333
+ * }
1334
+ * ```
1335
+ * @returns Whether the given node appears to be an `AccessorDeclaration`.
1336
+ */
1337
+ declare function isAccessorDeclaration(node: ts.Node): node is ts.AccessorDeclaration;
1338
+ /**
1339
+ * Test if a node is an `ArrayBindingElement`.
1340
+ * @deprecated With TypeScript v5, in favor of typescript's `isArrayBindingElement`.
1341
+ * @category Nodes - Type Guards
1342
+ * @example
1343
+ * ```ts
1344
+ * declare const node: ts.Node;
1345
+ *
1346
+ * if (isArrayBindingElement(node)) {
1347
+ * // ...
1348
+ * }
1349
+ * ```
1350
+ * @returns Whether the given node appears to be an `ArrayBindingElement`.
1351
+ */
1352
+ declare function isArrayBindingElement(node: ts.Node): node is ts.ArrayBindingElement;
1353
+ /**
1354
+ * Test if a node is an `ArrayBindingOrAssignmentPattern`.
1355
+ * @category Nodes - Type Guards
1356
+ * @example
1357
+ * ```ts
1358
+ * declare const node: ts.Node;
1359
+ *
1360
+ * if (isArrayBindingOrAssignmentPattern(node)) {
1361
+ * // ...
1362
+ * }
1363
+ * ```
1364
+ * @returns Whether the given node appears to be an `ArrayBindingOrAssignmentPattern`.
1365
+ */
1366
+ declare function isArrayBindingOrAssignmentPattern(node: ts.Node): node is ts.ArrayBindingOrAssignmentPattern;
1367
+ /**
1368
+ * Test if a node is an `AssignmentPattern`.
1369
+ * @category Nodes - Type Guards
1370
+ * @example
1371
+ * ```ts
1372
+ * declare const node: ts.Node;
1373
+ *
1374
+ * if (isAssignmentPattern(node)) {
1375
+ * // ...
1376
+ * }
1377
+ * ```
1378
+ * @returns Whether the given node appears to be an `AssignmentPattern`.
1379
+ */
1380
+ declare function isAssignmentPattern(node: ts.Node): node is ts.AssignmentPattern;
1381
+ /**
1382
+ * Test if a node is a `BindingOrAssignmentElementRestIndicator`.
1383
+ * @category Nodes - Type Guards
1384
+ * @example
1385
+ * ```ts
1386
+ * declare const node: ts.Node;
1387
+ *
1388
+ * if (isBindingOrAssignmentElementRestIndicator(node)) {
1389
+ * // ...
1390
+ * }
1391
+ * ```
1392
+ * @returns Whether the given node appears to be a `BindingOrAssignmentElementRestIndicator`.
1393
+ */
1394
+ declare function isBindingOrAssignmentElementRestIndicator(node: ts.Node): node is ts.BindingOrAssignmentElementRestIndicator;
1395
+ /**
1396
+ * Test if a node is a `BindingOrAssignmentElementTarget`.
1397
+ * @category Nodes - Type Guards
1398
+ * @example
1399
+ * ```ts
1400
+ * declare const node: ts.Node;
1401
+ *
1402
+ * if (isBindingOrAssignmentElementTarget(node)) {
1403
+ * // ...
1404
+ * }
1405
+ * ```
1406
+ * @returns Whether the given node appears to be a `BindingOrAssignmentElementTarget`.
1407
+ */
1408
+ declare function isBindingOrAssignmentElementTarget(node: ts.Node): node is ts.BindingOrAssignmentElementTarget;
1409
+ /**
1410
+ * Test if a node is a `BindingOrAssignmentPattern`.
1411
+ * @category Nodes - Type Guards
1412
+ * @example
1413
+ * ```ts
1414
+ * declare const node: ts.Node;
1415
+ *
1416
+ * if (isBindingOrAssignmentPattern(node)) {
1417
+ * // ...
1418
+ * }
1419
+ * ```
1420
+ * @returns Whether the given node appears to be a `BindingOrAssignmentPattern`.
1421
+ */
1422
+ declare function isBindingOrAssignmentPattern(node: ts.Node): node is ts.BindingOrAssignmentPattern;
1423
+ /**
1424
+ * Test if a node is a `BindingPattern`.
1425
+ * @category Nodes - Type Guards
1426
+ * @example
1427
+ * ```ts
1428
+ * declare const node: ts.Node;
1429
+ *
1430
+ * if (isBindingPattern(node)) {
1431
+ * // ...
1432
+ * }
1433
+ * ```
1434
+ * @returns Whether the given node appears to be a `BindingPattern`.
1435
+ */
1436
+ declare function isBindingPattern(node: ts.Node): node is ts.BindingPattern;
1437
+ /**
1438
+ * Test if a node is a `BlockLike`.
1439
+ * @category Nodes - Type Guards
1440
+ * @example
1441
+ * ```ts
1442
+ * declare const node: ts.Node;
1443
+ *
1444
+ * if (isBlockLike(node)) {
1445
+ * // ...
1446
+ * }
1447
+ * ```
1448
+ * @returns Whether the given node appears to be a `BlockLike`.
1449
+ */
1450
+ declare function isBlockLike(node: ts.Node): node is ts.BlockLike;
1451
+ /**
1452
+ * Test if a node is a `BooleanLiteral`.
1453
+ * @category Nodes - Type Guards
1454
+ * @example
1455
+ * ```ts
1456
+ * declare const node: ts.Node;
1457
+ *
1458
+ * if (isBooleanLiteral(node)) {
1459
+ * // ...
1460
+ * }
1461
+ * ```
1462
+ * @returns Whether the given node appears to be a `BooleanLiteral`.
1463
+ */
1464
+ declare function isBooleanLiteral(node: ts.Node): node is ts.BooleanLiteral;
1465
+ /**
1466
+ * Test if a node is a `ClassLikeDeclaration`.
1467
+ * @deprecated With TypeScript v5, in favor of typescript's `isClassLike`.
1468
+ * @category Nodes - Type Guards
1469
+ * @example
1470
+ * ```ts
1471
+ * declare const node: ts.Node;
1472
+ *
1473
+ * if (isClassLikeDeclaration(node)) {
1474
+ * // ...
1475
+ * }
1476
+ * ```
1477
+ * @returns Whether the given node appears to be a `ClassLikeDeclaration`.
1478
+ */
1479
+ declare function isClassLikeDeclaration(node: ts.Node): node is ts.ClassLikeDeclaration;
1480
+ /**
1481
+ * Test if a node is a `ClassMemberModifier`.
1482
+ * @category Nodes - Type Guards
1483
+ * @example
1484
+ * ```ts
1485
+ * declare const node: ts.Node;
1486
+ *
1487
+ * if (isClassMemberModifier(node)) {
1488
+ * // ...
1489
+ * }
1490
+ * ```
1491
+ * @returns Whether the given node appears to be a `ClassMemberModifier`.
1492
+ */
1493
+ declare function isClassMemberModifier(node: ts.Node): node is ts.ClassMemberModifier;
1494
+ /**
1495
+ * Test if a node is a `DeclarationName`.
1496
+ * @category Nodes - Type Guards
1497
+ * @example
1498
+ * ```ts
1499
+ * declare const node: ts.Node;
1500
+ *
1501
+ * if (isDeclarationName(node)) {
1502
+ * // ...
1503
+ * }
1504
+ * ```
1505
+ * @returns Whether the given node appears to be a `DeclarationName`.
1506
+ */
1507
+ declare function isDeclarationName(node: ts.Node): node is ts.DeclarationName;
1508
+ /**
1509
+ * Test if a node is a `DeclarationWithTypeParameterChildren`.
1510
+ * @category Nodes - Type Guards
1511
+ * @example
1512
+ * ```ts
1513
+ * declare const node: ts.Node;
1514
+ *
1515
+ * if (isDeclarationWithTypeParameterChildren(node)) {
1516
+ * // ...
1517
+ * }
1518
+ * ```
1519
+ * @returns Whether the given node appears to be a `DeclarationWithTypeParameterChildren`.
1520
+ */
1521
+ declare function isDeclarationWithTypeParameterChildren(node: ts.Node): node is ts.DeclarationWithTypeParameterChildren;
1522
+ /**
1523
+ * Test if a node is a `DeclarationWithTypeParameters`.
1524
+ * @category Nodes - Type Guards
1525
+ * @example
1526
+ * ```ts
1527
+ * declare const node: ts.Node;
1528
+ *
1529
+ * if (isDeclarationWithTypeParameters(node)) {
1530
+ * // ...
1531
+ * }
1532
+ * ```
1533
+ * @returns Whether the given node appears to be a `DeclarationWithTypeParameters`.
1534
+ */
1535
+ declare function isDeclarationWithTypeParameters(node: ts.Node): node is ts.DeclarationWithTypeParameters;
1536
+ /**
1537
+ * Test if a node is a `DestructuringPattern`.
1538
+ * @category Nodes - Type Guards
1539
+ * @example
1540
+ * ```ts
1541
+ * declare const node: ts.Node;
1542
+ *
1543
+ * if (isDestructuringPattern(node)) {
1544
+ * // ...
1545
+ * }
1546
+ * ```
1547
+ * @returns Whether the given node appears to be a `DestructuringPattern`.
1548
+ */
1549
+ declare function isDestructuringPattern(node: ts.Node): node is ts.DestructuringPattern;
1550
+ /**
1551
+ * Test if a node is an `EntityNameExpression`.
1552
+ * @category Nodes - Type Guards
1553
+ * @example
1554
+ * ```ts
1555
+ * declare const node: ts.Node;
1556
+ *
1557
+ * if (isEntityNameExpression(node)) {
1558
+ * // ...
1559
+ * }
1560
+ * ```
1561
+ * @returns Whether the given node appears to be an `EntityNameExpression`.
1562
+ */
1563
+ declare function isEntityNameExpression(node: ts.Node): node is ts.EntityNameExpression;
1564
+ /**
1565
+ * Test if a node is an `EntityNameOrEntityNameExpression`.
1566
+ * @category Nodes - Type Guards
1567
+ * @example
1568
+ * ```ts
1569
+ * declare const node: ts.Node;
1570
+ *
1571
+ * if (isEntityNameOrEntityNameExpression(node)) {
1572
+ * // ...
1573
+ * }
1574
+ * ```
1575
+ * @returns Whether the given node appears to be an `EntityNameOrEntityNameExpression`.
1576
+ */
1577
+ declare function isEntityNameOrEntityNameExpression(node: ts.Node): node is ts.EntityNameOrEntityNameExpression;
1578
+ /**
1579
+ * Test if a node is a `ForInOrOfStatement`.
1580
+ * @category Nodes - Type Guards
1581
+ * @example
1582
+ * ```ts
1583
+ * declare const node: ts.Node;
1584
+ *
1585
+ * if (isForInOrOfStatement(node)) {
1586
+ * // ...
1587
+ * }
1588
+ * ```
1589
+ * @returns Whether the given node appears to be a `ForInOrOfStatement`.
1590
+ */
1591
+ declare function isForInOrOfStatement(node: ts.Node): node is ts.ForInOrOfStatement;
1592
+ /**
1593
+ * Test if a node is a `FunctionLikeDeclaration`.
1594
+ * @deprecated With TypeScript v5, in favor of typescript's `isFunctionLike`.
1595
+ * @category Nodes - Type Guards
1596
+ * @example
1597
+ * ```ts
1598
+ * declare const node: ts.Node;
1599
+ *
1600
+ * if (isFunctionLikeDeclaration(node)) {
1601
+ * // ...
1602
+ * }
1603
+ * ```
1604
+ * @returns Whether the given node appears to be a `FunctionLikeDeclaration`.
1605
+ */
1606
+ declare function isFunctionLikeDeclaration(node: ts.Node): node is ts.FunctionLikeDeclaration;
1607
+ /**
1608
+ * Test if a node is a `JSDocComment`.
1609
+ * @category Nodes - Type Guards
1610
+ * @example
1611
+ * ```ts
1612
+ * declare const node: ts.Node;
1613
+ *
1614
+ * if (isJSDocComment(node)) {
1615
+ * // ...
1616
+ * }
1617
+ * ```
1618
+ * @returns Whether the given node appears to be a `JSDocComment`.
1619
+ */
1620
+ declare function isJSDocComment(node: ts.Node): node is ts.JSDocComment;
1621
+ /**
1622
+ * Test if a node is a `JSDocNamespaceBody`.
1623
+ * @category Nodes - Type Guards
1624
+ * @example
1625
+ * ```ts
1626
+ * declare const node: ts.Node;
1627
+ *
1628
+ * if (isJSDocNamespaceBody(node)) {
1629
+ * // ...
1630
+ * }
1631
+ * ```
1632
+ * @returns Whether the given node appears to be a `JSDocNamespaceBody`.
1633
+ */
1634
+ declare function isJSDocNamespaceBody(node: ts.Node): node is ts.JSDocNamespaceBody;
1635
+ /**
1636
+ * Test if a node is a `JSDocTypeReferencingNode`.
1637
+ * @category Nodes - Type Guards
1638
+ * @example
1639
+ * ```ts
1640
+ * declare const node: ts.Node;
1641
+ *
1642
+ * if (isJSDocTypeReferencingNode(node)) {
1643
+ * // ...
1644
+ * }
1645
+ * ```
1646
+ * @returns Whether the given node appears to be a `JSDocTypeReferencingNode`.
1647
+ */
1648
+ declare function isJSDocTypeReferencingNode(node: ts.Node): node is ts.JSDocTypeReferencingNode;
1649
+ /**
1650
+ * Test if a node is a `JsonObjectExpression`.
1651
+ * @category Nodes - Type Guards
1652
+ * @example
1653
+ * ```ts
1654
+ * declare const node: ts.Node;
1655
+ *
1656
+ * if (isJsonObjectExpression(node)) {
1657
+ * // ...
1658
+ * }
1659
+ * ```
1660
+ * @returns Whether the given node appears to be a `JsonObjectExpression`.
1661
+ */
1662
+ declare function isJsonObjectExpression(node: ts.Node): node is ts.JsonObjectExpression;
1663
+ /**
1664
+ * Test if a node is a `JsxAttributeLike`.
1665
+ * @deprecated With TypeScript v5, in favor of typescript's `isJsxAttributeLike`.
1666
+ * @category Nodes - Type Guards
1667
+ * @example
1668
+ * ```ts
1669
+ * declare const node: ts.Node;
1670
+ *
1671
+ * if (isJsxAttributeLike(node)) {
1672
+ * // ...
1673
+ * }
1674
+ * ```
1675
+ * @returns Whether the given node appears to be a `JsxAttributeLike`.
1676
+ */
1677
+ declare function isJsxAttributeLike(node: ts.Node): node is ts.JsxAttributeLike;
1678
+ /**
1679
+ * Test if a node is a `JsxAttributeValue`.
1680
+ * @category Nodes - Type Guards
1681
+ * @example
1682
+ * ```ts
1683
+ * declare const node: ts.Node;
1684
+ *
1685
+ * if (isJsxAttributeValue(node)) {
1686
+ * // ...
1687
+ * }
1688
+ * ```
1689
+ * @returns Whether the given node appears to be a `JsxAttributeValue`.
1690
+ */
1691
+ declare function isJsxAttributeValue(node: ts.Node): node is ts.JsxAttributeValue;
1692
+ /**
1693
+ * Test if a node is a `JsxChild`.
1694
+ * @deprecated With TypeScript v5, in favor of typescript's `isJsxChild`.
1695
+ * @category Nodes - Type Guards
1696
+ * @example
1697
+ * ```ts
1698
+ * declare const node: ts.Node;
1699
+ *
1700
+ * if (isJsxChild(node)) {
1701
+ * // ...
1702
+ * }
1703
+ * ```
1704
+ * @returns Whether the given node appears to be a `JsxChild`.
1705
+ */
1706
+ declare function isJsxChild(node: ts.Node): node is ts.JsxChild;
1707
+ /**
1708
+ * Test if a node is a `JsxTagNameExpression`.
1709
+ * @deprecated With TypeScript v5, in favor of typescript's `isJsxTagNameExpression`.
1710
+ * @category Nodes - Type Guards
1711
+ * @example
1712
+ * ```ts
1713
+ * declare const node: ts.Node;
1714
+ *
1715
+ * if (isJsxTagNameExpression(node)) {
1716
+ * // ...
1717
+ * }
1718
+ * ```
1719
+ * @returns Whether the given node appears to be a `JsxTagNameExpression`.
1720
+ */
1721
+ declare function isJsxTagNameExpression(node: ts.Node): node is ts.JsxTagNameExpression;
1722
+ /**
1723
+ * Test if a node is a `LiteralToken`.
1724
+ * @category Nodes - Type Guards
1725
+ * @example
1726
+ * ```ts
1727
+ * declare const node: ts.Node;
1728
+ *
1729
+ * if (isLiteralToken(node)) {
1730
+ * // ...
1731
+ * }
1732
+ * ```
1733
+ * @returns Whether the given node appears to be a `LiteralToken`.
1734
+ */
1735
+ declare function isLiteralToken(node: ts.Node): node is ts.LiteralToken;
1736
+ /**
1737
+ * Test if a node is a `ModuleBody`.
1738
+ * @deprecated With TypeScript v5, in favor of typescript's `isModuleBody`.
1739
+ * @category Nodes - Type Guards
1740
+ * @example
1741
+ * ```ts
1742
+ * declare const node: ts.Node;
1743
+ *
1744
+ * if (isModuleBody(node)) {
1745
+ * // ...
1746
+ * }
1747
+ * ```
1748
+ * @returns Whether the given node appears to be a `ModuleBody`.
1749
+ */
1750
+ declare function isModuleBody(node: ts.Node): node is ts.ModuleBody;
1751
+ /**
1752
+ * Test if a node is a `ModuleName`.
1753
+ * @deprecated With TypeScript v5, in favor of typescript's `isModuleName`.
1754
+ * @category Nodes - Type Guards
1755
+ * @example
1756
+ * ```ts
1757
+ * declare const node: ts.Node;
1758
+ *
1759
+ * if (isModuleName(node)) {
1760
+ * // ...
1761
+ * }
1762
+ * ```
1763
+ * @returns Whether the given node appears to be a `ModuleName`.
1764
+ */
1765
+ declare function isModuleName(node: ts.Node): node is ts.ModuleName;
1766
+ /**
1767
+ * Test if a node is a `ModuleReference`.
1768
+ * @deprecated With TypeScript v5, in favor of typescript's `isModuleReference`.
1769
+ * @category Nodes - Type Guards
1770
+ * @example
1771
+ * ```ts
1772
+ * declare const node: ts.Node;
1773
+ *
1774
+ * if (isModuleReference(node)) {
1775
+ * // ...
1776
+ * }
1777
+ * ```
1778
+ * @returns Whether the given node appears to be a `ModuleReference`.
1779
+ */
1780
+ declare function isModuleReference(node: ts.Node): node is ts.ModuleReference;
1781
+ /**
1782
+ * Test if a node is a `NamedImportBindings`.
1783
+ * @deprecated With TypeScript v5, in favor of typescript's `isNamedImportBindings`.
1784
+ * @category Nodes - Type Guards
1785
+ * @example
1786
+ * ```ts
1787
+ * declare const node: ts.Node;
1788
+ *
1789
+ * if (isNamedImportBindings(node)) {
1790
+ * // ...
1791
+ * }
1792
+ * ```
1793
+ * @returns Whether the given node appears to be a `NamedImportBindings`.
1794
+ */
1795
+ declare function isNamedImportBindings(node: ts.Node): node is ts.NamedImportBindings;
1796
+ /**
1797
+ * Test if a node is a `NamedImportsOrExports`.
1798
+ * @category Nodes - Type Guards
1799
+ * @example
1800
+ * ```ts
1801
+ * declare const node: ts.Node;
1802
+ *
1803
+ * if (isNamedImportsOrExports(node)) {
1804
+ * // ...
1805
+ * }
1806
+ * ```
1807
+ * @returns Whether the given node appears to be a `NamedImportsOrExports`.
1808
+ */
1809
+ declare function isNamedImportsOrExports(node: ts.Node): node is ts.NamedImportsOrExports;
1810
+ /**
1811
+ * Test if a node is a `NamespaceBody`.
1812
+ * @category Nodes - Type Guards
1813
+ * @example
1814
+ * ```ts
1815
+ * declare const node: ts.Node;
1816
+ *
1817
+ * if (isNamespaceBody(node)) {
1818
+ * // ...
1819
+ * }
1820
+ * ```
1821
+ * @returns Whether the given node appears to be a `NamespaceBody`.
1822
+ */
1823
+ declare function isNamespaceBody(node: ts.Node): node is ts.NamespaceBody;
1824
+ /**
1825
+ * Test if a node is an `ObjectBindingOrAssignmentElement`.
1826
+ * @category Nodes - Type Guards
1827
+ * @example
1828
+ * ```ts
1829
+ * declare const node: ts.Node;
1830
+ *
1831
+ * if (isObjectBindingOrAssignmentElement(node)) {
1832
+ * // ...
1833
+ * }
1834
+ * ```
1835
+ * @returns Whether the given node appears to be an `ObjectBindingOrAssignmentElement`.
1836
+ */
1837
+ declare function isObjectBindingOrAssignmentElement(node: ts.Node): node is ts.ObjectBindingOrAssignmentElement;
1838
+ /**
1839
+ * Test if a node is an `ObjectBindingOrAssignmentPattern`.
1840
+ * @category Nodes - Type Guards
1841
+ * @example
1842
+ * ```ts
1843
+ * declare const node: ts.Node;
1844
+ *
1845
+ * if (isObjectBindingOrAssignmentPattern(node)) {
1846
+ * // ...
1847
+ * }
1848
+ * ```
1849
+ * @returns Whether the given node appears to be an `ObjectBindingOrAssignmentPattern`.
1850
+ */
1851
+ declare function isObjectBindingOrAssignmentPattern(node: ts.Node): node is ts.ObjectBindingOrAssignmentPattern;
1852
+ /**
1853
+ * Test if a node is an `ObjectTypeDeclaration`.
1854
+ * @category Nodes - Type Guards
1855
+ * @example
1856
+ * ```ts
1857
+ * declare const node: ts.Node;
1858
+ *
1859
+ * if (isObjectTypeDeclaration(node)) {
1860
+ * // ...
1861
+ * }
1862
+ * ```
1863
+ * @returns Whether the given node appears to be an `ObjectTypeDeclaration`.
1864
+ */
1865
+ declare function isObjectTypeDeclaration(node: ts.Node): node is ts.ObjectTypeDeclaration;
1866
+ /**
1867
+ * Test if a node is a `ParameterPropertyModifier`.
1868
+ * @category Nodes - Type Guards
1869
+ * @example
1870
+ * ```ts
1871
+ * declare const node: ts.Node;
1872
+ *
1873
+ * if (isParameterPropertyModifier(node)) {
1874
+ * // ...
1875
+ * }
1876
+ * ```
1877
+ * @returns Whether the given node appears to be a `ParameterPropertyModifier`.
1878
+ */
1879
+ declare function isParameterPropertyModifier(node: ts.Node): node is ts.ParameterPropertyModifier;
1880
+ /**
1881
+ * Test if a node is a `PropertyNameLiteral`.
1882
+ * @category Nodes - Type Guards
1883
+ * @example
1884
+ * ```ts
1885
+ * declare const node: ts.Node;
1886
+ *
1887
+ * if (isPropertyNameLiteral(node)) {
1888
+ * // ...
1889
+ * }
1890
+ * ```
1891
+ * @returns Whether the given node appears to be a `PropertyNameLiteral`.
1892
+ */
1893
+ declare function isPropertyNameLiteral(node: ts.Node): node is ts.PropertyNameLiteral;
1894
+ /**
1895
+ * Test if a node is a `PseudoLiteralToken`.
1896
+ * @category Nodes - Type Guards
1897
+ * @example
1898
+ * ```ts
1899
+ * declare const node: ts.Node;
1900
+ *
1901
+ * if (isPseudoLiteralToken(node)) {
1902
+ * // ...
1903
+ * }
1904
+ * ```
1905
+ * @returns Whether the given node appears to be a `PseudoLiteralToken`.
1906
+ */
1907
+ declare function isPseudoLiteralToken(node: ts.Node): node is ts.PseudoLiteralToken;
1908
+ /**
1909
+ * Test if a node is a `SignatureDeclaration`.
1910
+ * @category Nodes - Type Guards
1911
+ * @example
1912
+ * ```ts
1913
+ * declare const node: ts.Node;
1914
+ *
1915
+ * if (isSignatureDeclaration(node)) {
1916
+ * // ...
1917
+ * }
1918
+ * ```
1919
+ * @returns Whether the given node appears to be a `SignatureDeclaration`.
1920
+ */
1921
+ declare function isSignatureDeclaration(node: ts.Node): node is ts.SignatureDeclaration;
1922
+ /**
1923
+ * Test if a node is a `SuperProperty`.
1924
+ * @category Nodes - Type Guards
1925
+ * @example
1926
+ * ```ts
1927
+ * declare const node: ts.Node;
1928
+ *
1929
+ * if (isSuperProperty(node)) {
1930
+ * // ...
1931
+ * }
1932
+ * ```
1933
+ * @returns Whether the given node appears to be a `SuperProperty`.
1934
+ */
1935
+ declare function isSuperProperty(node: ts.Node): node is ts.SuperProperty;
1936
+ /**
1937
+ * Test if a node is a `TypeOnlyCompatibleAliasDeclaration`.
1938
+ * @category Nodes - Type Guards
1939
+ * @example
1940
+ * ```ts
1941
+ * declare const node: ts.Node;
1942
+ *
1943
+ * if (isTypeOnlyCompatibleAliasDeclaration(node)) {
1944
+ * // ...
1945
+ * }
1946
+ * ```
1947
+ * @returns Whether the given node appears to be a `TypeOnlyCompatibleAliasDeclaration`.
1948
+ */
1949
+ declare function isTypeOnlyCompatibleAliasDeclaration(node: ts.Node): node is ts.TypeOnlyCompatibleAliasDeclaration;
1950
+ /**
1951
+ * Test if a node is a `TypeReferenceType`.
1952
+ * @category Nodes - Type Guards
1953
+ * @example
1954
+ * ```ts
1955
+ * declare const node: ts.Node;
1956
+ *
1957
+ * if (isTypeReferenceType(node)) {
1958
+ * // ...
1959
+ * }
1960
+ * ```
1961
+ * @returns Whether the given node appears to be a `TypeReferenceType`.
1962
+ */
1963
+ declare function isTypeReferenceType(node: ts.Node): node is ts.TypeReferenceType;
1964
+ /**
1965
+ * Test if a node is an `UnionOrIntersectionTypeNode`.
1966
+ * @category Nodes - Type Guards
1967
+ * @example
1968
+ * ```ts
1969
+ * declare const node: ts.Node;
1970
+ *
1971
+ * if (isUnionOrIntersectionTypeNode(node)) {
1972
+ * // ...
1973
+ * }
1974
+ * ```
1975
+ * @returns Whether the given node appears to be an `UnionOrIntersectionTypeNode`.
1976
+ */
1977
+ declare function isUnionOrIntersectionTypeNode(node: ts.Node): node is ts.UnionOrIntersectionTypeNode;
1978
+ /**
1979
+ * Test if a node is a `VariableLikeDeclaration`.
1980
+ * @category Nodes - Type Guards
1981
+ * @example
1982
+ * ```ts
1983
+ * declare const node: ts.Node;
1984
+ *
1985
+ * if (isVariableLikeDeclaration(node)) {
1986
+ * // ...
1987
+ * }
1988
+ * ```
1989
+ * @returns Whether the given node appears to be a `VariableLikeDeclaration`.
1990
+ */
1991
+ declare function isVariableLikeDeclaration(node: ts.Node): node is ts.VariableLikeDeclaration;
1992
+
1993
+ /**
1994
+ * Is the node a scope boundary, specifically due to it being a function.
1995
+ * @category Scope Utilities
1996
+ * @example
1997
+ * ```ts
1998
+ * declare const node: ts.Node;
1999
+ *
2000
+ * if (isFunctionScopeBoundary(node)) {
2001
+ * // ...
2002
+ * }
2003
+ * ```
2004
+ */
2005
+ declare function isFunctionScopeBoundary(node: ts.Node): boolean;
2006
+
2007
+ /**
2008
+ * Test of the kind given is for assignment.
2009
+ * @category Syntax Utilities
2010
+ * @example
2011
+ * ```ts
2012
+ * declare const kind: ts.SyntaxKind;
2013
+ *
2014
+ * isAssignmentKind(kind);
2015
+ * ```
2016
+ */
2017
+ declare function isAssignmentKind(kind: ts.SyntaxKind): boolean;
2018
+ /**
2019
+ * Test if a string is numeric.
2020
+ * @category Syntax Utilities
2021
+ * @example
2022
+ * ```ts
2023
+ * isNumericPropertyName("abc"); // false
2024
+ * isNumericPropertyName("123"); // true
2025
+ * ```
2026
+ */
2027
+ declare function isNumericPropertyName(name: string | ts.__String): boolean;
2028
+ /**
2029
+ * Determines whether the given text can be used to access a property with a `PropertyAccessExpression` while preserving the property's name.
2030
+ * @category Syntax Utilities
2031
+ * @example
2032
+ * ```ts
2033
+ * isValidPropertyAccess("abc"); // true
2034
+ * isValidPropertyAccess("123"); // false
2035
+ * ```
2036
+ */
2037
+ declare function isValidPropertyAccess(text: string, languageVersion?: ts.ScriptTarget): boolean;
2038
+
2039
+ /**
2040
+ * Callback type used for {@link forEachToken}.
2041
+ * @category Callbacks
2042
+ * @example
2043
+ * ```ts
2044
+ * let onToken: ForEachTokenCallback = (token) => {
2045
+ * console.log(`Found token at position: ${token.pos}.`);
2046
+ * };
2047
+ * ```
2048
+ */
2049
+ type ForEachTokenCallback = (token: ts.Node) => void;
2050
+ /**
2051
+ * Iterates over all tokens of `node`
2052
+ * @category Nodes - Other Utilities
2053
+ * @example
2054
+ * ```ts
2055
+ * declare const node: ts.Node;
2056
+ *
2057
+ * forEachToken(node, (token) => {
2058
+ * console.log("Found token:", token.getText());
2059
+ * });
2060
+ * ```
2061
+ * @param node The node whose tokens should be visited
2062
+ * @param callback Is called for every token contained in `node`
2063
+ */
2064
+ declare function forEachToken(node: ts.Node, callback: ForEachTokenCallback, sourceFile?: ts.SourceFile): void;
2065
+ /**
2066
+ * Iterates over all tokens of `node`
2067
+ * @category Nodes - Other Utilities
2068
+ * @example
2069
+ * ```ts
2070
+ * declare const node: ts.Node;
2071
+ *
2072
+ * for (const token of iterateTokens(token)) {
2073
+ * console.log("Found token:", token.getText());
2074
+ * });
2075
+ * ```
2076
+ * @param node The node whose tokens should be visited
2077
+ */
2078
+ declare function iterateTokens(node: ts.Node, sourceFile?: ts.SourceFile): Generator<ts.Node>;
2079
+
2080
+ /**
2081
+ * Get the `CallSignatures` of the given type.
2082
+ * @category Types - Getters
2083
+ * @example
2084
+ * ```ts
2085
+ * declare const type: ts.Type;
2086
+ *
2087
+ * getCallSignaturesOfType(type);
2088
+ * ```
2089
+ */
2090
+ declare function getCallSignaturesOfType(type: ts.Type): readonly ts.Signature[];
2091
+ /**
2092
+ * Get the property with the given name on the given type (if it exists).
2093
+ * @category Types - Getters
2094
+ * @example
2095
+ * ```ts
2096
+ * declare const property: ts.Symbol;
2097
+ * declare const type: ts.Type;
2098
+ *
2099
+ * getPropertyOfType(type, property.getEscapedName());
2100
+ * ```
2101
+ */
2102
+ declare function getPropertyOfType(type: ts.Type, name: ts.__String): ts.Symbol | undefined;
2103
+ /**
2104
+ * Retrieves a type symbol corresponding to a well-known string name.
2105
+ * @category Types - Getters
2106
+ * @example
2107
+ * ```ts
2108
+ * declare const type: ts.Type;
2109
+ * declare const typeChecker: ts.TypeChecker;
2110
+ *
2111
+ * getWellKnownSymbolPropertyOfType(type, "asyncIterator", typeChecker);
2112
+ * ```
2113
+ */
2114
+ declare function getWellKnownSymbolPropertyOfType(type: ts.Type, wellKnownSymbolName: string, typeChecker: ts.TypeChecker): ts.Symbol | undefined;
2115
+
2116
+ /**
2117
+ * A "any" intrinsic type.
2118
+ * @category Type Types
2119
+ */
2120
+ interface IntrinsicAnyType extends IntrinsicType {
2121
+ intrinsicName: "any";
2122
+ }
2123
+ /**
2124
+ * A "bigint" intrinsic type.
2125
+ * @category Type Types
2126
+ */
2127
+ interface IntrinsicBigIntType extends IntrinsicType {
2128
+ intrinsicName: "bigint";
2129
+ }
2130
+ /**
2131
+ * A "boolean" intrinsic type.
2132
+ * @category Type Types
2133
+ */
2134
+ interface IntrinsicBooleanType extends IntrinsicType {
2135
+ intrinsicName: "boolean";
2136
+ }
2137
+ /**
2138
+ * An "error" intrinsic type.
2139
+ *
2140
+ * This refers to a type generated when TypeScript encounters an error while
2141
+ * trying to resolve the type.
2142
+ * @category Type Types
2143
+ */
2144
+ interface IntrinsicErrorType extends IntrinsicType {
2145
+ intrinsicName: "error";
2146
+ }
2147
+ /**
2148
+ * A "symbol" intrinsic type.
2149
+ * @category Type Types
2150
+ */
2151
+ interface IntrinsicESSymbolType extends IntrinsicType {
2152
+ intrinsicName: "symbol";
2153
+ }
2154
+ /**
2155
+ * An "intrinsic" (built-in to TypeScript) type.
2156
+ * @category Type Types
2157
+ */
2158
+ interface IntrinsicType extends ts.Type {
2159
+ intrinsicName: string;
2160
+ objectFlags: ts.ObjectFlags;
2161
+ }
2162
+ /**
2163
+ * Determines whether the given type is the "any" intrinsic type.
2164
+ * @category Types - Type Guards
2165
+ * @example
2166
+ * ```ts
2167
+ * declare const type: ts.Type;
2168
+ *
2169
+ * if (isIntrinsicAnyType(type)) {
2170
+ * // ...
2171
+ * }
2172
+ * ```
2173
+ */
2174
+ declare function isIntrinsicAnyType(type: ts.Type): type is IntrinsicAnyType;
2175
+ /**
2176
+ * Determines whether the given type is the "bigint" intrinsic type.
2177
+ * @category Types - Type Guards
2178
+ * @example
2179
+ * ```ts
2180
+ * declare const type: ts.Type;
2181
+ *
2182
+ * if (isIntrinsicBigIntType(type)) {
2183
+ * // ...
2184
+ * }
2185
+ * ```
2186
+ */
2187
+ declare function isIntrinsicBigIntType(type: ts.Type): type is IntrinsicBigIntType;
2188
+ /**
2189
+ * Determines whether the given type is the "boolean" intrinsic type.
2190
+ * @category Types - Type Guards
2191
+ * @example
2192
+ * ```ts
2193
+ * declare const type: ts.Type;
2194
+ *
2195
+ * if (isIntrinsicBooleanType(type)) {
2196
+ * // ...
2197
+ * }
2198
+ * ```
2199
+ */
2200
+ declare function isIntrinsicBooleanType(type: ts.Type): type is IntrinsicBooleanType;
2201
+ /**
2202
+ * Determines whether the given type is the "error" intrinsic type.
2203
+ *
2204
+ * The intrinsic error type occurs when TypeScript encounters an error while
2205
+ * trying to resolve the type.
2206
+ * @category Types - Type Guards
2207
+ * @example
2208
+ * ```ts
2209
+ * declare const type: ts.Type;
2210
+ *
2211
+ * if (isIntrinsicErrorType(type)) {
2212
+ * // ...
2213
+ * }
2214
+ * ```
2215
+ */
2216
+ declare function isIntrinsicErrorType(type: ts.Type): type is IntrinsicErrorType;
2217
+ /**
2218
+ * Determines whether the given type is the "symbol" intrinsic type.
2219
+ * @category Types - Type Guards
2220
+ * @example
2221
+ * ```ts
2222
+ * declare const type: ts.Type;
2223
+ *
2224
+ * if (isIntrinsicESSymbolType(type)) {
2225
+ * // ...
2226
+ * }
2227
+ * ```
2228
+ */
2229
+ declare function isIntrinsicESSymbolType(type: ts.Type): type is IntrinsicESSymbolType;
2230
+ /**
2231
+ * A "never" intrinsic type.
2232
+ * @category Type Types
2233
+ */
2234
+ interface IntrinsicNeverType extends IntrinsicType {
2235
+ intrinsicName: "never";
2236
+ }
2237
+ /**
2238
+ * A non-primitive intrinsic type.
2239
+ * E.g. An "object" intrinsic type.
2240
+ * @category Type Types
2241
+ */
2242
+ interface IntrinsicNonPrimitiveType extends IntrinsicType {
2243
+ intrinsicName: "";
2244
+ }
2245
+ /**
2246
+ * A "null" intrinsic type.
2247
+ * @category Type Types
2248
+ */
2249
+ interface IntrinsicNullType extends IntrinsicType {
2250
+ intrinsicName: "null";
2251
+ }
2252
+ /**
2253
+ * A "number" intrinsic type.
2254
+ * @category Type Types
2255
+ */
2256
+ interface IntrinsicNumberType extends IntrinsicType {
2257
+ intrinsicName: "number";
2258
+ }
2259
+ /**
2260
+ * A "string" intrinsic type.
2261
+ * @category Type Types
2262
+ */
2263
+ interface IntrinsicStringType extends IntrinsicType {
2264
+ intrinsicName: "string";
2265
+ }
2266
+ /**
2267
+ * The built-in `undefined` type.
2268
+ * @category Type Types
2269
+ */
2270
+ interface IntrinsicUndefinedType extends IntrinsicType {
2271
+ intrinsicName: "undefined";
2272
+ }
2273
+ /**
2274
+ * The built-in `unknown` type.
2275
+ * @category Type Types
2276
+ */
2277
+ interface IntrinsicUnknownType extends IntrinsicType {
2278
+ intrinsicName: "unknown";
2279
+ }
2280
+ /**
2281
+ * A "void" intrinsic type.
2282
+ * @category Type Types
2283
+ */
2284
+ interface IntrinsicVoidType extends IntrinsicType {
2285
+ intrinsicName: "void";
2286
+ }
2287
+ /**
2288
+ * Determines whether the given type is the "never" intrinsic type.
2289
+ * @category Types - Type Guards
2290
+ * @example
2291
+ * ```ts
2292
+ * declare const type: ts.Type;
2293
+ *
2294
+ * if (isIntrinsicNeverType(type)) {
2295
+ * // ...
2296
+ * }
2297
+ * ```
2298
+ */
2299
+ declare function isIntrinsicNeverType(type: ts.Type): type is IntrinsicNeverType;
2300
+ /**
2301
+ * Determines whether the given type is a non-primitive intrinsic type.
2302
+ * E.g. An "object" intrinsic type.
2303
+ * @category Types - Type Guards
2304
+ * @example
2305
+ * ```ts
2306
+ * declare const type: ts.Type;
2307
+ *
2308
+ * if (isIntrinsicNonPrimitiveType(type)) {
2309
+ * // ...
2310
+ * }
2311
+ * ```
2312
+ */
2313
+ declare function isIntrinsicNonPrimitiveType(type: ts.Type): type is IntrinsicNonPrimitiveType;
2314
+ /**
2315
+ * Determines whether the given type is the "null" intrinsic type.
2316
+ * @category Types - Type Guards
2317
+ * @example
2318
+ * ```ts
2319
+ * declare const type: ts.Type;
2320
+ *
2321
+ * if (isIntrinsicNullType(type)) {
2322
+ * // ...
2323
+ * }
2324
+ * ```
2325
+ */
2326
+ declare function isIntrinsicNullType(type: ts.Type): type is IntrinsicNullType;
2327
+ /**
2328
+ * Determines whether the given type is the "number" intrinsic type.
2329
+ * @category Types - Type Guards
2330
+ * @example
2331
+ * ```ts
2332
+ * declare const type: ts.Type;
2333
+ *
2334
+ * if (isIntrinsicNumberType(type)) {
2335
+ * // ...
2336
+ * }
2337
+ * ```
2338
+ */
2339
+ declare function isIntrinsicNumberType(type: ts.Type): type is IntrinsicNumberType;
2340
+ /**
2341
+ * Determines whether the given type is the "string" intrinsic type.
2342
+ * @category Types - Type Guards
2343
+ * @example
2344
+ * ```ts
2345
+ * declare const type: ts.Type;
2346
+ *
2347
+ * if (isIntrinsicStringType(type)) {
2348
+ * // ...
2349
+ * }
2350
+ * ```
2351
+ */
2352
+ declare function isIntrinsicStringType(type: ts.Type): type is IntrinsicStringType;
2353
+ /**
2354
+ * Test if a type is an {@link IntrinsicType}.
2355
+ * @category Types - Type Guards
2356
+ * @example
2357
+ * ```ts
2358
+ * declare const type: ts.Type;
2359
+ *
2360
+ * if (isIntrinsicType(type)) {
2361
+ * // ...
2362
+ * }
2363
+ * ```
2364
+ */
2365
+ declare function isIntrinsicType(type: ts.Type): type is IntrinsicType;
2366
+ /**
2367
+ * Determines whether the given type is the "undefined" intrinsic type.
2368
+ * @category Types - Type Guards
2369
+ * @example
2370
+ * ```ts
2371
+ * declare const type: ts.Type;
2372
+ *
2373
+ * if (isIntrinsicUndefinedType(type)) {
2374
+ * // ...
2375
+ * }
2376
+ * ```
2377
+ */
2378
+ declare function isIntrinsicUndefinedType(type: ts.Type): type is IntrinsicUndefinedType;
2379
+ /**
2380
+ * Determines whether the given type is the "unknown" intrinsic type.
2381
+ * @category Types - Type Guards
2382
+ * @example
2383
+ * ```ts
2384
+ * declare const type: ts.Type;
2385
+ *
2386
+ * if (isIntrinsicUnknownType(type)) {
2387
+ * // ...
2388
+ * }
2389
+ * ```
2390
+ */
2391
+ declare function isIntrinsicUnknownType(type: ts.Type): type is IntrinsicUnknownType;
2392
+ /**
2393
+ * Determines whether the given type is the "void" intrinsic type.
2394
+ * @category Types - Type Guards
2395
+ * @example
2396
+ * ```ts
2397
+ * declare const type: ts.Type;
2398
+ *
2399
+ * if (isIntrinsicVoidType(type)) {
2400
+ * // ...
2401
+ * }
2402
+ * ```
2403
+ */
2404
+ declare function isIntrinsicVoidType(type: ts.Type): type is IntrinsicVoidType;
2405
+
2406
+ /**
2407
+ * A type that is both an {@link IntrinsicType} and a `FreshableType`
2408
+ * @category Type Types
2409
+ */
2410
+ interface FreshableIntrinsicType extends ts.FreshableType, IntrinsicType {
2411
+ }
2412
+ /**
2413
+ * Test if a type is a `FreshableIntrinsicType`.
2414
+ * @category Types - Type Guards
2415
+ * @example
2416
+ * ```ts
2417
+ * declare const type: ts.Type;
2418
+ *
2419
+ * if (isFreshableIntrinsicType(type)) {
2420
+ * // ...
2421
+ * }
2422
+ */
2423
+ declare function isFreshableIntrinsicType(type: ts.Type): type is FreshableIntrinsicType;
2424
+ /**
2425
+ * Test if a type is a `TupleTypeReference`.
2426
+ * @category Types - Type Guards
2427
+ * @example
2428
+ * ```ts
2429
+ * declare const type: ts.Type;
2430
+ *
2431
+ * if (isTupleTypeReference(type)) {
2432
+ * // ...
2433
+ * }
2434
+ */
2435
+ declare function isTupleTypeReference(type: ts.Type): type is ts.TupleTypeReference;
2436
+
2437
+ /**
2438
+ * A boolean literal.
2439
+ * i.e. Either a "true" or "false" literal.
2440
+ * @category Type Types
2441
+ */
2442
+ interface BooleanLiteralType extends FreshableIntrinsicType {
2443
+ intrinsicName: "false" | "true";
2444
+ }
2445
+ /**
2446
+ * A "false" literal.
2447
+ * @category Type Types
2448
+ */
2449
+ interface FalseLiteralType extends BooleanLiteralType {
2450
+ intrinsicName: "false";
2451
+ }
2452
+ /**
2453
+ * A "true" literal.
2454
+ * @category Type Types
2455
+ */
2456
+ interface TrueLiteralType extends BooleanLiteralType {
2457
+ intrinsicName: "true";
2458
+ }
2459
+ /**
2460
+ * `LiteralType` from typescript except that it allows for it to work on arbitrary types.
2461
+ * @deprecated Use {@link FreshableIntrinsicType} instead.
2462
+ * @category Type Types
2463
+ */
2464
+ interface UnknownLiteralType extends FreshableIntrinsicType {
2465
+ value?: unknown;
2466
+ }
2467
+ /**
2468
+ * Test if a type is a `BigIntLiteralType`.
2469
+ * @category Types - Type Guards
2470
+ * @example
2471
+ * ```ts
2472
+ * declare const type: ts.Type;
2473
+ *
2474
+ * if (isBigIntLiteralType(type)) {
2475
+ * // ...
2476
+ * }
2477
+ * ```
2478
+ */
2479
+ declare function isBigIntLiteralType(type: ts.Type): type is ts.BigIntLiteralType;
2480
+ /**
2481
+ * Determines whether the given type is a boolean literal type.
2482
+ * @category Types - Type Guards
2483
+ * @example
2484
+ * ```ts
2485
+ * declare const type: ts.Type;
2486
+ *
2487
+ * if (isBooleanLiteralType(type)) {
2488
+ * // ...
2489
+ * }
2490
+ * ```
2491
+ */
2492
+ declare function isBooleanLiteralType(type: ts.Type): type is BooleanLiteralType;
2493
+ /**
2494
+ * Determines whether the given type is a boolean literal type for "false".
2495
+ * @category Types - Type Guards
2496
+ * @example
2497
+ * ```ts
2498
+ * declare const type: ts.Type;
2499
+ *
2500
+ * if (isFalseLiteralType(type)) {
2501
+ * // ...
2502
+ * }
2503
+ * ```
2504
+ */
2505
+ declare function isFalseLiteralType(type: ts.Type): type is FalseLiteralType;
2506
+ /**
2507
+ * Test if a type is a `LiteralType`.
2508
+ * @category Types - Type Guards
2509
+ * @example
2510
+ * ```ts
2511
+ * declare const type: ts.Type;
2512
+ *
2513
+ * if (isLiteralType(type)) {
2514
+ * // ...
2515
+ * }
2516
+ * ```
2517
+ */
2518
+ declare function isLiteralType(type: ts.Type): type is ts.LiteralType;
2519
+ /**
2520
+ * Test if a type is a `NumberLiteralType`.
2521
+ * @category Types - Type Guards
2522
+ * @example
2523
+ * ```ts
2524
+ * declare const type: ts.Type;
2525
+ *
2526
+ * if (isNumberLiteralType(type)) {
2527
+ * // ...
2528
+ * }
2529
+ * ```
2530
+ */
2531
+ declare function isNumberLiteralType(type: ts.Type): type is ts.NumberLiteralType;
2532
+ /**
2533
+ * Test if a type is a `StringLiteralType`.
2534
+ * @category Types - Type Guards
2535
+ * @example
2536
+ * ```ts
2537
+ * declare const type: ts.Type;
2538
+ *
2539
+ * if (isStringLiteralType(type)) {
2540
+ * // ...
2541
+ * }
2542
+ * ```
2543
+ */
2544
+ declare function isStringLiteralType(type: ts.Type): type is ts.StringLiteralType;
2545
+ /**
2546
+ * Test if a type is a `TemplateLiteralType`.
2547
+ * @category Types - Type Guards
2548
+ * @example
2549
+ * ```ts
2550
+ * declare const type: ts.Type;
2551
+ *
2552
+ * if (isTemplateLiteralType(type)) {
2553
+ * // ...
2554
+ * }
2555
+ * ```
2556
+ */
2557
+ declare function isTemplateLiteralType(type: ts.Type): type is ts.TemplateLiteralType;
2558
+ /**
2559
+ * Determines whether the given type is a boolean literal type for "true".
2560
+ * @category Types - Type Guards
2561
+ * @example
2562
+ * ```ts
2563
+ * declare const type: ts.Type;
2564
+ *
2565
+ * if (isTrueLiteralType(type)) {
2566
+ * // ...
2567
+ * }
2568
+ * ```
2569
+ */
2570
+ declare function isTrueLiteralType(type: ts.Type): type is TrueLiteralType;
2571
+
2572
+ /**
2573
+ * Test if a type is a `EvolvingArrayType`.
2574
+ * @category Types - Type Guards
2575
+ * @example
2576
+ * ```ts
2577
+ * declare const type: ts.Type;
2578
+ *
2579
+ * if (isEvolvingArrayType(type)) {
2580
+ * // ...
2581
+ * }
2582
+ * ```
2583
+ */
2584
+ declare function isEvolvingArrayType(type: ts.Type): type is ts.EvolvingArrayType;
2585
+ /**
2586
+ * Test if a type is a `TupleType`.
2587
+ * @category Types - Type Guards
2588
+ * @example
2589
+ * ```ts
2590
+ * declare const type: ts.Type;
2591
+ *
2592
+ * if (isTupleType(type)) {
2593
+ * // ...
2594
+ * }
2595
+ * ```
2596
+ */
2597
+ declare function isTupleType(type: ts.Type): type is ts.TupleType;
2598
+ /**
2599
+ * Test if a type is a `TypeReference`.
2600
+ * @category Types - Type Guards
2601
+ * @example
2602
+ * ```ts
2603
+ * declare const type: ts.Type;
2604
+ *
2605
+ * if (isTypeReference(type)) {
2606
+ * // ...
2607
+ * }
2608
+ * ```
2609
+ */
2610
+ declare function isTypeReference(type: ts.Type): type is ts.TypeReference;
2611
+
2612
+ /**
2613
+ * Test if a type is a `ConditionalType`.
2614
+ * @category Types - Type Guards
2615
+ * @example
2616
+ * ```ts
2617
+ * declare const type: ts.Type;
2618
+ *
2619
+ * if (isConditionalType(type)) {
2620
+ * // ...
2621
+ * }
2622
+ * ```
2623
+ */
2624
+ declare function isConditionalType(type: ts.Type): type is ts.ConditionalType;
2625
+ /**
2626
+ * Test if a type is a `EnumType`.
2627
+ * @category Types - Type Guards
2628
+ * @example
2629
+ * ```ts
2630
+ * declare const type: ts.Type;
2631
+ *
2632
+ * if (isEnumType(type)) {
2633
+ * // ...
2634
+ * }
2635
+ * ```
2636
+ */
2637
+ declare function isEnumType(type: ts.Type): type is ts.EnumType;
2638
+ /**
2639
+ * Test if a type is a `FreshableType`.
2640
+ * @category Types - Type Guards
2641
+ * @example
2642
+ * ```ts
2643
+ * declare const type: ts.Type;
2644
+ *
2645
+ * if (isFreshableType(type)) {
2646
+ * // ...
2647
+ * }
2648
+ * ```
2649
+ */
2650
+ declare function isFreshableType(type: ts.Type): type is ts.FreshableType;
2651
+ /**
2652
+ * Test if a type is a `IndexedAccessType`.
2653
+ * @category Types - Type Guards
2654
+ * @example
2655
+ * ```ts
2656
+ * declare const type: ts.Type;
2657
+ *
2658
+ * if (isIndexedAccessType(type)) {
2659
+ * // ...
2660
+ * }
2661
+ * ```
2662
+ */
2663
+ declare function isIndexedAccessType(type: ts.Type): type is ts.IndexedAccessType;
2664
+ /**
2665
+ * Test if a type is a `IndexType`.
2666
+ * @category Types - Type Guards
2667
+ * @example
2668
+ * ```ts
2669
+ * declare const type: ts.Type;
2670
+ *
2671
+ * if (isIndexType(type)) {
2672
+ * // ...
2673
+ * }
2674
+ * ```
2675
+ */
2676
+ declare function isIndexType(type: ts.Type): type is ts.IndexType;
2677
+ /**
2678
+ * Test if a type is a `InstantiableType`.
2679
+ * @category Types - Type Guards
2680
+ * @example
2681
+ * ```ts
2682
+ * declare const type: ts.Type;
2683
+ *
2684
+ * if (isInstantiableType(type)) {
2685
+ * // ...
2686
+ * }
2687
+ * ```
2688
+ */
2689
+ declare function isInstantiableType(type: ts.Type): type is ts.InstantiableType;
2690
+ /**
2691
+ * Test if a type is a `IntersectionType`.
2692
+ * @category Types - Type Guards
2693
+ * @example
2694
+ * ```ts
2695
+ * declare const type: ts.Type;
2696
+ *
2697
+ * if (isIntersectionType(type)) {
2698
+ * // ...
2699
+ * }
2700
+ * ```
2701
+ */
2702
+ declare function isIntersectionType(type: ts.Type): type is ts.IntersectionType;
2703
+ /**
2704
+ * Test if a type is a `ObjectType`.
2705
+ * @category Types - Type Guards
2706
+ * @example
2707
+ * ```ts
2708
+ * declare const type: ts.Type;
2709
+ *
2710
+ * if (isObjectType(type)) {
2711
+ * // ...
2712
+ * }
2713
+ * ```
2714
+ */
2715
+ declare function isObjectType(type: ts.Type): type is ts.ObjectType;
2716
+ /**
2717
+ * Test if a type is a `StringMappingType`.
2718
+ * @category Types - Type Guards
2719
+ * @example
2720
+ * ```ts
2721
+ * declare const type: ts.Type;
2722
+ *
2723
+ * if (isStringMappingType(type)) {
2724
+ * // ...
2725
+ * }
2726
+ * ```
2727
+ */
2728
+ declare function isStringMappingType(type: ts.Type): type is ts.StringMappingType;
2729
+ /**
2730
+ * Test if a type is a `SubstitutionType`.
2731
+ * @category Types - Type Guards
2732
+ * @example
2733
+ * ```ts
2734
+ * declare const type: ts.Type;
2735
+ *
2736
+ * if (isSubstitutionType(type)) {
2737
+ * // ...
2738
+ * }
2739
+ * ```
2740
+ */
2741
+ declare function isSubstitutionType(type: ts.Type): type is ts.SubstitutionType;
2742
+ /**
2743
+ * Test if a type is a `TypeParameter`.
2744
+ *
2745
+ * Note: It is intentional that this is not a type guard.
2746
+ * @see https://github.com/JoshuaKGoldberg/ts-api-utils/issues/382
2747
+ * @category Types - Type Guards
2748
+ * @example
2749
+ * ```ts
2750
+ * declare const type: ts.Type;
2751
+ *
2752
+ * if (isTypeParameter(type)) {
2753
+ * // ...
2754
+ * }
2755
+ * ```
2756
+ */
2757
+ declare function isTypeParameter(type: ts.Type): boolean;
2758
+ /**
2759
+ * Test if a type is a `TypeVariable`.
2760
+ * @category Types - Type Guards
2761
+ * @example
2762
+ * ```ts
2763
+ * declare const type: ts.Type;
2764
+ *
2765
+ * if (isTypeVariable(type)) {
2766
+ * // ...
2767
+ * }
2768
+ * ```
2769
+ */
2770
+ declare function isTypeVariable(type: ts.Type): type is ts.TypeVariable;
2771
+ /**
2772
+ * Test if a type is a `UnionOrIntersectionType`.
2773
+ * @category Types - Type Guards
2774
+ * @example
2775
+ * ```ts
2776
+ * declare const type: ts.Type;
2777
+ *
2778
+ * if (isUnionOrIntersectionType(type)) {
2779
+ * // ...
2780
+ * }
2781
+ * ```
2782
+ */
2783
+ declare function isUnionOrIntersectionType(type: ts.Type): type is ts.UnionOrIntersectionType;
2784
+ /**
2785
+ * Test if a type is a `UnionType`.
2786
+ * @category Types - Type Guards
2787
+ * @example
2788
+ * ```ts
2789
+ * declare const type: ts.Type;
2790
+ *
2791
+ * if (isUnionType(type)) {
2792
+ * // ...
2793
+ * }
2794
+ * ```
2795
+ */
2796
+ declare function isUnionType(type: ts.Type): type is ts.UnionType;
2797
+ /**
2798
+ * Test if a type is a `UniqueESSymbolType`.
2799
+ * @category Types - Type Guards
2800
+ * @example
2801
+ * ```ts
2802
+ * declare const type: ts.Type;
2803
+ *
2804
+ * if (isUniqueESSymbolType(type)) {
2805
+ * // ...
2806
+ * }
2807
+ * ```
2808
+ */
2809
+ declare function isUniqueESSymbolType(type: ts.Type): type is ts.UniqueESSymbolType;
2810
+
2811
+ /**
2812
+ * Get the intersection type parts of the given type.
2813
+ *
2814
+ * If the given type is not a intersection type, an array contain only that type will be returned.
2815
+ * @category Types - Utilities
2816
+ * @example
2817
+ * ```ts
2818
+ * declare const type: ts.Type;
2819
+ *
2820
+ * for (const constituent of intersectionConstituents(type)) {
2821
+ * // ...
2822
+ * }
2823
+ * ```
2824
+ */
2825
+ declare function intersectionConstituents(type: ts.Type): ts.Type[];
2826
+ /**
2827
+ * @alias intersectionConstituents
2828
+ * @deprecated Use {@link intersectionConstituents} instead.
2829
+ * @category Types - Utilities
2830
+ * ```
2831
+ */
2832
+ declare const intersectionTypeParts: typeof intersectionConstituents;
2833
+ /**
2834
+ * Determines whether a type is definitely falsy. This function doesn't unwrap union types.
2835
+ * @category Types - Utilities
2836
+ * @example
2837
+ * ```ts
2838
+ * declare const type: ts.Type;
2839
+ *
2840
+ * if (isFalsyType(type)) {
2841
+ * // ...
2842
+ * }
2843
+ * ```
2844
+ */
2845
+ declare function isFalsyType(type: ts.Type): boolean;
2846
+ /**
2847
+ * Determines whether writing to a certain property of a given type is allowed.
2848
+ * @category Types - Utilities
2849
+ * @example
2850
+ * ```ts
2851
+ * declare const property: ts.Symbol;
2852
+ * declare const type: ts.Type;
2853
+ * declare const typeChecker: ts.TypeChecker;
2854
+ *
2855
+ * if (isPropertyReadonlyInType(type, property.getEscapedName(), typeChecker)) {
2856
+ * // ...
2857
+ * }
2858
+ * ```
2859
+ */
2860
+ declare function isPropertyReadonlyInType(type: ts.Type, name: ts.__String, typeChecker: ts.TypeChecker): boolean;
2861
+ /**
2862
+ * Determines whether a type is thenable and thus can be used with `await`.
2863
+ * @category Types - Utilities
2864
+ * @example
2865
+ * ```ts
2866
+ * declare const node: ts.Node;
2867
+ * declare const type: ts.Type;
2868
+ * declare const typeChecker: ts.TypeChecker;
2869
+ *
2870
+ * if (isThenableType(typeChecker, node, type)) {
2871
+ * // ...
2872
+ * }
2873
+ * ```
2874
+ */
2875
+ declare function isThenableType(typeChecker: ts.TypeChecker, node: ts.Node, type: ts.Type): boolean;
2876
+ /**
2877
+ * Determines whether a type is thenable and thus can be used with `await`.
2878
+ * @category Types - Utilities
2879
+ * @example
2880
+ * ```ts
2881
+ * declare const expression: ts.Expression;
2882
+ * declare const typeChecker: ts.TypeChecker;
2883
+ *
2884
+ * if (isThenableType(typeChecker, expression)) {
2885
+ * // ...
2886
+ * }
2887
+ * ```
2888
+ * @example
2889
+ * ```ts
2890
+ * declare const expression: ts.Expression;
2891
+ * declare const typeChecker: ts.TypeChecker;
2892
+ * declare const type: ts.Type;
2893
+ *
2894
+ * if (isThenableType(typeChecker, expression, type)) {
2895
+ * // ...
2896
+ * }
2897
+ * ```
2898
+ */
2899
+ declare function isThenableType(typeChecker: ts.TypeChecker, node: ts.Expression, type?: ts.Type): boolean;
2900
+ /**
2901
+ * Test if the given symbol has a readonly declaration.
2902
+ * @category Symbols - Utilities
2903
+ * @example
2904
+ * ```ts
2905
+ * declare const symbol: ts.Symbol;
2906
+ * declare const typeChecker: ts.TypeChecker;
2907
+ *
2908
+ * if (symbolHasReadonlyDeclaration(symbol, typeChecker)) {
2909
+ * // ...
2910
+ * }
2911
+ * ```
2912
+ * @deprecated This is not used by any consumers known by ts-api-utils,
2913
+ * and so the public export will be removed in a future major version.
2914
+ */
2915
+ declare function symbolHasReadonlyDeclaration(symbol: ts.Symbol, typeChecker: ts.TypeChecker): boolean;
2916
+ /**
2917
+ * Get the intersection or union type parts of the given type.
2918
+ *
2919
+ * Note that this is a shallow collection: it only returns `type.types` or `[type]`.
2920
+ *
2921
+ * If the given type is not an intersection or union type, an array contain only that type will be returned.
2922
+ * @category Types - Utilities
2923
+ * @example
2924
+ * ```ts
2925
+ * declare const type: ts.Type;
2926
+ *
2927
+ * for (const constituent of typeConstituents(type)) {
2928
+ * // ...
2929
+ * }
2930
+ * ```
2931
+ */
2932
+ declare function typeConstituents(type: ts.Type): ts.Type[];
2933
+ /**
2934
+ * TS's `type.isLiteral()` is bugged before TS v5.0 and won't return `true` for
2935
+ * bigint literals. Use this function instead if you need to check for bigint
2936
+ * literals in TS versions before v5.0. Otherwise, you should just use
2937
+ * `type.isLiteral()`.
2938
+ * @see https://github.com/microsoft/TypeScript/pull/50929
2939
+ * @category Types - Utilities
2940
+ * @example
2941
+ * ```ts
2942
+ * declare const type: ts.Type;
2943
+ *
2944
+ * if (typeIsLiteral(type)) {
2945
+ * // ...
2946
+ * }
2947
+ * ```
2948
+ */
2949
+ declare function typeIsLiteral(type: ts.Type): type is ts.LiteralType;
2950
+ /**
2951
+ * @alias typeConstituents
2952
+ * @deprecated Use {@link typeConstituents} instead.
2953
+ * @category Types - Utilities
2954
+ */
2955
+ declare const typeParts: typeof typeConstituents;
2956
+ /**
2957
+ * Get the union type parts of the given type.
2958
+ *
2959
+ * If the given type is not a union type, an array contain only that type will be returned.
2960
+ * @category Types - Utilities
2961
+ * @example
2962
+ * ```ts
2963
+ * declare const type: ts.Type;
2964
+ *
2965
+ * for (const constituent of unionConstituents(type)) {
2966
+ * // ...
2967
+ * }
2968
+ * ```
2969
+ */
2970
+ declare function unionConstituents(type: ts.Type): ts.Type[];
2971
+ /**
2972
+ * @alias unionConstituents
2973
+ * @deprecated Use {@link unionConstituents} instead.
2974
+ * @category Types - Utilities
2975
+ */
2976
+ declare const unionTypeParts: typeof unionConstituents;
2977
+
2978
+ /**
2979
+ * Which "domain"(s) (most commonly, type or value space) a declaration is within.
2980
+ */
2981
+ declare enum DeclarationDomain {
2982
+ Namespace = 1,
2983
+ Type = 2,
2984
+ Value = 4,
2985
+ Any = 7,
2986
+ Import = 8
2987
+ }
2988
+
2989
+ /**
2990
+ * Which "domain"(s) (most commonly, type or value space) a usage is within.
2991
+ */
2992
+ declare enum UsageDomain {
2993
+ Namespace = 1,
2994
+ Type = 2,
2995
+ Value = 4,
2996
+ Any = 7,
2997
+ TypeQuery = 8,
2998
+ ValueOrNamespace = 5
2999
+ }
3000
+
3001
+ /**
3002
+ * An instance of an item (type or value) being used.
3003
+ */
3004
+ interface Usage {
3005
+ /**
3006
+ * Which space(s) the usage is within.
3007
+ */
3008
+ domain: UsageDomain;
3009
+ location: ts.Identifier;
3010
+ }
3011
+ /**
3012
+ * How an item (type or value) was declared and/or referenced.
3013
+ */
3014
+ interface UsageInfo {
3015
+ /**
3016
+ * Locations where the item was declared.
3017
+ */
3018
+ declarations: ts.Identifier[];
3019
+ /**
3020
+ * Which space(s) the item is within.
3021
+ */
3022
+ domain: DeclarationDomain;
3023
+ /**
3024
+ * Whether the item was exported from its module or namespace scope.
3025
+ */
3026
+ exported: boolean;
3027
+ /**
3028
+ * Whether the item's declaration was in the global scope.
3029
+ */
3030
+ inGlobalScope: boolean;
3031
+ /**
3032
+ * Each reference to the item in the file.
3033
+ */
3034
+ uses: Usage[];
3035
+ }
3036
+
3037
+ /**
3038
+ * Creates a mapping of each declared type and value to its type information.
3039
+ * @category Nodes - Other Utilities
3040
+ * @example
3041
+ * ```ts
3042
+ * declare const sourceFile: ts.SourceFile;
3043
+ *
3044
+ * const usage = collectVariableUsage(sourceFile);
3045
+ *
3046
+ * for (const [identifier, information] of usage) {
3047
+ * console.log(`${identifier.getText()} is used ${information.uses.length} time(s).`);
3048
+ * }
3049
+ * ```
3050
+ */
3051
+ declare function collectVariableUsage(sourceFile: ts.SourceFile): Map<ts.Identifier, UsageInfo>;
3052
+
3053
+ export { AccessKind, type AnyKeyword, type BigIntKeyword, type BooleanCompilerOptions, type BooleanKeyword, type BooleanLiteralType, type Comment, type ConstAssertionExpression, type ConstAssertionIdentifier, DeclarationDomain, type FalseKeyword, type FalseLiteralType, type ForEachCommentCallback, type ForEachTokenCallback, type FreshableIntrinsicType, type ImportKeyword, type IntrinsicAnyType, type IntrinsicBigIntType, type IntrinsicBooleanType, type IntrinsicESSymbolType, type IntrinsicErrorType, type IntrinsicNeverType, type IntrinsicNonPrimitiveType, type IntrinsicNullType, type IntrinsicNumberType, type IntrinsicStringType, type IntrinsicType, type IntrinsicUndefinedType, type IntrinsicUnknownType, type IntrinsicVoidType, type NamedDeclarationWithName, type NeverKeyword, type NullKeyword, type NumberKeyword, type NumericOrStringLikeLiteral, type ObjectKeyword, type StrictCompilerOption, type StringKeyword, type SuperKeyword, type SymbolKeyword, type ThisKeyword, type TrueKeyword, type TrueLiteralType, type UndefinedKeyword, type UnknownKeyword, type UnknownLiteralType, UsageDomain, type UsageInfo as VariableInfo, type Usage as VariableUse, type VoidKeyword, collectVariableUsage, forEachComment, forEachToken, getAccessKind, getCallSignaturesOfType, getPropertyOfType, getWellKnownSymbolPropertyOfType, hasDecorators, hasExpressionInitializer, hasInitializer, hasJSDoc, hasModifiers, hasType, hasTypeArguments, includesModifier, intersectionConstituents, intersectionTypeParts, isAbstractKeyword, isAccessExpression, isAccessibilityModifier, isAccessorDeclaration, isAccessorKeyword, isAnyKeyword, isArrayBindingElement, isArrayBindingOrAssignmentPattern, isAssertKeyword, isAssertsKeyword, isAssignmentKind, isAssignmentPattern, isAsyncKeyword, isAwaitKeyword, isBigIntKeyword, isBigIntLiteralType, isBindingOrAssignmentElementRestIndicator, isBindingOrAssignmentElementTarget, isBindingOrAssignmentPattern, isBindingPattern, isBlockLike, isBooleanKeyword, isBooleanLiteral, isBooleanLiteralType, isClassLikeDeclaration, isClassMemberModifier, isColonToken, isCompilerOptionEnabled, isConditionalType, isConstAssertionExpression, isConstKeyword, isDeclarationName, isDeclarationWithTypeParameterChildren, isDeclarationWithTypeParameters, isDeclareKeyword, isDefaultKeyword, isDestructuringPattern, isDotToken, isEndOfFileToken, isEntityNameExpression, isEntityNameOrEntityNameExpression, isEnumType, isEqualsGreaterThanToken, isEqualsToken, isEvolvingArrayType, isExclamationToken, isExportKeyword, isFalseKeyword, isFalseLiteral, isFalseLiteralType, isFalsyType, isForInOrOfStatement, isFreshableIntrinsicType, isFreshableType, isFunctionLikeDeclaration, isFunctionScopeBoundary, isImportExpression, isImportKeyword, isInKeyword, isIndexType, isIndexedAccessType, isInstantiableType, isIntersectionType, isIntrinsicAnyType, isIntrinsicBigIntType, isIntrinsicBooleanType, isIntrinsicESSymbolType, isIntrinsicErrorType, isIntrinsicNeverType, isIntrinsicNonPrimitiveType, isIntrinsicNullType, isIntrinsicNumberType, isIntrinsicStringType, isIntrinsicType, isIntrinsicUndefinedType, isIntrinsicUnknownType, isIntrinsicVoidType, isIterationStatement, isJSDocComment, isJSDocNamespaceBody, isJSDocNamespaceDeclaration, isJSDocText, isJSDocTypeReferencingNode, isJsonMinusNumericLiteral, isJsonObjectExpression, isJsxAttributeLike, isJsxAttributeValue, isJsxChild, isJsxTagNameExpression, isJsxTagNamePropertyAccess, isLiteralToken, isLiteralType, isModifierFlagSet, isModuleBody, isModuleName, isModuleReference, isNamedDeclarationWithName, isNamedImportBindings, isNamedImportsOrExports, isNamespaceBody, isNamespaceDeclaration, isNeverKeyword, isNodeFlagSet, isNullKeyword, isNullLiteral, isNumberKeyword, isNumberLiteralType, isNumericOrStringLikeLiteral, isNumericPropertyName, isObjectBindingOrAssignmentElement, isObjectBindingOrAssignmentPattern, isObjectFlagSet, isObjectKeyword, isObjectType, isObjectTypeDeclaration, isOutKeyword, isOverrideKeyword, isParameterPropertyModifier, isPrivateKeyword, isPropertyAccessEntityNameExpression, isPropertyNameLiteral, isPropertyReadonlyInType, isProtectedKeyword, isPseudoLiteralToken, isPublicKeyword, isQuestionDotToken, isQuestionToken, isReadonlyKeyword, isSignatureDeclaration, isStaticKeyword, isStrictCompilerOptionEnabled, isStringKeyword, isStringLiteralType, isStringMappingType, isSubstitutionType, isSuperElementAccessExpression, isSuperExpression, isSuperKeyword, isSuperProperty, isSuperPropertyAccessExpression, isSymbolFlagSet, isSymbolKeyword, isSyntaxList, isTemplateLiteralType, isThenableType, isThisExpression, isThisKeyword, isTrueKeyword, isTrueLiteral, isTrueLiteralType, isTupleType, isTupleTypeReference, isTypeFlagSet, isTypeOnlyCompatibleAliasDeclaration, isTypeParameter, isTypeReference, isTypeReferenceType, isTypeVariable, isUndefinedKeyword, isUnionOrIntersectionType, isUnionOrIntersectionTypeNode, isUnionType, isUniqueESSymbolType, isUnknownKeyword, isValidPropertyAccess, isVariableLikeDeclaration, isVoidKeyword, iterateComments, iterateTokens, symbolHasReadonlyDeclaration, typeConstituents, typeIsLiteral, typeParts, unionConstituents, unionTypeParts };