immosquare-cleaner 0.1.35 → 0.1.37

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5633) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +25 -4
  4. data/linters/eslint.config.mjs +88 -22
  5. data/linters/jscodeshift/arrow-function-transform.js +35 -0
  6. data/linters/rubocop-3.3.1.yml +88 -0
  7. data/node_modules/.bin/browserslist +1 -0
  8. data/node_modules/.bin/esparse +1 -0
  9. data/node_modules/.bin/esvalidate +1 -0
  10. data/node_modules/.bin/jscodeshift +1 -0
  11. data/node_modules/.bin/jsesc +1 -0
  12. data/node_modules/.bin/parser +1 -0
  13. data/node_modules/.bin/rimraf +1 -0
  14. data/node_modules/.bin/update-browserslist-db +1 -0
  15. data/node_modules/@ampproject/remapping/LICENSE +202 -0
  16. data/node_modules/@ampproject/remapping/README.md +218 -0
  17. data/node_modules/@ampproject/remapping/dist/remapping.mjs +197 -0
  18. data/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
  19. data/node_modules/@ampproject/remapping/dist/remapping.umd.js +202 -0
  20. data/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
  21. data/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
  22. data/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +20 -0
  23. data/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +45 -0
  24. data/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +18 -0
  25. data/node_modules/@ampproject/remapping/dist/types/types.d.ts +15 -0
  26. data/node_modules/@ampproject/remapping/package.json +75 -0
  27. data/node_modules/@babel/code-frame/LICENSE +22 -0
  28. data/node_modules/@babel/code-frame/README.md +19 -0
  29. data/node_modules/@babel/code-frame/lib/index.js +156 -0
  30. data/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  31. data/node_modules/@babel/code-frame/package.json +30 -0
  32. data/node_modules/@babel/compat-data/LICENSE +22 -0
  33. data/node_modules/@babel/compat-data/README.md +19 -0
  34. data/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  35. data/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  36. data/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
  37. data/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  38. data/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  39. data/node_modules/@babel/compat-data/data/overlapping-plugins.json +33 -0
  40. data/node_modules/@babel/compat-data/data/plugin-bugfixes.json +213 -0
  41. data/node_modules/@babel/compat-data/data/plugins.json +789 -0
  42. data/node_modules/@babel/compat-data/native-modules.js +1 -0
  43. data/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
  44. data/node_modules/@babel/compat-data/package.json +40 -0
  45. data/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
  46. data/node_modules/@babel/compat-data/plugins.js +1 -0
  47. data/node_modules/@babel/core/LICENSE +22 -0
  48. data/node_modules/@babel/core/README.md +19 -0
  49. data/node_modules/@babel/core/cjs-proxy.cjs +59 -0
  50. data/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  51. data/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  52. data/node_modules/@babel/core/lib/config/caching.js +261 -0
  53. data/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  54. data/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  55. data/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  56. data/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  57. data/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  58. data/node_modules/@babel/core/lib/config/files/configuration.js +286 -0
  59. data/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  60. data/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  61. data/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  62. data/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  63. data/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  64. data/node_modules/@babel/core/lib/config/files/index.js +78 -0
  65. data/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  66. data/node_modules/@babel/core/lib/config/files/module-types.js +176 -0
  67. data/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  68. data/node_modules/@babel/core/lib/config/files/package.js +61 -0
  69. data/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  70. data/node_modules/@babel/core/lib/config/files/plugins.js +217 -0
  71. data/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  72. data/node_modules/@babel/core/lib/config/files/types.js +3 -0
  73. data/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  74. data/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  75. data/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  76. data/node_modules/@babel/core/lib/config/full.js +310 -0
  77. data/node_modules/@babel/core/lib/config/full.js.map +1 -0
  78. data/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  79. data/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  80. data/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  81. data/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  82. data/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  83. data/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  84. data/node_modules/@babel/core/lib/config/index.js +93 -0
  85. data/node_modules/@babel/core/lib/config/index.js.map +1 -0
  86. data/node_modules/@babel/core/lib/config/item.js +67 -0
  87. data/node_modules/@babel/core/lib/config/item.js.map +1 -0
  88. data/node_modules/@babel/core/lib/config/partial.js +158 -0
  89. data/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  90. data/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  91. data/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  92. data/node_modules/@babel/core/lib/config/plugin.js +33 -0
  93. data/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  94. data/node_modules/@babel/core/lib/config/printer.js +113 -0
  95. data/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  96. data/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  97. data/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  98. data/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  99. data/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  100. data/node_modules/@babel/core/lib/config/util.js +31 -0
  101. data/node_modules/@babel/core/lib/config/util.js.map +1 -0
  102. data/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  103. data/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  104. data/node_modules/@babel/core/lib/config/validation/options.js +189 -0
  105. data/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  106. data/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  107. data/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  108. data/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  109. data/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  110. data/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  111. data/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  112. data/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  113. data/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  114. data/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  115. data/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  116. data/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  117. data/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  118. data/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  119. data/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  120. data/node_modules/@babel/core/lib/index.js +242 -0
  121. data/node_modules/@babel/core/lib/index.js.map +1 -0
  122. data/node_modules/@babel/core/lib/parse.js +47 -0
  123. data/node_modules/@babel/core/lib/parse.js.map +1 -0
  124. data/node_modules/@babel/core/lib/parser/index.js +79 -0
  125. data/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  126. data/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +339 -0
  127. data/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  128. data/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
  129. data/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  130. data/node_modules/@babel/core/lib/transform-ast.js +50 -0
  131. data/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  132. data/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  133. data/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  134. data/node_modules/@babel/core/lib/transform-file.js +40 -0
  135. data/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  136. data/node_modules/@babel/core/lib/transform.js +49 -0
  137. data/node_modules/@babel/core/lib/transform.js.map +1 -0
  138. data/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +84 -0
  139. data/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  140. data/node_modules/@babel/core/lib/transformation/file/file.js +216 -0
  141. data/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  142. data/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  143. data/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  144. data/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  145. data/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  146. data/node_modules/@babel/core/lib/transformation/index.js +101 -0
  147. data/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  148. data/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  149. data/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  150. data/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  151. data/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  152. data/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  153. data/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  154. data/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  155. data/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  156. data/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1033 -0
  157. data/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  158. data/node_modules/@babel/core/node_modules/semver/README.md +443 -0
  159. data/node_modules/@babel/core/node_modules/semver/bin/semver.js +174 -0
  160. data/node_modules/@babel/core/node_modules/semver/package.json +38 -0
  161. data/node_modules/@babel/core/node_modules/semver/semver.js +1643 -0
  162. data/node_modules/@babel/core/package.json +82 -0
  163. data/node_modules/@babel/core/src/config/files/index-browser.ts +109 -0
  164. data/node_modules/@babel/core/src/config/files/index.ts +29 -0
  165. data/node_modules/@babel/core/src/config/resolve-targets-browser.ts +40 -0
  166. data/node_modules/@babel/core/src/config/resolve-targets.ts +56 -0
  167. data/node_modules/@babel/core/src/transform-file-browser.ts +31 -0
  168. data/node_modules/@babel/core/src/transform-file.ts +55 -0
  169. data/node_modules/@babel/generator/LICENSE +22 -0
  170. data/node_modules/@babel/generator/README.md +19 -0
  171. data/node_modules/@babel/generator/lib/buffer.js +323 -0
  172. data/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  173. data/node_modules/@babel/generator/lib/generators/base.js +92 -0
  174. data/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  175. data/node_modules/@babel/generator/lib/generators/classes.js +177 -0
  176. data/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  177. data/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  178. data/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  179. data/node_modules/@babel/generator/lib/generators/flow.js +668 -0
  180. data/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  181. data/node_modules/@babel/generator/lib/generators/index.js +128 -0
  182. data/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  183. data/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
  184. data/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  185. data/node_modules/@babel/generator/lib/generators/methods.js +173 -0
  186. data/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  187. data/node_modules/@babel/generator/lib/generators/modules.js +274 -0
  188. data/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  189. data/node_modules/@babel/generator/lib/generators/statements.js +275 -0
  190. data/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  191. data/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
  192. data/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  193. data/node_modules/@babel/generator/lib/generators/types.js +221 -0
  194. data/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  195. data/node_modules/@babel/generator/lib/generators/typescript.js +690 -0
  196. data/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  197. data/node_modules/@babel/generator/lib/index.js +89 -0
  198. data/node_modules/@babel/generator/lib/index.js.map +1 -0
  199. data/node_modules/@babel/generator/lib/node/index.js +76 -0
  200. data/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  201. data/node_modules/@babel/generator/lib/node/parentheses.js +225 -0
  202. data/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  203. data/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
  204. data/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  205. data/node_modules/@babel/generator/lib/printer.js +684 -0
  206. data/node_modules/@babel/generator/lib/printer.js.map +1 -0
  207. data/node_modules/@babel/generator/lib/source-map.js +85 -0
  208. data/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  209. data/node_modules/@babel/generator/package.json +38 -0
  210. data/node_modules/@babel/helper-annotate-as-pure/LICENSE +22 -0
  211. data/node_modules/@babel/helper-annotate-as-pure/README.md +19 -0
  212. data/node_modules/@babel/helper-annotate-as-pure/lib/index.js +23 -0
  213. data/node_modules/@babel/helper-annotate-as-pure/lib/index.js.map +1 -0
  214. data/node_modules/@babel/helper-annotate-as-pure/package.json +24 -0
  215. data/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  216. data/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  217. data/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  218. data/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  219. data/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  220. data/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  221. data/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
  222. data/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  223. data/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
  224. data/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  225. data/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  226. data/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  227. data/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
  228. data/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  229. data/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  230. data/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  231. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/README.md +166 -0
  232. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/index.js +334 -0
  233. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist/README.md +204 -0
  234. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist/iterator.js +8 -0
  235. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist/package.json +29 -0
  236. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist/yallist.js +426 -0
  237. data/node_modules/@babel/helper-compilation-targets/node_modules/lru-cache/package.json +32 -0
  238. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/LICENSE +15 -0
  239. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/README.md +443 -0
  240. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/bin/semver.js +174 -0
  241. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/package.json +38 -0
  242. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/range.bnf +16 -0
  243. data/node_modules/@babel/helper-compilation-targets/node_modules/semver/semver.js +1643 -0
  244. data/node_modules/@babel/helper-compilation-targets/package.json +40 -0
  245. data/node_modules/@babel/helper-create-class-features-plugin/LICENSE +22 -0
  246. data/node_modules/@babel/helper-create-class-features-plugin/README.md +19 -0
  247. data/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js +137 -0
  248. data/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js.map +1 -0
  249. data/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +1290 -0
  250. data/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js.map +1 -0
  251. data/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +147 -0
  252. data/node_modules/@babel/helper-create-class-features-plugin/lib/features.js.map +1 -0
  253. data/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +1036 -0
  254. data/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js.map +1 -0
  255. data/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +245 -0
  256. data/node_modules/@babel/helper-create-class-features-plugin/lib/index.js.map +1 -0
  257. data/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +133 -0
  258. data/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js.map +1 -0
  259. data/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +13 -0
  260. data/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js.map +1 -0
  261. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/LICENSE +15 -0
  262. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/README.md +443 -0
  263. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/bin/semver.js +174 -0
  264. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/package.json +38 -0
  265. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/range.bnf +16 -0
  266. data/node_modules/@babel/helper-create-class-features-plugin/node_modules/semver/semver.js +1643 -0
  267. data/node_modules/@babel/helper-create-class-features-plugin/package.json +45 -0
  268. data/node_modules/@babel/helper-create-class-features-plugin/tsconfig.json +32 -0
  269. data/node_modules/@babel/helper-create-class-features-plugin/tsconfig.tsbuildinfo +1 -0
  270. data/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
  271. data/node_modules/@babel/helper-environment-visitor/README.md +19 -0
  272. data/node_modules/@babel/helper-environment-visitor/lib/index.js +52 -0
  273. data/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
  274. data/node_modules/@babel/helper-environment-visitor/package.json +29 -0
  275. data/node_modules/@babel/helper-function-name/LICENSE +22 -0
  276. data/node_modules/@babel/helper-function-name/README.md +19 -0
  277. data/node_modules/@babel/helper-function-name/lib/index.js +170 -0
  278. data/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
  279. data/node_modules/@babel/helper-function-name/package.json +25 -0
  280. data/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
  281. data/node_modules/@babel/helper-hoist-variables/README.md +19 -0
  282. data/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
  283. data/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
  284. data/node_modules/@babel/helper-hoist-variables/package.json +28 -0
  285. data/node_modules/@babel/helper-member-expression-to-functions/LICENSE +22 -0
  286. data/node_modules/@babel/helper-member-expression-to-functions/README.md +19 -0
  287. data/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +397 -0
  288. data/node_modules/@babel/helper-member-expression-to-functions/lib/index.js.map +1 -0
  289. data/node_modules/@babel/helper-member-expression-to-functions/package.json +27 -0
  290. data/node_modules/@babel/helper-member-expression-to-functions/tsconfig.json +17 -0
  291. data/node_modules/@babel/helper-member-expression-to-functions/tsconfig.tsbuildinfo +1 -0
  292. data/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  293. data/node_modules/@babel/helper-module-imports/README.md +19 -0
  294. data/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  295. data/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  296. data/node_modules/@babel/helper-module-imports/lib/import-injector.js +304 -0
  297. data/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  298. data/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  299. data/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  300. data/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  301. data/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  302. data/node_modules/@babel/helper-module-imports/package.json +28 -0
  303. data/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  304. data/node_modules/@babel/helper-module-transforms/README.md +19 -0
  305. data/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
  306. data/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  307. data/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  308. data/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  309. data/node_modules/@babel/helper-module-transforms/lib/index.js +380 -0
  310. data/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  311. data/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
  312. data/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
  313. data/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +358 -0
  314. data/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  315. data/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +376 -0
  316. data/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  317. data/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
  318. data/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  319. data/node_modules/@babel/helper-module-transforms/package.json +35 -0
  320. data/node_modules/@babel/helper-optimise-call-expression/LICENSE +22 -0
  321. data/node_modules/@babel/helper-optimise-call-expression/README.md +19 -0
  322. data/node_modules/@babel/helper-optimise-call-expression/lib/index.js +33 -0
  323. data/node_modules/@babel/helper-optimise-call-expression/lib/index.js.map +1 -0
  324. data/node_modules/@babel/helper-optimise-call-expression/package.json +28 -0
  325. data/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  326. data/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  327. data/node_modules/@babel/helper-plugin-utils/lib/index.js +77 -0
  328. data/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
  329. data/node_modules/@babel/helper-plugin-utils/package.json +24 -0
  330. data/node_modules/@babel/helper-plugin-utils/tsconfig.json +39 -0
  331. data/node_modules/@babel/helper-plugin-utils/tsconfig.tsbuildinfo +1 -0
  332. data/node_modules/@babel/helper-replace-supers/LICENSE +22 -0
  333. data/node_modules/@babel/helper-replace-supers/README.md +19 -0
  334. data/node_modules/@babel/helper-replace-supers/lib/index.js +231 -0
  335. data/node_modules/@babel/helper-replace-supers/lib/index.js.map +1 -0
  336. data/node_modules/@babel/helper-replace-supers/package.json +32 -0
  337. data/node_modules/@babel/helper-simple-access/LICENSE +22 -0
  338. data/node_modules/@babel/helper-simple-access/README.md +19 -0
  339. data/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
  340. data/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
  341. data/node_modules/@babel/helper-simple-access/package.json +28 -0
  342. data/node_modules/@babel/helper-skip-transparent-expression-wrappers/LICENSE +22 -0
  343. data/node_modules/@babel/helper-skip-transparent-expression-wrappers/README.md +19 -0
  344. data/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js +34 -0
  345. data/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js.map +1 -0
  346. data/node_modules/@babel/helper-skip-transparent-expression-wrappers/package.json +30 -0
  347. data/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
  348. data/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
  349. data/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
  350. data/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
  351. data/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
  352. data/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  353. data/node_modules/@babel/helper-string-parser/README.md +19 -0
  354. data/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  355. data/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  356. data/node_modules/@babel/helper-string-parser/package.json +28 -0
  357. data/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  358. data/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  359. data/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  360. data/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  361. data/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  362. data/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  363. data/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  364. data/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  365. data/node_modules/@babel/helper-validator-identifier/package.json +28 -0
  366. data/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +73 -0
  367. data/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  368. data/node_modules/@babel/helper-validator-option/README.md +19 -0
  369. data/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  370. data/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  371. data/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  372. data/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  373. data/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  374. data/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  375. data/node_modules/@babel/helper-validator-option/package.json +24 -0
  376. data/node_modules/@babel/helpers/LICENSE +22 -0
  377. data/node_modules/@babel/helpers/README.md +19 -0
  378. data/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
  379. data/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
  380. data/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  381. data/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  382. data/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
  383. data/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  384. data/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  385. data/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  386. data/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
  387. data/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  388. data/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
  389. data/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  390. data/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
  391. data/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  392. data/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js +236 -0
  393. data/node_modules/@babel/helpers/lib/helpers/applyDecs2311.js.map +1 -0
  394. data/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js +14 -0
  395. data/node_modules/@babel/helpers/lib/helpers/assertClassBrand.js.map +1 -0
  396. data/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  397. data/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  398. data/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
  399. data/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  400. data/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  401. data/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  402. data/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
  403. data/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
  404. data/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  405. data/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  406. data/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js +12 -0
  407. data/node_modules/@babel/helpers/lib/helpers/classPrivateFieldGet2.js.map +1 -0
  408. data/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js +13 -0
  409. data/node_modules/@babel/helpers/lib/helpers/classPrivateFieldSet2.js.map +1 -0
  410. data/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js +12 -0
  411. data/node_modules/@babel/helpers/lib/helpers/classPrivateGetter.js.map +1 -0
  412. data/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js +13 -0
  413. data/node_modules/@babel/helpers/lib/helpers/classPrivateSetter.js.map +1 -0
  414. data/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
  415. data/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
  416. data/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  417. data/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  418. data/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  419. data/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  420. data/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
  421. data/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
  422. data/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +49 -0
  423. data/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
  424. data/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
  425. data/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
  426. data/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  427. data/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  428. data/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
  429. data/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
  430. data/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  431. data/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  432. data/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  433. data/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  434. data/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +499 -0
  435. data/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  436. data/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
  437. data/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
  438. data/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
  439. data/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
  440. data/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
  441. data/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
  442. data/node_modules/@babel/helpers/lib/helpers/toSetter.js +18 -0
  443. data/node_modules/@babel/helpers/lib/helpers/toSetter.js.map +1 -0
  444. data/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  445. data/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  446. data/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  447. data/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  448. data/node_modules/@babel/helpers/lib/helpers/usingCtx.js +73 -0
  449. data/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
  450. data/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
  451. data/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  452. data/node_modules/@babel/helpers/lib/helpers-generated.js +56 -0
  453. data/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  454. data/node_modules/@babel/helpers/lib/helpers.js +1673 -0
  455. data/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
  456. data/node_modules/@babel/helpers/lib/index.js +243 -0
  457. data/node_modules/@babel/helpers/lib/index.js.map +1 -0
  458. data/node_modules/@babel/helpers/package.json +32 -0
  459. data/node_modules/@babel/helpers/scripts/generate-helpers.js +129 -0
  460. data/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
  461. data/node_modules/@babel/helpers/scripts/package.json +1 -0
  462. data/node_modules/@babel/highlight/LICENSE +22 -0
  463. data/node_modules/@babel/highlight/README.md +19 -0
  464. data/node_modules/@babel/highlight/lib/index.js +119 -0
  465. data/node_modules/@babel/highlight/lib/index.js.map +1 -0
  466. data/node_modules/@babel/highlight/node_modules/chalk/index.js +228 -0
  467. data/node_modules/@babel/highlight/node_modules/chalk/index.js.flow +93 -0
  468. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/index.js +165 -0
  469. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/CHANGELOG.md +54 -0
  470. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/LICENSE +21 -0
  471. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/README.md +68 -0
  472. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/conversions.js +868 -0
  473. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/index.js +78 -0
  474. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/LICENSE +8 -0
  475. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/README.md +11 -0
  476. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/index.js +152 -0
  477. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/package.json +25 -0
  478. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/test.js +7 -0
  479. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/package.json +46 -0
  480. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/route.js +97 -0
  481. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/package.json +56 -0
  482. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/ansi-styles/readme.md +147 -0
  483. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/escape-string-regexp/index.js +11 -0
  484. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/escape-string-regexp/license +21 -0
  485. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/escape-string-regexp/package.json +41 -0
  486. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/escape-string-regexp/readme.md +27 -0
  487. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/browser.js +5 -0
  488. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/index.js +131 -0
  489. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/index.js +8 -0
  490. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/license +9 -0
  491. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/package.json +44 -0
  492. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/readme.md +70 -0
  493. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/package.json +53 -0
  494. data/node_modules/@babel/highlight/node_modules/chalk/node_modules/supports-color/readme.md +66 -0
  495. data/node_modules/@babel/highlight/node_modules/chalk/package.json +71 -0
  496. data/node_modules/@babel/highlight/node_modules/chalk/readme.md +314 -0
  497. data/node_modules/@babel/highlight/node_modules/chalk/templates.js +128 -0
  498. data/node_modules/@babel/highlight/node_modules/chalk/types/index.d.ts +97 -0
  499. data/node_modules/@babel/highlight/package.json +30 -0
  500. data/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  501. data/node_modules/@babel/parser/LICENSE +19 -0
  502. data/node_modules/@babel/parser/README.md +19 -0
  503. data/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  504. data/node_modules/@babel/parser/index.cjs +5 -0
  505. data/node_modules/@babel/parser/lib/index.js +14026 -0
  506. data/node_modules/@babel/parser/lib/index.js.map +1 -0
  507. data/node_modules/@babel/parser/package.json +46 -0
  508. data/node_modules/@babel/parser/typings/babel-parser.d.ts +251 -0
  509. data/node_modules/@babel/plugin-syntax-flow/LICENSE +22 -0
  510. data/node_modules/@babel/plugin-syntax-flow/README.md +19 -0
  511. data/node_modules/@babel/plugin-syntax-flow/lib/index.js +36 -0
  512. data/node_modules/@babel/plugin-syntax-flow/lib/index.js.map +1 -0
  513. data/node_modules/@babel/plugin-syntax-flow/package.json +33 -0
  514. data/node_modules/@babel/plugin-syntax-jsx/LICENSE +22 -0
  515. data/node_modules/@babel/plugin-syntax-jsx/README.md +19 -0
  516. data/node_modules/@babel/plugin-syntax-jsx/lib/index.js +23 -0
  517. data/node_modules/@babel/plugin-syntax-jsx/lib/index.js.map +1 -0
  518. data/node_modules/@babel/plugin-syntax-jsx/package.json +33 -0
  519. data/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/LICENSE +22 -0
  520. data/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/README.md +19 -0
  521. data/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/lib/index.js +22 -0
  522. data/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/package.json +23 -0
  523. data/node_modules/@babel/plugin-syntax-optional-chaining/LICENSE +22 -0
  524. data/node_modules/@babel/plugin-syntax-optional-chaining/README.md +19 -0
  525. data/node_modules/@babel/plugin-syntax-optional-chaining/lib/index.js +22 -0
  526. data/node_modules/@babel/plugin-syntax-optional-chaining/package.json +23 -0
  527. data/node_modules/@babel/plugin-syntax-typescript/LICENSE +22 -0
  528. data/node_modules/@babel/plugin-syntax-typescript/README.md +19 -0
  529. data/node_modules/@babel/plugin-syntax-typescript/lib/index.js +55 -0
  530. data/node_modules/@babel/plugin-syntax-typescript/lib/index.js.map +1 -0
  531. data/node_modules/@babel/plugin-syntax-typescript/package.json +35 -0
  532. data/node_modules/@babel/plugin-transform-class-properties/LICENSE +22 -0
  533. data/node_modules/@babel/plugin-transform-class-properties/README.md +19 -0
  534. data/node_modules/@babel/plugin-transform-class-properties/lib/index.js +22 -0
  535. data/node_modules/@babel/plugin-transform-class-properties/lib/index.js.map +1 -0
  536. data/node_modules/@babel/plugin-transform-class-properties/package.json +35 -0
  537. data/node_modules/@babel/plugin-transform-flow-strip-types/LICENSE +22 -0
  538. data/node_modules/@babel/plugin-transform-flow-strip-types/README.md +19 -0
  539. data/node_modules/@babel/plugin-transform-flow-strip-types/lib/index.js +163 -0
  540. data/node_modules/@babel/plugin-transform-flow-strip-types/lib/index.js.map +1 -0
  541. data/node_modules/@babel/plugin-transform-flow-strip-types/package.json +35 -0
  542. data/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE +22 -0
  543. data/node_modules/@babel/plugin-transform-modules-commonjs/README.md +19 -0
  544. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js +16 -0
  545. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js.map +1 -0
  546. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js +37 -0
  547. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js.map +1 -0
  548. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +197 -0
  549. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js.map +1 -0
  550. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js +44 -0
  551. data/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js.map +1 -0
  552. data/node_modules/@babel/plugin-transform-modules-commonjs/package.json +37 -0
  553. data/node_modules/@babel/plugin-transform-nullish-coalescing-operator/LICENSE +22 -0
  554. data/node_modules/@babel/plugin-transform-nullish-coalescing-operator/README.md +19 -0
  555. data/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js +48 -0
  556. data/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js.map +1 -0
  557. data/node_modules/@babel/plugin-transform-nullish-coalescing-operator/package.json +35 -0
  558. data/node_modules/@babel/plugin-transform-optional-chaining/LICENSE +22 -0
  559. data/node_modules/@babel/plugin-transform-optional-chaining/README.md +19 -0
  560. data/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js +240 -0
  561. data/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js.map +1 -0
  562. data/node_modules/@babel/plugin-transform-optional-chaining/package.json +38 -0
  563. data/node_modules/@babel/plugin-transform-optional-chaining/tsconfig.json +20 -0
  564. data/node_modules/@babel/plugin-transform-optional-chaining/tsconfig.tsbuildinfo +1 -0
  565. data/node_modules/@babel/plugin-transform-private-methods/LICENSE +22 -0
  566. data/node_modules/@babel/plugin-transform-private-methods/README.md +19 -0
  567. data/node_modules/@babel/plugin-transform-private-methods/lib/index.js +22 -0
  568. data/node_modules/@babel/plugin-transform-private-methods/lib/index.js.map +1 -0
  569. data/node_modules/@babel/plugin-transform-private-methods/package.json +35 -0
  570. data/node_modules/@babel/plugin-transform-typescript/LICENSE +22 -0
  571. data/node_modules/@babel/plugin-transform-typescript/README.md +19 -0
  572. data/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js +58 -0
  573. data/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js.map +1 -0
  574. data/node_modules/@babel/plugin-transform-typescript/lib/enum.js +302 -0
  575. data/node_modules/@babel/plugin-transform-typescript/lib/enum.js.map +1 -0
  576. data/node_modules/@babel/plugin-transform-typescript/lib/global-types.js +22 -0
  577. data/node_modules/@babel/plugin-transform-typescript/lib/global-types.js.map +1 -0
  578. data/node_modules/@babel/plugin-transform-typescript/lib/index.js +484 -0
  579. data/node_modules/@babel/plugin-transform-typescript/lib/index.js.map +1 -0
  580. data/node_modules/@babel/plugin-transform-typescript/lib/namespace.js +165 -0
  581. data/node_modules/@babel/plugin-transform-typescript/lib/namespace.js.map +1 -0
  582. data/node_modules/@babel/plugin-transform-typescript/package.json +40 -0
  583. data/node_modules/@babel/plugin-transform-typescript/tsconfig.json +26 -0
  584. data/node_modules/@babel/plugin-transform-typescript/tsconfig.tsbuildinfo +1 -0
  585. data/node_modules/@babel/preset-flow/LICENSE +22 -0
  586. data/node_modules/@babel/preset-flow/README.md +19 -0
  587. data/node_modules/@babel/preset-flow/lib/index.js +42 -0
  588. data/node_modules/@babel/preset-flow/lib/index.js.map +1 -0
  589. data/node_modules/@babel/preset-flow/lib/normalize-options.js +28 -0
  590. data/node_modules/@babel/preset-flow/lib/normalize-options.js.map +1 -0
  591. data/node_modules/@babel/preset-flow/package.json +41 -0
  592. data/node_modules/@babel/preset-typescript/LICENSE +22 -0
  593. data/node_modules/@babel/preset-typescript/README.md +19 -0
  594. data/node_modules/@babel/preset-typescript/lib/index.js +146 -0
  595. data/node_modules/@babel/preset-typescript/lib/index.js.map +1 -0
  596. data/node_modules/@babel/preset-typescript/package.json +40 -0
  597. data/node_modules/@babel/register/LICENSE +22 -0
  598. data/node_modules/@babel/register/README.md +19 -0
  599. data/node_modules/@babel/register/experimental-worker.js +1 -0
  600. data/node_modules/@babel/register/lib/browser.js +9 -0
  601. data/node_modules/@babel/register/lib/browser.js.map +1 -0
  602. data/node_modules/@babel/register/lib/cache.js +3 -0
  603. data/node_modules/@babel/register/lib/cache.js.map +1 -0
  604. data/node_modules/@babel/register/lib/experimental-worker.js +25 -0
  605. data/node_modules/@babel/register/lib/experimental-worker.js.map +1 -0
  606. data/node_modules/@babel/register/lib/hook.js +71 -0
  607. data/node_modules/@babel/register/lib/hook.js.map +1 -0
  608. data/node_modules/@babel/register/lib/index.js +11 -0
  609. data/node_modules/@babel/register/lib/index.js.map +1 -0
  610. data/node_modules/@babel/register/lib/is-in-register-worker.js +9 -0
  611. data/node_modules/@babel/register/lib/is-in-register-worker.js.map +1 -0
  612. data/node_modules/@babel/register/lib/node.js +16 -0
  613. data/node_modules/@babel/register/lib/node.js.map +1 -0
  614. data/node_modules/@babel/register/lib/nodeWrapper.js +13 -0
  615. data/node_modules/@babel/register/lib/nodeWrapper.js.map +1 -0
  616. data/node_modules/@babel/register/lib/worker/babel-core.js +19 -0
  617. data/node_modules/@babel/register/lib/worker/babel-core.js.map +1 -0
  618. data/node_modules/@babel/register/lib/worker/cache.js +94 -0
  619. data/node_modules/@babel/register/lib/worker/cache.js.map +1 -0
  620. data/node_modules/@babel/register/lib/worker/handle-message.js +24 -0
  621. data/node_modules/@babel/register/lib/worker/handle-message.js.map +1 -0
  622. data/node_modules/@babel/register/lib/worker/index.js +39 -0
  623. data/node_modules/@babel/register/lib/worker/index.js.map +1 -0
  624. data/node_modules/@babel/register/lib/worker/transform.js +121 -0
  625. data/node_modules/@babel/register/lib/worker/transform.js.map +1 -0
  626. data/node_modules/@babel/register/lib/worker-client.js +107 -0
  627. data/node_modules/@babel/register/lib/worker-client.js.map +1 -0
  628. data/node_modules/@babel/register/package.json +41 -0
  629. data/node_modules/@babel/template/LICENSE +22 -0
  630. data/node_modules/@babel/template/README.md +19 -0
  631. data/node_modules/@babel/template/lib/builder.js +69 -0
  632. data/node_modules/@babel/template/lib/builder.js.map +1 -0
  633. data/node_modules/@babel/template/lib/formatters.js +61 -0
  634. data/node_modules/@babel/template/lib/formatters.js.map +1 -0
  635. data/node_modules/@babel/template/lib/index.js +23 -0
  636. data/node_modules/@babel/template/lib/index.js.map +1 -0
  637. data/node_modules/@babel/template/lib/literal.js +69 -0
  638. data/node_modules/@babel/template/lib/literal.js.map +1 -0
  639. data/node_modules/@babel/template/lib/options.js +73 -0
  640. data/node_modules/@babel/template/lib/options.js.map +1 -0
  641. data/node_modules/@babel/template/lib/parse.js +160 -0
  642. data/node_modules/@babel/template/lib/parse.js.map +1 -0
  643. data/node_modules/@babel/template/lib/populate.js +122 -0
  644. data/node_modules/@babel/template/lib/populate.js.map +1 -0
  645. data/node_modules/@babel/template/lib/string.js +20 -0
  646. data/node_modules/@babel/template/lib/string.js.map +1 -0
  647. data/node_modules/@babel/template/package.json +27 -0
  648. data/node_modules/@babel/traverse/LICENSE +22 -0
  649. data/node_modules/@babel/traverse/README.md +19 -0
  650. data/node_modules/@babel/traverse/lib/cache.js +44 -0
  651. data/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  652. data/node_modules/@babel/traverse/lib/context.js +118 -0
  653. data/node_modules/@babel/traverse/lib/context.js.map +1 -0
  654. data/node_modules/@babel/traverse/lib/hub.js +19 -0
  655. data/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  656. data/node_modules/@babel/traverse/lib/index.js +94 -0
  657. data/node_modules/@babel/traverse/lib/index.js.map +1 -0
  658. data/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
  659. data/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  660. data/node_modules/@babel/traverse/lib/path/comments.js +52 -0
  661. data/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  662. data/node_modules/@babel/traverse/lib/path/context.js +222 -0
  663. data/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  664. data/node_modules/@babel/traverse/lib/path/conversion.js +468 -0
  665. data/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  666. data/node_modules/@babel/traverse/lib/path/evaluation.js +347 -0
  667. data/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  668. data/node_modules/@babel/traverse/lib/path/family.js +335 -0
  669. data/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  670. data/node_modules/@babel/traverse/lib/path/index.js +188 -0
  671. data/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  672. data/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  673. data/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  674. data/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  675. data/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  676. data/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  677. data/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  678. data/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  679. data/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  680. data/node_modules/@babel/traverse/lib/path/introspection.js +397 -0
  681. data/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  682. data/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  683. data/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  684. data/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
  685. data/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  686. data/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +163 -0
  687. data/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  688. data/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
  689. data/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  690. data/node_modules/@babel/traverse/lib/path/modification.js +226 -0
  691. data/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  692. data/node_modules/@babel/traverse/lib/path/removal.js +66 -0
  693. data/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  694. data/node_modules/@babel/traverse/lib/path/replacement.js +264 -0
  695. data/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  696. data/node_modules/@babel/traverse/lib/scope/binding.js +83 -0
  697. data/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  698. data/node_modules/@babel/traverse/lib/scope/index.js +903 -0
  699. data/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  700. data/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
  701. data/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  702. data/node_modules/@babel/traverse/lib/traverse-node.js +29 -0
  703. data/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  704. data/node_modules/@babel/traverse/lib/types.js +3 -0
  705. data/node_modules/@babel/traverse/lib/types.js.map +1 -0
  706. data/node_modules/@babel/traverse/lib/visitors.js +221 -0
  707. data/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  708. data/node_modules/@babel/traverse/node_modules/globals/globals.json +1563 -0
  709. data/node_modules/@babel/traverse/node_modules/globals/index.js +2 -0
  710. data/node_modules/@babel/traverse/node_modules/globals/license +9 -0
  711. data/node_modules/@babel/traverse/node_modules/globals/package.json +41 -0
  712. data/node_modules/@babel/traverse/node_modules/globals/readme.md +41 -0
  713. data/node_modules/@babel/traverse/package.json +38 -0
  714. data/node_modules/@babel/types/LICENSE +22 -0
  715. data/node_modules/@babel/types/README.md +19 -0
  716. data/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  717. data/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  718. data/node_modules/@babel/types/lib/asserts/generated/index.js +1235 -0
  719. data/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  720. data/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  721. data/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  722. data/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  723. data/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  724. data/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
  725. data/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  726. data/node_modules/@babel/types/lib/builders/generated/index.js +1991 -0
  727. data/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  728. data/node_modules/@babel/types/lib/builders/generated/uppercase.js +1532 -0
  729. data/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  730. data/node_modules/@babel/types/lib/builders/productions.js +12 -0
  731. data/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
  732. data/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  733. data/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  734. data/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  735. data/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  736. data/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
  737. data/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  738. data/node_modules/@babel/types/lib/clone/clone.js +12 -0
  739. data/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  740. data/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  741. data/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  742. data/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  743. data/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  744. data/node_modules/@babel/types/lib/clone/cloneNode.js +104 -0
  745. data/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  746. data/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  747. data/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  748. data/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  749. data/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  750. data/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  751. data/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  752. data/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  753. data/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  754. data/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  755. data/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  756. data/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  757. data/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  758. data/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  759. data/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  760. data/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  761. data/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  762. data/node_modules/@babel/types/lib/constants/generated/index.js +59 -0
  763. data/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  764. data/node_modules/@babel/types/lib/constants/index.js +31 -0
  765. data/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  766. data/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  767. data/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  768. data/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
  769. data/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  770. data/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  771. data/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  772. data/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  773. data/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  774. data/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  775. data/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  776. data/node_modules/@babel/types/lib/converters/toExpression.js +27 -0
  777. data/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  778. data/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  779. data/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  780. data/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  781. data/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  782. data/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
  783. data/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  784. data/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
  785. data/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  786. data/node_modules/@babel/types/lib/converters/valueToNode.js +76 -0
  787. data/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  788. data/node_modules/@babel/types/lib/definitions/core.js +1689 -0
  789. data/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  790. data/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
  791. data/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  792. data/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
  793. data/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  794. data/node_modules/@babel/types/lib/definitions/flow.js +488 -0
  795. data/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  796. data/node_modules/@babel/types/lib/definitions/index.js +96 -0
  797. data/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  798. data/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
  799. data/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  800. data/node_modules/@babel/types/lib/definitions/misc.js +32 -0
  801. data/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  802. data/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
  803. data/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  804. data/node_modules/@babel/types/lib/definitions/typescript.js +493 -0
  805. data/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  806. data/node_modules/@babel/types/lib/definitions/utils.js +273 -0
  807. data/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  808. data/node_modules/@babel/types/lib/index-legacy.d.ts +2758 -0
  809. data/node_modules/@babel/types/lib/index.d.ts +3269 -0
  810. data/node_modules/@babel/types/lib/index.js +576 -0
  811. data/node_modules/@babel/types/lib/index.js.flow +2612 -0
  812. data/node_modules/@babel/types/lib/index.js.map +1 -0
  813. data/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  814. data/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  815. data/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  816. data/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  817. data/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  818. data/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  819. data/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  820. data/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  821. data/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  822. data/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  823. data/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  824. data/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  825. data/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
  826. data/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  827. data/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +96 -0
  828. data/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  829. data/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
  830. data/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  831. data/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  832. data/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  833. data/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
  834. data/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  835. data/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  836. data/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  837. data/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  838. data/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  839. data/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  840. data/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  841. data/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  842. data/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  843. data/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  844. data/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  845. data/node_modules/@babel/types/lib/validators/generated/index.js +2752 -0
  846. data/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  847. data/node_modules/@babel/types/lib/validators/is.js +27 -0
  848. data/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  849. data/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  850. data/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  851. data/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  852. data/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  853. data/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  854. data/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  855. data/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  856. data/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  857. data/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  858. data/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  859. data/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  860. data/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  861. data/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
  862. data/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  863. data/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  864. data/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  865. data/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  866. data/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  867. data/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  868. data/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  869. data/node_modules/@babel/types/lib/validators/isType.js +22 -0
  870. data/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  871. data/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  872. data/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  873. data/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  874. data/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  875. data/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  876. data/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  877. data/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
  878. data/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  879. data/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  880. data/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  881. data/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
  882. data/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  883. data/node_modules/@babel/types/lib/validators/validate.js +30 -0
  884. data/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  885. data/node_modules/@babel/types/package.json +40 -0
  886. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +1 -0
  887. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
  888. data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +5 -1
  889. data/node_modules/@eslint/eslintrc/lib/index.js +3 -1
  890. data/node_modules/@eslint/eslintrc/package.json +2 -2
  891. data/node_modules/@eslint/js/package.json +1 -1
  892. data/node_modules/@eslint/js/src/configs/eslint-all.js +0 -2
  893. data/node_modules/@eslint-community/regexpp/index.d.ts +24 -3
  894. data/node_modules/@eslint-community/regexpp/index.js +22 -27
  895. data/node_modules/@eslint-community/regexpp/index.js.map +1 -1
  896. data/node_modules/@eslint-community/regexpp/index.mjs +22 -28
  897. data/node_modules/@eslint-community/regexpp/index.mjs.map +1 -1
  898. data/node_modules/@eslint-community/regexpp/package.json +5 -5
  899. data/node_modules/@humanwhocodes/retry/README.md +16 -0
  900. data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +20 -3
  901. data/node_modules/@humanwhocodes/retry/dist/retrier.d.cts +28 -0
  902. data/node_modules/@humanwhocodes/retry/dist/retrier.d.ts +5 -1
  903. data/node_modules/@humanwhocodes/retry/dist/retrier.js +21 -3
  904. data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
  905. data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +20 -3
  906. data/node_modules/@humanwhocodes/retry/package.json +7 -5
  907. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/index.d.ts +15 -0
  908. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/index.js +14 -0
  909. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +33 -0
  910. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.js +8 -0
  911. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex/license +9 -0
  912. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex/package.json +58 -0
  913. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +72 -0
  914. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/package.json +57 -0
  915. data/node_modules/@isaacs/cliui/node_modules/strip-ansi/readme.md +41 -0
  916. data/node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.d.ts +345 -0
  917. data/node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
  918. data/node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
  919. data/node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
  920. data/node_modules/@isaacs/cliui/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/readme.md +152 -0
  921. data/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  922. data/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  923. data/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
  924. data/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
  925. data/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +246 -0
  926. data/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
  927. data/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +88 -0
  928. data/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  929. data/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +36 -0
  930. data/node_modules/@jridgewell/gen-mapping/package.json +76 -0
  931. data/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  932. data/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  933. data/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +232 -0
  934. data/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  935. data/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +240 -0
  936. data/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  937. data/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  938. data/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  939. data/node_modules/@jridgewell/set-array/LICENSE +19 -0
  940. data/node_modules/@jridgewell/set-array/README.md +37 -0
  941. data/node_modules/@jridgewell/set-array/dist/set-array.mjs +69 -0
  942. data/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
  943. data/node_modules/@jridgewell/set-array/dist/set-array.umd.js +83 -0
  944. data/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
  945. data/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +32 -0
  946. data/node_modules/@jridgewell/set-array/package.json +65 -0
  947. data/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  948. data/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  949. data/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  950. data/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  951. data/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  952. data/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  953. data/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  954. data/node_modules/@jridgewell/sourcemap-codec/package.json +74 -0
  955. data/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  956. data/node_modules/@jridgewell/trace-mapping/README.md +257 -0
  957. data/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +580 -0
  958. data/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
  959. data/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +600 -0
  960. data/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
  961. data/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
  962. data/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
  963. data/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
  964. data/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
  965. data/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
  966. data/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
  967. data/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
  968. data/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +79 -0
  969. data/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +99 -0
  970. data/node_modules/@jridgewell/trace-mapping/package.json +77 -0
  971. data/node_modules/@tufjs/models/node_modules/minimatch/LICENSE +15 -0
  972. data/node_modules/@tufjs/models/node_modules/minimatch/README.md +454 -0
  973. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
  974. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
  975. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  976. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
  977. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
  978. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
  979. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/ast.js +589 -0
  980. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
  981. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
  982. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
  983. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  984. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
  985. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
  986. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
  987. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/escape.js +22 -0
  988. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
  989. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
  990. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
  991. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/index.js +1011 -0
  992. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/index.js.map +1 -0
  993. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
  994. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
  995. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  996. data/node_modules/@tufjs/models/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
  997. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
  998. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
  999. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  1000. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
  1001. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
  1002. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
  1003. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/ast.js +585 -0
  1004. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
  1005. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
  1006. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
  1007. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  1008. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
  1009. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
  1010. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
  1011. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/escape.js +18 -0
  1012. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
  1013. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
  1014. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
  1015. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/index.js +995 -0
  1016. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/index.js.map +1 -0
  1017. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
  1018. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
  1019. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  1020. data/node_modules/@tufjs/models/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
  1021. data/node_modules/@tufjs/models/node_modules/minimatch/node_modules/brace-expansion/README.md +135 -0
  1022. data/node_modules/@tufjs/models/node_modules/minimatch/node_modules/brace-expansion/index.js +203 -0
  1023. data/node_modules/@tufjs/models/node_modules/minimatch/node_modules/brace-expansion/package.json +46 -0
  1024. data/node_modules/@tufjs/models/node_modules/minimatch/package.json +86 -0
  1025. data/node_modules/array-buffer-byte-length/CHANGELOG.md +12 -0
  1026. data/node_modules/array-buffer-byte-length/index.d.ts +4 -0
  1027. data/node_modules/array-buffer-byte-length/index.js +1 -0
  1028. data/node_modules/array-buffer-byte-length/package.json +20 -8
  1029. data/node_modules/array-buffer-byte-length/test/index.js +3 -0
  1030. data/node_modules/array-buffer-byte-length/tsconfig.json +49 -0
  1031. data/node_modules/array-includes/CHANGELOG.md +10 -0
  1032. data/node_modules/array-includes/implementation.js +4 -4
  1033. data/node_modules/array-includes/index.js +1 -1
  1034. data/node_modules/array-includes/package.json +9 -9
  1035. data/node_modules/array-includes/test/shimmed.js +2 -2
  1036. data/node_modules/array.prototype.findlastindex/CHANGELOG.md +20 -0
  1037. data/node_modules/array.prototype.findlastindex/implementation.js +8 -9
  1038. data/node_modules/array.prototype.findlastindex/index.js +1 -1
  1039. data/node_modules/array.prototype.findlastindex/package.json +15 -21
  1040. data/node_modules/array.prototype.findlastindex/test/shimmed.js +4 -5
  1041. data/node_modules/arraybuffer.prototype.slice/CHANGELOG.md +8 -0
  1042. data/node_modules/arraybuffer.prototype.slice/implementation.js +1 -1
  1043. data/node_modules/arraybuffer.prototype.slice/package.json +12 -11
  1044. data/node_modules/ast-types/LICENSE +20 -0
  1045. data/node_modules/ast-types/README.md +512 -0
  1046. data/node_modules/ast-types/lib/def/babel-core.d.ts +2 -0
  1047. data/node_modules/ast-types/lib/def/babel-core.js +241 -0
  1048. data/node_modules/ast-types/lib/def/babel-core.js.map +1 -0
  1049. data/node_modules/ast-types/lib/def/babel.d.ts +2 -0
  1050. data/node_modules/ast-types/lib/def/babel.js +26 -0
  1051. data/node_modules/ast-types/lib/def/babel.js.map +1 -0
  1052. data/node_modules/ast-types/lib/def/core.d.ts +2 -0
  1053. data/node_modules/ast-types/lib/def/core.js +281 -0
  1054. data/node_modules/ast-types/lib/def/core.js.map +1 -0
  1055. data/node_modules/ast-types/lib/def/es-proposals.d.ts +2 -0
  1056. data/node_modules/ast-types/lib/def/es-proposals.js +70 -0
  1057. data/node_modules/ast-types/lib/def/es-proposals.js.map +1 -0
  1058. data/node_modules/ast-types/lib/def/es2016.d.ts +2 -0
  1059. data/node_modules/ast-types/lib/def/es2016.js +17 -0
  1060. data/node_modules/ast-types/lib/def/es2016.js.map +1 -0
  1061. data/node_modules/ast-types/lib/def/es2017.d.ts +2 -0
  1062. data/node_modules/ast-types/lib/def/es2017.js +22 -0
  1063. data/node_modules/ast-types/lib/def/es2017.js.map +1 -0
  1064. data/node_modules/ast-types/lib/def/es2018.d.ts +2 -0
  1065. data/node_modules/ast-types/lib/def/es2018.js +36 -0
  1066. data/node_modules/ast-types/lib/def/es2018.js.map +1 -0
  1067. data/node_modules/ast-types/lib/def/es2019.d.ts +2 -0
  1068. data/node_modules/ast-types/lib/def/es2019.js +19 -0
  1069. data/node_modules/ast-types/lib/def/es2019.js.map +1 -0
  1070. data/node_modules/ast-types/lib/def/es2020.d.ts +2 -0
  1071. data/node_modules/ast-types/lib/def/es2020.js +52 -0
  1072. data/node_modules/ast-types/lib/def/es2020.js.map +1 -0
  1073. data/node_modules/ast-types/lib/def/es2021.d.ts +2 -0
  1074. data/node_modules/ast-types/lib/def/es2021.js +15 -0
  1075. data/node_modules/ast-types/lib/def/es2021.js.map +1 -0
  1076. data/node_modules/ast-types/lib/def/es2022.d.ts +2 -0
  1077. data/node_modules/ast-types/lib/def/es2022.js +18 -0
  1078. data/node_modules/ast-types/lib/def/es2022.js.map +1 -0
  1079. data/node_modules/ast-types/lib/def/es6.d.ts +2 -0
  1080. data/node_modules/ast-types/lib/def/es6.js +238 -0
  1081. data/node_modules/ast-types/lib/def/es6.js.map +1 -0
  1082. data/node_modules/ast-types/lib/def/esprima.d.ts +2 -0
  1083. data/node_modules/ast-types/lib/def/esprima.js +51 -0
  1084. data/node_modules/ast-types/lib/def/esprima.js.map +1 -0
  1085. data/node_modules/ast-types/lib/def/flow.d.ts +2 -0
  1086. data/node_modules/ast-types/lib/def/flow.js +362 -0
  1087. data/node_modules/ast-types/lib/def/flow.js.map +1 -0
  1088. data/node_modules/ast-types/lib/def/jsx.d.ts +2 -0
  1089. data/node_modules/ast-types/lib/def/jsx.js +110 -0
  1090. data/node_modules/ast-types/lib/def/jsx.js.map +1 -0
  1091. data/node_modules/ast-types/lib/def/operators/core.d.ts +5 -0
  1092. data/node_modules/ast-types/lib/def/operators/core.js +27 -0
  1093. data/node_modules/ast-types/lib/def/operators/core.js.map +1 -0
  1094. data/node_modules/ast-types/lib/def/operators/es2016.d.ts +5 -0
  1095. data/node_modules/ast-types/lib/def/operators/es2016.js +21 -0
  1096. data/node_modules/ast-types/lib/def/operators/es2016.js.map +1 -0
  1097. data/node_modules/ast-types/lib/def/operators/es2020.d.ts +5 -0
  1098. data/node_modules/ast-types/lib/def/operators/es2020.js +17 -0
  1099. data/node_modules/ast-types/lib/def/operators/es2020.js.map +1 -0
  1100. data/node_modules/ast-types/lib/def/operators/es2021.d.ts +5 -0
  1101. data/node_modules/ast-types/lib/def/operators/es2021.js +20 -0
  1102. data/node_modules/ast-types/lib/def/operators/es2021.js.map +1 -0
  1103. data/node_modules/ast-types/lib/def/type-annotations.d.ts +7 -0
  1104. data/node_modules/ast-types/lib/def/type-annotations.js +42 -0
  1105. data/node_modules/ast-types/lib/def/type-annotations.js.map +1 -0
  1106. data/node_modules/ast-types/lib/def/typescript.d.ts +2 -0
  1107. data/node_modules/ast-types/lib/def/typescript.js +369 -0
  1108. data/node_modules/ast-types/lib/def/typescript.js.map +1 -0
  1109. data/node_modules/ast-types/lib/equiv.d.ts +5 -0
  1110. data/node_modules/ast-types/lib/equiv.js +157 -0
  1111. data/node_modules/ast-types/lib/equiv.js.map +1 -0
  1112. data/node_modules/ast-types/lib/fork.d.ts +43 -0
  1113. data/node_modules/ast-types/lib/fork.js +55 -0
  1114. data/node_modules/ast-types/lib/fork.js.map +1 -0
  1115. data/node_modules/ast-types/lib/gen/builders.d.ts +2850 -0
  1116. data/node_modules/ast-types/lib/gen/builders.js +3 -0
  1117. data/node_modules/ast-types/lib/gen/builders.js.map +1 -0
  1118. data/node_modules/ast-types/lib/gen/kinds.d.ts +293 -0
  1119. data/node_modules/ast-types/lib/gen/kinds.js +3 -0
  1120. data/node_modules/ast-types/lib/gen/kinds.js.map +1 -0
  1121. data/node_modules/ast-types/lib/gen/namedTypes.d.ts +2029 -0
  1122. data/node_modules/ast-types/lib/gen/namedTypes.js +7 -0
  1123. data/node_modules/ast-types/lib/gen/namedTypes.js.map +1 -0
  1124. data/node_modules/ast-types/lib/gen/visitor.d.ts +297 -0
  1125. data/node_modules/ast-types/lib/gen/visitor.js +3 -0
  1126. data/node_modules/ast-types/lib/gen/visitor.js.map +1 -0
  1127. data/node_modules/ast-types/lib/main.d.ts +29 -0
  1128. data/node_modules/ast-types/lib/main.js +44 -0
  1129. data/node_modules/ast-types/lib/main.js.map +1 -0
  1130. data/node_modules/ast-types/lib/node-path.d.ts +21 -0
  1131. data/node_modules/ast-types/lib/node-path.js +414 -0
  1132. data/node_modules/ast-types/lib/node-path.js.map +1 -0
  1133. data/node_modules/ast-types/lib/path-visitor.d.ts +51 -0
  1134. data/node_modules/ast-types/lib/path-visitor.js +346 -0
  1135. data/node_modules/ast-types/lib/path-visitor.js.map +1 -0
  1136. data/node_modules/ast-types/lib/path.d.ts +24 -0
  1137. data/node_modules/ast-types/lib/path.js +334 -0
  1138. data/node_modules/ast-types/lib/path.js.map +1 -0
  1139. data/node_modules/ast-types/lib/scope.d.ts +27 -0
  1140. data/node_modules/ast-types/lib/scope.js +358 -0
  1141. data/node_modules/ast-types/lib/scope.js.map +1 -0
  1142. data/node_modules/ast-types/lib/shared.d.ts +21 -0
  1143. data/node_modules/ast-types/lib/shared.js +91 -0
  1144. data/node_modules/ast-types/lib/shared.js.map +1 -0
  1145. data/node_modules/ast-types/lib/types.d.ts +141 -0
  1146. data/node_modules/ast-types/lib/types.js +791 -0
  1147. data/node_modules/ast-types/lib/types.js.map +1 -0
  1148. data/node_modules/ast-types/package.json +68 -0
  1149. data/node_modules/available-typed-arrays/CHANGELOG.md +21 -0
  1150. data/node_modules/available-typed-arrays/README.md +16 -13
  1151. data/node_modules/available-typed-arrays/index.d.ts +8 -0
  1152. data/node_modules/available-typed-arrays/index.js +4 -14
  1153. data/node_modules/available-typed-arrays/package.json +26 -15
  1154. data/node_modules/available-typed-arrays/tsconfig.json +49 -0
  1155. data/node_modules/babel-core/README.md +50 -0
  1156. data/node_modules/babel-core/index.js +2 -0
  1157. data/node_modules/babel-core/package.json +18 -0
  1158. data/node_modules/boxen/node_modules/chalk/license +9 -0
  1159. data/node_modules/boxen/node_modules/chalk/package.json +83 -0
  1160. data/node_modules/boxen/node_modules/chalk/readme.md +325 -0
  1161. data/node_modules/boxen/node_modules/chalk/source/index.d.ts +320 -0
  1162. data/node_modules/boxen/node_modules/chalk/source/index.js +225 -0
  1163. data/node_modules/boxen/node_modules/chalk/source/utilities.js +33 -0
  1164. data/node_modules/boxen/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  1165. data/node_modules/boxen/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  1166. data/node_modules/boxen/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  1167. data/node_modules/boxen/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  1168. data/node_modules/boxen/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  1169. data/node_modules/boxen/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  1170. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/index.d.ts +15 -0
  1171. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/index.js +14 -0
  1172. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/license +9 -0
  1173. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +33 -0
  1174. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js +8 -0
  1175. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/license +9 -0
  1176. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/package.json +58 -0
  1177. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +72 -0
  1178. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/package.json +57 -0
  1179. data/node_modules/boxen/node_modules/string-width/node_modules/strip-ansi/readme.md +41 -0
  1180. data/node_modules/browserslist/LICENSE +20 -0
  1181. data/node_modules/browserslist/README.md +67 -0
  1182. data/node_modules/browserslist/browser.js +52 -0
  1183. data/node_modules/browserslist/cli.js +156 -0
  1184. data/node_modules/browserslist/error.d.ts +7 -0
  1185. data/node_modules/browserslist/error.js +12 -0
  1186. data/node_modules/browserslist/index.d.ts +201 -0
  1187. data/node_modules/browserslist/index.js +1206 -0
  1188. data/node_modules/browserslist/node.js +420 -0
  1189. data/node_modules/browserslist/package.json +44 -0
  1190. data/node_modules/browserslist/parse.js +78 -0
  1191. data/node_modules/call-bind/CHANGELOG.md +51 -0
  1192. data/node_modules/call-bind/README.md +63 -1
  1193. data/node_modules/call-bind/index.js +11 -23
  1194. data/node_modules/call-bind/package.json +38 -23
  1195. data/node_modules/call-bind/test/callBound.js +0 -1
  1196. data/node_modules/call-bind/test/index.js +18 -4
  1197. data/node_modules/caniuse-lite/LICENSE +395 -0
  1198. data/node_modules/caniuse-lite/README.md +6 -0
  1199. data/node_modules/caniuse-lite/data/agents.js +1 -0
  1200. data/node_modules/caniuse-lite/data/browserVersions.js +1 -0
  1201. data/node_modules/caniuse-lite/data/browsers.js +1 -0
  1202. data/node_modules/caniuse-lite/data/features/aac.js +1 -0
  1203. data/node_modules/caniuse-lite/data/features/abortcontroller.js +1 -0
  1204. data/node_modules/caniuse-lite/data/features/ac3-ec3.js +1 -0
  1205. data/node_modules/caniuse-lite/data/features/accelerometer.js +1 -0
  1206. data/node_modules/caniuse-lite/data/features/addeventlistener.js +1 -0
  1207. data/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +1 -0
  1208. data/node_modules/caniuse-lite/data/features/ambient-light.js +1 -0
  1209. data/node_modules/caniuse-lite/data/features/apng.js +1 -0
  1210. data/node_modules/caniuse-lite/data/features/array-find-index.js +1 -0
  1211. data/node_modules/caniuse-lite/data/features/array-find.js +1 -0
  1212. data/node_modules/caniuse-lite/data/features/array-flat.js +1 -0
  1213. data/node_modules/caniuse-lite/data/features/array-includes.js +1 -0
  1214. data/node_modules/caniuse-lite/data/features/arrow-functions.js +1 -0
  1215. data/node_modules/caniuse-lite/data/features/asmjs.js +1 -0
  1216. data/node_modules/caniuse-lite/data/features/async-clipboard.js +1 -0
  1217. data/node_modules/caniuse-lite/data/features/async-functions.js +1 -0
  1218. data/node_modules/caniuse-lite/data/features/atob-btoa.js +1 -0
  1219. data/node_modules/caniuse-lite/data/features/audio-api.js +1 -0
  1220. data/node_modules/caniuse-lite/data/features/audio.js +1 -0
  1221. data/node_modules/caniuse-lite/data/features/audiotracks.js +1 -0
  1222. data/node_modules/caniuse-lite/data/features/autofocus.js +1 -0
  1223. data/node_modules/caniuse-lite/data/features/auxclick.js +1 -0
  1224. data/node_modules/caniuse-lite/data/features/av1.js +1 -0
  1225. data/node_modules/caniuse-lite/data/features/avif.js +1 -0
  1226. data/node_modules/caniuse-lite/data/features/background-attachment.js +1 -0
  1227. data/node_modules/caniuse-lite/data/features/background-clip-text.js +1 -0
  1228. data/node_modules/caniuse-lite/data/features/background-img-opts.js +1 -0
  1229. data/node_modules/caniuse-lite/data/features/background-position-x-y.js +1 -0
  1230. data/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +1 -0
  1231. data/node_modules/caniuse-lite/data/features/background-sync.js +1 -0
  1232. data/node_modules/caniuse-lite/data/features/battery-status.js +1 -0
  1233. data/node_modules/caniuse-lite/data/features/beacon.js +1 -0
  1234. data/node_modules/caniuse-lite/data/features/beforeafterprint.js +1 -0
  1235. data/node_modules/caniuse-lite/data/features/bigint.js +1 -0
  1236. data/node_modules/caniuse-lite/data/features/blobbuilder.js +1 -0
  1237. data/node_modules/caniuse-lite/data/features/bloburls.js +1 -0
  1238. data/node_modules/caniuse-lite/data/features/border-image.js +1 -0
  1239. data/node_modules/caniuse-lite/data/features/border-radius.js +1 -0
  1240. data/node_modules/caniuse-lite/data/features/broadcastchannel.js +1 -0
  1241. data/node_modules/caniuse-lite/data/features/brotli.js +1 -0
  1242. data/node_modules/caniuse-lite/data/features/calc.js +1 -0
  1243. data/node_modules/caniuse-lite/data/features/canvas-blending.js +1 -0
  1244. data/node_modules/caniuse-lite/data/features/canvas-text.js +1 -0
  1245. data/node_modules/caniuse-lite/data/features/canvas.js +1 -0
  1246. data/node_modules/caniuse-lite/data/features/ch-unit.js +1 -0
  1247. data/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +1 -0
  1248. data/node_modules/caniuse-lite/data/features/channel-messaging.js +1 -0
  1249. data/node_modules/caniuse-lite/data/features/childnode-remove.js +1 -0
  1250. data/node_modules/caniuse-lite/data/features/classlist.js +1 -0
  1251. data/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +1 -0
  1252. data/node_modules/caniuse-lite/data/features/clipboard.js +1 -0
  1253. data/node_modules/caniuse-lite/data/features/colr-v1.js +1 -0
  1254. data/node_modules/caniuse-lite/data/features/colr.js +1 -0
  1255. data/node_modules/caniuse-lite/data/features/comparedocumentposition.js +1 -0
  1256. data/node_modules/caniuse-lite/data/features/console-basic.js +1 -0
  1257. data/node_modules/caniuse-lite/data/features/console-time.js +1 -0
  1258. data/node_modules/caniuse-lite/data/features/const.js +1 -0
  1259. data/node_modules/caniuse-lite/data/features/constraint-validation.js +1 -0
  1260. data/node_modules/caniuse-lite/data/features/contenteditable.js +1 -0
  1261. data/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +1 -0
  1262. data/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +1 -0
  1263. data/node_modules/caniuse-lite/data/features/cookie-store-api.js +1 -0
  1264. data/node_modules/caniuse-lite/data/features/cors.js +1 -0
  1265. data/node_modules/caniuse-lite/data/features/createimagebitmap.js +1 -0
  1266. data/node_modules/caniuse-lite/data/features/credential-management.js +1 -0
  1267. data/node_modules/caniuse-lite/data/features/cryptography.js +1 -0
  1268. data/node_modules/caniuse-lite/data/features/css-all.js +1 -0
  1269. data/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +1 -0
  1270. data/node_modules/caniuse-lite/data/features/css-animation.js +1 -0
  1271. data/node_modules/caniuse-lite/data/features/css-any-link.js +1 -0
  1272. data/node_modules/caniuse-lite/data/features/css-appearance.js +1 -0
  1273. data/node_modules/caniuse-lite/data/features/css-at-counter-style.js +1 -0
  1274. data/node_modules/caniuse-lite/data/features/css-autofill.js +1 -0
  1275. data/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +1 -0
  1276. data/node_modules/caniuse-lite/data/features/css-background-offsets.js +1 -0
  1277. data/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +1 -0
  1278. data/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +1 -0
  1279. data/node_modules/caniuse-lite/data/features/css-boxshadow.js +1 -0
  1280. data/node_modules/caniuse-lite/data/features/css-canvas.js +1 -0
  1281. data/node_modules/caniuse-lite/data/features/css-caret-color.js +1 -0
  1282. data/node_modules/caniuse-lite/data/features/css-cascade-layers.js +1 -0
  1283. data/node_modules/caniuse-lite/data/features/css-cascade-scope.js +1 -0
  1284. data/node_modules/caniuse-lite/data/features/css-case-insensitive.js +1 -0
  1285. data/node_modules/caniuse-lite/data/features/css-clip-path.js +1 -0
  1286. data/node_modules/caniuse-lite/data/features/css-color-adjust.js +1 -0
  1287. data/node_modules/caniuse-lite/data/features/css-color-function.js +1 -0
  1288. data/node_modules/caniuse-lite/data/features/css-conic-gradients.js +1 -0
  1289. data/node_modules/caniuse-lite/data/features/css-container-queries-style.js +1 -0
  1290. data/node_modules/caniuse-lite/data/features/css-container-queries.js +1 -0
  1291. data/node_modules/caniuse-lite/data/features/css-container-query-units.js +1 -0
  1292. data/node_modules/caniuse-lite/data/features/css-containment.js +1 -0
  1293. data/node_modules/caniuse-lite/data/features/css-content-visibility.js +1 -0
  1294. data/node_modules/caniuse-lite/data/features/css-counters.js +1 -0
  1295. data/node_modules/caniuse-lite/data/features/css-crisp-edges.js +1 -0
  1296. data/node_modules/caniuse-lite/data/features/css-cross-fade.js +1 -0
  1297. data/node_modules/caniuse-lite/data/features/css-default-pseudo.js +1 -0
  1298. data/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +1 -0
  1299. data/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +1 -0
  1300. data/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +1 -0
  1301. data/node_modules/caniuse-lite/data/features/css-display-contents.js +1 -0
  1302. data/node_modules/caniuse-lite/data/features/css-element-function.js +1 -0
  1303. data/node_modules/caniuse-lite/data/features/css-env-function.js +1 -0
  1304. data/node_modules/caniuse-lite/data/features/css-exclusions.js +1 -0
  1305. data/node_modules/caniuse-lite/data/features/css-featurequeries.js +1 -0
  1306. data/node_modules/caniuse-lite/data/features/css-file-selector-button.js +1 -0
  1307. data/node_modules/caniuse-lite/data/features/css-filter-function.js +1 -0
  1308. data/node_modules/caniuse-lite/data/features/css-filters.js +1 -0
  1309. data/node_modules/caniuse-lite/data/features/css-first-letter.js +1 -0
  1310. data/node_modules/caniuse-lite/data/features/css-first-line.js +1 -0
  1311. data/node_modules/caniuse-lite/data/features/css-fixed.js +1 -0
  1312. data/node_modules/caniuse-lite/data/features/css-focus-visible.js +1 -0
  1313. data/node_modules/caniuse-lite/data/features/css-focus-within.js +1 -0
  1314. data/node_modules/caniuse-lite/data/features/css-font-palette.js +1 -0
  1315. data/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +1 -0
  1316. data/node_modules/caniuse-lite/data/features/css-font-stretch.js +1 -0
  1317. data/node_modules/caniuse-lite/data/features/css-gencontent.js +1 -0
  1318. data/node_modules/caniuse-lite/data/features/css-gradients.js +1 -0
  1319. data/node_modules/caniuse-lite/data/features/css-grid-animation.js +1 -0
  1320. data/node_modules/caniuse-lite/data/features/css-grid.js +1 -0
  1321. data/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +1 -0
  1322. data/node_modules/caniuse-lite/data/features/css-has.js +1 -0
  1323. data/node_modules/caniuse-lite/data/features/css-hyphens.js +1 -0
  1324. data/node_modules/caniuse-lite/data/features/css-image-orientation.js +1 -0
  1325. data/node_modules/caniuse-lite/data/features/css-image-set.js +1 -0
  1326. data/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +1 -0
  1327. data/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +1 -0
  1328. data/node_modules/caniuse-lite/data/features/css-initial-letter.js +1 -0
  1329. data/node_modules/caniuse-lite/data/features/css-initial-value.js +1 -0
  1330. data/node_modules/caniuse-lite/data/features/css-lch-lab.js +1 -0
  1331. data/node_modules/caniuse-lite/data/features/css-letter-spacing.js +1 -0
  1332. data/node_modules/caniuse-lite/data/features/css-line-clamp.js +1 -0
  1333. data/node_modules/caniuse-lite/data/features/css-logical-props.js +1 -0
  1334. data/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +1 -0
  1335. data/node_modules/caniuse-lite/data/features/css-masks.js +1 -0
  1336. data/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +1 -0
  1337. data/node_modules/caniuse-lite/data/features/css-math-functions.js +1 -0
  1338. data/node_modules/caniuse-lite/data/features/css-media-interaction.js +1 -0
  1339. data/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +1 -0
  1340. data/node_modules/caniuse-lite/data/features/css-media-resolution.js +1 -0
  1341. data/node_modules/caniuse-lite/data/features/css-media-scripting.js +1 -0
  1342. data/node_modules/caniuse-lite/data/features/css-mediaqueries.js +1 -0
  1343. data/node_modules/caniuse-lite/data/features/css-mixblendmode.js +1 -0
  1344. data/node_modules/caniuse-lite/data/features/css-module-scripts.js +1 -0
  1345. data/node_modules/caniuse-lite/data/features/css-motion-paths.js +1 -0
  1346. data/node_modules/caniuse-lite/data/features/css-namespaces.js +1 -0
  1347. data/node_modules/caniuse-lite/data/features/css-nesting.js +1 -0
  1348. data/node_modules/caniuse-lite/data/features/css-not-sel-list.js +1 -0
  1349. data/node_modules/caniuse-lite/data/features/css-nth-child-of.js +1 -0
  1350. data/node_modules/caniuse-lite/data/features/css-opacity.js +1 -0
  1351. data/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +1 -0
  1352. data/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +1 -0
  1353. data/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +1 -0
  1354. data/node_modules/caniuse-lite/data/features/css-overflow.js +1 -0
  1355. data/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +1 -0
  1356. data/node_modules/caniuse-lite/data/features/css-page-break.js +1 -0
  1357. data/node_modules/caniuse-lite/data/features/css-paged-media.js +1 -0
  1358. data/node_modules/caniuse-lite/data/features/css-paint-api.js +1 -0
  1359. data/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +1 -0
  1360. data/node_modules/caniuse-lite/data/features/css-placeholder.js +1 -0
  1361. data/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +1 -0
  1362. data/node_modules/caniuse-lite/data/features/css-read-only-write.js +1 -0
  1363. data/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +1 -0
  1364. data/node_modules/caniuse-lite/data/features/css-reflections.js +1 -0
  1365. data/node_modules/caniuse-lite/data/features/css-regions.js +1 -0
  1366. data/node_modules/caniuse-lite/data/features/css-relative-colors.js +1 -0
  1367. data/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +1 -0
  1368. data/node_modules/caniuse-lite/data/features/css-resize.js +1 -0
  1369. data/node_modules/caniuse-lite/data/features/css-revert-value.js +1 -0
  1370. data/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +1 -0
  1371. data/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +1 -0
  1372. data/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +1 -0
  1373. data/node_modules/caniuse-lite/data/features/css-scrollbar.js +1 -0
  1374. data/node_modules/caniuse-lite/data/features/css-sel2.js +1 -0
  1375. data/node_modules/caniuse-lite/data/features/css-sel3.js +1 -0
  1376. data/node_modules/caniuse-lite/data/features/css-selection.js +1 -0
  1377. data/node_modules/caniuse-lite/data/features/css-shapes.js +1 -0
  1378. data/node_modules/caniuse-lite/data/features/css-snappoints.js +1 -0
  1379. data/node_modules/caniuse-lite/data/features/css-sticky.js +1 -0
  1380. data/node_modules/caniuse-lite/data/features/css-subgrid.js +1 -0
  1381. data/node_modules/caniuse-lite/data/features/css-supports-api.js +1 -0
  1382. data/node_modules/caniuse-lite/data/features/css-table.js +1 -0
  1383. data/node_modules/caniuse-lite/data/features/css-text-align-last.js +1 -0
  1384. data/node_modules/caniuse-lite/data/features/css-text-box-trim.js +1 -0
  1385. data/node_modules/caniuse-lite/data/features/css-text-indent.js +1 -0
  1386. data/node_modules/caniuse-lite/data/features/css-text-justify.js +1 -0
  1387. data/node_modules/caniuse-lite/data/features/css-text-orientation.js +1 -0
  1388. data/node_modules/caniuse-lite/data/features/css-text-spacing.js +1 -0
  1389. data/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +1 -0
  1390. data/node_modules/caniuse-lite/data/features/css-textshadow.js +1 -0
  1391. data/node_modules/caniuse-lite/data/features/css-touch-action.js +1 -0
  1392. data/node_modules/caniuse-lite/data/features/css-transitions.js +1 -0
  1393. data/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +1 -0
  1394. data/node_modules/caniuse-lite/data/features/css-unset-value.js +1 -0
  1395. data/node_modules/caniuse-lite/data/features/css-variables.js +1 -0
  1396. data/node_modules/caniuse-lite/data/features/css-when-else.js +1 -0
  1397. data/node_modules/caniuse-lite/data/features/css-widows-orphans.js +1 -0
  1398. data/node_modules/caniuse-lite/data/features/css-width-stretch.js +1 -0
  1399. data/node_modules/caniuse-lite/data/features/css-writing-mode.js +1 -0
  1400. data/node_modules/caniuse-lite/data/features/css-zoom.js +1 -0
  1401. data/node_modules/caniuse-lite/data/features/css3-attr.js +1 -0
  1402. data/node_modules/caniuse-lite/data/features/css3-boxsizing.js +1 -0
  1403. data/node_modules/caniuse-lite/data/features/css3-colors.js +1 -0
  1404. data/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +1 -0
  1405. data/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +1 -0
  1406. data/node_modules/caniuse-lite/data/features/css3-cursors.js +1 -0
  1407. data/node_modules/caniuse-lite/data/features/css3-tabsize.js +1 -0
  1408. data/node_modules/caniuse-lite/data/features/currentcolor.js +1 -0
  1409. data/node_modules/caniuse-lite/data/features/custom-elements.js +1 -0
  1410. data/node_modules/caniuse-lite/data/features/custom-elementsv1.js +1 -0
  1411. data/node_modules/caniuse-lite/data/features/customevent.js +1 -0
  1412. data/node_modules/caniuse-lite/data/features/datalist.js +1 -0
  1413. data/node_modules/caniuse-lite/data/features/dataset.js +1 -0
  1414. data/node_modules/caniuse-lite/data/features/datauri.js +1 -0
  1415. data/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +1 -0
  1416. data/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +1 -0
  1417. data/node_modules/caniuse-lite/data/features/decorators.js +1 -0
  1418. data/node_modules/caniuse-lite/data/features/details.js +1 -0
  1419. data/node_modules/caniuse-lite/data/features/deviceorientation.js +1 -0
  1420. data/node_modules/caniuse-lite/data/features/devicepixelratio.js +1 -0
  1421. data/node_modules/caniuse-lite/data/features/dialog.js +1 -0
  1422. data/node_modules/caniuse-lite/data/features/dispatchevent.js +1 -0
  1423. data/node_modules/caniuse-lite/data/features/dnssec.js +1 -0
  1424. data/node_modules/caniuse-lite/data/features/do-not-track.js +1 -0
  1425. data/node_modules/caniuse-lite/data/features/document-currentscript.js +1 -0
  1426. data/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +1 -0
  1427. data/node_modules/caniuse-lite/data/features/document-execcommand.js +1 -0
  1428. data/node_modules/caniuse-lite/data/features/document-policy.js +1 -0
  1429. data/node_modules/caniuse-lite/data/features/document-scrollingelement.js +1 -0
  1430. data/node_modules/caniuse-lite/data/features/documenthead.js +1 -0
  1431. data/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +1 -0
  1432. data/node_modules/caniuse-lite/data/features/dom-range.js +1 -0
  1433. data/node_modules/caniuse-lite/data/features/domcontentloaded.js +1 -0
  1434. data/node_modules/caniuse-lite/data/features/dommatrix.js +1 -0
  1435. data/node_modules/caniuse-lite/data/features/download.js +1 -0
  1436. data/node_modules/caniuse-lite/data/features/dragndrop.js +1 -0
  1437. data/node_modules/caniuse-lite/data/features/element-closest.js +1 -0
  1438. data/node_modules/caniuse-lite/data/features/element-from-point.js +1 -0
  1439. data/node_modules/caniuse-lite/data/features/element-scroll-methods.js +1 -0
  1440. data/node_modules/caniuse-lite/data/features/eme.js +1 -0
  1441. data/node_modules/caniuse-lite/data/features/eot.js +1 -0
  1442. data/node_modules/caniuse-lite/data/features/es5.js +1 -0
  1443. data/node_modules/caniuse-lite/data/features/es6-class.js +1 -0
  1444. data/node_modules/caniuse-lite/data/features/es6-generators.js +1 -0
  1445. data/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +1 -0
  1446. data/node_modules/caniuse-lite/data/features/es6-module.js +1 -0
  1447. data/node_modules/caniuse-lite/data/features/es6-number.js +1 -0
  1448. data/node_modules/caniuse-lite/data/features/es6-string-includes.js +1 -0
  1449. data/node_modules/caniuse-lite/data/features/es6.js +1 -0
  1450. data/node_modules/caniuse-lite/data/features/eventsource.js +1 -0
  1451. data/node_modules/caniuse-lite/data/features/extended-system-fonts.js +1 -0
  1452. data/node_modules/caniuse-lite/data/features/feature-policy.js +1 -0
  1453. data/node_modules/caniuse-lite/data/features/fetch.js +1 -0
  1454. data/node_modules/caniuse-lite/data/features/fieldset-disabled.js +1 -0
  1455. data/node_modules/caniuse-lite/data/features/fileapi.js +1 -0
  1456. data/node_modules/caniuse-lite/data/features/filereader.js +1 -0
  1457. data/node_modules/caniuse-lite/data/features/filereadersync.js +1 -0
  1458. data/node_modules/caniuse-lite/data/features/filesystem.js +1 -0
  1459. data/node_modules/caniuse-lite/data/features/flac.js +1 -0
  1460. data/node_modules/caniuse-lite/data/features/flexbox-gap.js +1 -0
  1461. data/node_modules/caniuse-lite/data/features/flexbox.js +1 -0
  1462. data/node_modules/caniuse-lite/data/features/flow-root.js +1 -0
  1463. data/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +1 -0
  1464. data/node_modules/caniuse-lite/data/features/font-family-system-ui.js +1 -0
  1465. data/node_modules/caniuse-lite/data/features/font-feature.js +1 -0
  1466. data/node_modules/caniuse-lite/data/features/font-kerning.js +1 -0
  1467. data/node_modules/caniuse-lite/data/features/font-loading.js +1 -0
  1468. data/node_modules/caniuse-lite/data/features/font-size-adjust.js +1 -0
  1469. data/node_modules/caniuse-lite/data/features/font-smooth.js +1 -0
  1470. data/node_modules/caniuse-lite/data/features/font-unicode-range.js +1 -0
  1471. data/node_modules/caniuse-lite/data/features/font-variant-alternates.js +1 -0
  1472. data/node_modules/caniuse-lite/data/features/font-variant-numeric.js +1 -0
  1473. data/node_modules/caniuse-lite/data/features/fontface.js +1 -0
  1474. data/node_modules/caniuse-lite/data/features/form-attribute.js +1 -0
  1475. data/node_modules/caniuse-lite/data/features/form-submit-attributes.js +1 -0
  1476. data/node_modules/caniuse-lite/data/features/form-validation.js +1 -0
  1477. data/node_modules/caniuse-lite/data/features/forms.js +1 -0
  1478. data/node_modules/caniuse-lite/data/features/fullscreen.js +1 -0
  1479. data/node_modules/caniuse-lite/data/features/gamepad.js +1 -0
  1480. data/node_modules/caniuse-lite/data/features/geolocation.js +1 -0
  1481. data/node_modules/caniuse-lite/data/features/getboundingclientrect.js +1 -0
  1482. data/node_modules/caniuse-lite/data/features/getcomputedstyle.js +1 -0
  1483. data/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +1 -0
  1484. data/node_modules/caniuse-lite/data/features/getrandomvalues.js +1 -0
  1485. data/node_modules/caniuse-lite/data/features/gyroscope.js +1 -0
  1486. data/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +1 -0
  1487. data/node_modules/caniuse-lite/data/features/hashchange.js +1 -0
  1488. data/node_modules/caniuse-lite/data/features/heif.js +1 -0
  1489. data/node_modules/caniuse-lite/data/features/hevc.js +1 -0
  1490. data/node_modules/caniuse-lite/data/features/hidden.js +1 -0
  1491. data/node_modules/caniuse-lite/data/features/high-resolution-time.js +1 -0
  1492. data/node_modules/caniuse-lite/data/features/history.js +1 -0
  1493. data/node_modules/caniuse-lite/data/features/html-media-capture.js +1 -0
  1494. data/node_modules/caniuse-lite/data/features/html5semantic.js +1 -0
  1495. data/node_modules/caniuse-lite/data/features/http-live-streaming.js +1 -0
  1496. data/node_modules/caniuse-lite/data/features/http2.js +1 -0
  1497. data/node_modules/caniuse-lite/data/features/http3.js +1 -0
  1498. data/node_modules/caniuse-lite/data/features/iframe-sandbox.js +1 -0
  1499. data/node_modules/caniuse-lite/data/features/iframe-seamless.js +1 -0
  1500. data/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +1 -0
  1501. data/node_modules/caniuse-lite/data/features/imagecapture.js +1 -0
  1502. data/node_modules/caniuse-lite/data/features/ime.js +1 -0
  1503. data/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +1 -0
  1504. data/node_modules/caniuse-lite/data/features/import-maps.js +1 -0
  1505. data/node_modules/caniuse-lite/data/features/imports.js +1 -0
  1506. data/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +1 -0
  1507. data/node_modules/caniuse-lite/data/features/indexeddb.js +1 -0
  1508. data/node_modules/caniuse-lite/data/features/indexeddb2.js +1 -0
  1509. data/node_modules/caniuse-lite/data/features/inline-block.js +1 -0
  1510. data/node_modules/caniuse-lite/data/features/innertext.js +1 -0
  1511. data/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +1 -0
  1512. data/node_modules/caniuse-lite/data/features/input-color.js +1 -0
  1513. data/node_modules/caniuse-lite/data/features/input-datetime.js +1 -0
  1514. data/node_modules/caniuse-lite/data/features/input-email-tel-url.js +1 -0
  1515. data/node_modules/caniuse-lite/data/features/input-event.js +1 -0
  1516. data/node_modules/caniuse-lite/data/features/input-file-accept.js +1 -0
  1517. data/node_modules/caniuse-lite/data/features/input-file-directory.js +1 -0
  1518. data/node_modules/caniuse-lite/data/features/input-file-multiple.js +1 -0
  1519. data/node_modules/caniuse-lite/data/features/input-inputmode.js +1 -0
  1520. data/node_modules/caniuse-lite/data/features/input-minlength.js +1 -0
  1521. data/node_modules/caniuse-lite/data/features/input-number.js +1 -0
  1522. data/node_modules/caniuse-lite/data/features/input-pattern.js +1 -0
  1523. data/node_modules/caniuse-lite/data/features/input-placeholder.js +1 -0
  1524. data/node_modules/caniuse-lite/data/features/input-range.js +1 -0
  1525. data/node_modules/caniuse-lite/data/features/input-search.js +1 -0
  1526. data/node_modules/caniuse-lite/data/features/input-selection.js +1 -0
  1527. data/node_modules/caniuse-lite/data/features/insert-adjacent.js +1 -0
  1528. data/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +1 -0
  1529. data/node_modules/caniuse-lite/data/features/internationalization.js +1 -0
  1530. data/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +1 -0
  1531. data/node_modules/caniuse-lite/data/features/intersectionobserver.js +1 -0
  1532. data/node_modules/caniuse-lite/data/features/intl-pluralrules.js +1 -0
  1533. data/node_modules/caniuse-lite/data/features/intrinsic-width.js +1 -0
  1534. data/node_modules/caniuse-lite/data/features/jpeg2000.js +1 -0
  1535. data/node_modules/caniuse-lite/data/features/jpegxl.js +1 -0
  1536. data/node_modules/caniuse-lite/data/features/jpegxr.js +1 -0
  1537. data/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +1 -0
  1538. data/node_modules/caniuse-lite/data/features/json.js +1 -0
  1539. data/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +1 -0
  1540. data/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +1 -0
  1541. data/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +1 -0
  1542. data/node_modules/caniuse-lite/data/features/keyboardevent-code.js +1 -0
  1543. data/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +1 -0
  1544. data/node_modules/caniuse-lite/data/features/keyboardevent-key.js +1 -0
  1545. data/node_modules/caniuse-lite/data/features/keyboardevent-location.js +1 -0
  1546. data/node_modules/caniuse-lite/data/features/keyboardevent-which.js +1 -0
  1547. data/node_modules/caniuse-lite/data/features/lazyload.js +1 -0
  1548. data/node_modules/caniuse-lite/data/features/let.js +1 -0
  1549. data/node_modules/caniuse-lite/data/features/link-icon-png.js +1 -0
  1550. data/node_modules/caniuse-lite/data/features/link-icon-svg.js +1 -0
  1551. data/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +1 -0
  1552. data/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +1 -0
  1553. data/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +1 -0
  1554. data/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +1 -0
  1555. data/node_modules/caniuse-lite/data/features/link-rel-preload.js +1 -0
  1556. data/node_modules/caniuse-lite/data/features/link-rel-prerender.js +1 -0
  1557. data/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +1 -0
  1558. data/node_modules/caniuse-lite/data/features/localecompare.js +1 -0
  1559. data/node_modules/caniuse-lite/data/features/magnetometer.js +1 -0
  1560. data/node_modules/caniuse-lite/data/features/matchesselector.js +1 -0
  1561. data/node_modules/caniuse-lite/data/features/matchmedia.js +1 -0
  1562. data/node_modules/caniuse-lite/data/features/mathml.js +1 -0
  1563. data/node_modules/caniuse-lite/data/features/maxlength.js +1 -0
  1564. data/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +1 -0
  1565. data/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +1 -0
  1566. data/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +1 -0
  1567. data/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +1 -0
  1568. data/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +1 -0
  1569. data/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +1 -0
  1570. data/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +1 -0
  1571. data/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +1 -0
  1572. data/node_modules/caniuse-lite/data/features/media-fragments.js +1 -0
  1573. data/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +1 -0
  1574. data/node_modules/caniuse-lite/data/features/mediarecorder.js +1 -0
  1575. data/node_modules/caniuse-lite/data/features/mediasource.js +1 -0
  1576. data/node_modules/caniuse-lite/data/features/menu.js +1 -0
  1577. data/node_modules/caniuse-lite/data/features/meta-theme-color.js +1 -0
  1578. data/node_modules/caniuse-lite/data/features/meter.js +1 -0
  1579. data/node_modules/caniuse-lite/data/features/midi.js +1 -0
  1580. data/node_modules/caniuse-lite/data/features/minmaxwh.js +1 -0
  1581. data/node_modules/caniuse-lite/data/features/mp3.js +1 -0
  1582. data/node_modules/caniuse-lite/data/features/mpeg-dash.js +1 -0
  1583. data/node_modules/caniuse-lite/data/features/mpeg4.js +1 -0
  1584. data/node_modules/caniuse-lite/data/features/multibackgrounds.js +1 -0
  1585. data/node_modules/caniuse-lite/data/features/multicolumn.js +1 -0
  1586. data/node_modules/caniuse-lite/data/features/mutation-events.js +1 -0
  1587. data/node_modules/caniuse-lite/data/features/mutationobserver.js +1 -0
  1588. data/node_modules/caniuse-lite/data/features/namevalue-storage.js +1 -0
  1589. data/node_modules/caniuse-lite/data/features/native-filesystem-api.js +1 -0
  1590. data/node_modules/caniuse-lite/data/features/nav-timing.js +1 -0
  1591. data/node_modules/caniuse-lite/data/features/netinfo.js +1 -0
  1592. data/node_modules/caniuse-lite/data/features/notifications.js +1 -0
  1593. data/node_modules/caniuse-lite/data/features/object-entries.js +1 -0
  1594. data/node_modules/caniuse-lite/data/features/object-fit.js +1 -0
  1595. data/node_modules/caniuse-lite/data/features/object-observe.js +1 -0
  1596. data/node_modules/caniuse-lite/data/features/object-values.js +1 -0
  1597. data/node_modules/caniuse-lite/data/features/objectrtc.js +1 -0
  1598. data/node_modules/caniuse-lite/data/features/offline-apps.js +1 -0
  1599. data/node_modules/caniuse-lite/data/features/offscreencanvas.js +1 -0
  1600. data/node_modules/caniuse-lite/data/features/ogg-vorbis.js +1 -0
  1601. data/node_modules/caniuse-lite/data/features/ogv.js +1 -0
  1602. data/node_modules/caniuse-lite/data/features/ol-reversed.js +1 -0
  1603. data/node_modules/caniuse-lite/data/features/once-event-listener.js +1 -0
  1604. data/node_modules/caniuse-lite/data/features/online-status.js +1 -0
  1605. data/node_modules/caniuse-lite/data/features/opus.js +1 -0
  1606. data/node_modules/caniuse-lite/data/features/orientation-sensor.js +1 -0
  1607. data/node_modules/caniuse-lite/data/features/outline.js +1 -0
  1608. data/node_modules/caniuse-lite/data/features/pad-start-end.js +1 -0
  1609. data/node_modules/caniuse-lite/data/features/page-transition-events.js +1 -0
  1610. data/node_modules/caniuse-lite/data/features/pagevisibility.js +1 -0
  1611. data/node_modules/caniuse-lite/data/features/passive-event-listener.js +1 -0
  1612. data/node_modules/caniuse-lite/data/features/passkeys.js +1 -0
  1613. data/node_modules/caniuse-lite/data/features/passwordrules.js +1 -0
  1614. data/node_modules/caniuse-lite/data/features/path2d.js +1 -0
  1615. data/node_modules/caniuse-lite/data/features/payment-request.js +1 -0
  1616. data/node_modules/caniuse-lite/data/features/pdf-viewer.js +1 -0
  1617. data/node_modules/caniuse-lite/data/features/permissions-api.js +1 -0
  1618. data/node_modules/caniuse-lite/data/features/permissions-policy.js +1 -0
  1619. data/node_modules/caniuse-lite/data/features/picture-in-picture.js +1 -0
  1620. data/node_modules/caniuse-lite/data/features/picture.js +1 -0
  1621. data/node_modules/caniuse-lite/data/features/ping.js +1 -0
  1622. data/node_modules/caniuse-lite/data/features/png-alpha.js +1 -0
  1623. data/node_modules/caniuse-lite/data/features/pointer-events.js +1 -0
  1624. data/node_modules/caniuse-lite/data/features/pointer.js +1 -0
  1625. data/node_modules/caniuse-lite/data/features/pointerlock.js +1 -0
  1626. data/node_modules/caniuse-lite/data/features/portals.js +1 -0
  1627. data/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +1 -0
  1628. data/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +1 -0
  1629. data/node_modules/caniuse-lite/data/features/progress.js +1 -0
  1630. data/node_modules/caniuse-lite/data/features/promise-finally.js +1 -0
  1631. data/node_modules/caniuse-lite/data/features/promises.js +1 -0
  1632. data/node_modules/caniuse-lite/data/features/proximity.js +1 -0
  1633. data/node_modules/caniuse-lite/data/features/proxy.js +1 -0
  1634. data/node_modules/caniuse-lite/data/features/publickeypinning.js +1 -0
  1635. data/node_modules/caniuse-lite/data/features/push-api.js +1 -0
  1636. data/node_modules/caniuse-lite/data/features/queryselector.js +1 -0
  1637. data/node_modules/caniuse-lite/data/features/readonly-attr.js +1 -0
  1638. data/node_modules/caniuse-lite/data/features/referrer-policy.js +1 -0
  1639. data/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +1 -0
  1640. data/node_modules/caniuse-lite/data/features/rel-noopener.js +1 -0
  1641. data/node_modules/caniuse-lite/data/features/rel-noreferrer.js +1 -0
  1642. data/node_modules/caniuse-lite/data/features/rellist.js +1 -0
  1643. data/node_modules/caniuse-lite/data/features/rem.js +1 -0
  1644. data/node_modules/caniuse-lite/data/features/requestanimationframe.js +1 -0
  1645. data/node_modules/caniuse-lite/data/features/requestidlecallback.js +1 -0
  1646. data/node_modules/caniuse-lite/data/features/resizeobserver.js +1 -0
  1647. data/node_modules/caniuse-lite/data/features/resource-timing.js +1 -0
  1648. data/node_modules/caniuse-lite/data/features/rest-parameters.js +1 -0
  1649. data/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +1 -0
  1650. data/node_modules/caniuse-lite/data/features/ruby.js +1 -0
  1651. data/node_modules/caniuse-lite/data/features/run-in.js +1 -0
  1652. data/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +1 -0
  1653. data/node_modules/caniuse-lite/data/features/screen-orientation.js +1 -0
  1654. data/node_modules/caniuse-lite/data/features/script-async.js +1 -0
  1655. data/node_modules/caniuse-lite/data/features/script-defer.js +1 -0
  1656. data/node_modules/caniuse-lite/data/features/scrollintoview.js +1 -0
  1657. data/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +1 -0
  1658. data/node_modules/caniuse-lite/data/features/sdch.js +1 -0
  1659. data/node_modules/caniuse-lite/data/features/selection-api.js +1 -0
  1660. data/node_modules/caniuse-lite/data/features/selectlist.js +1 -0
  1661. data/node_modules/caniuse-lite/data/features/server-timing.js +1 -0
  1662. data/node_modules/caniuse-lite/data/features/serviceworkers.js +1 -0
  1663. data/node_modules/caniuse-lite/data/features/setimmediate.js +1 -0
  1664. data/node_modules/caniuse-lite/data/features/shadowdom.js +1 -0
  1665. data/node_modules/caniuse-lite/data/features/shadowdomv1.js +1 -0
  1666. data/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +1 -0
  1667. data/node_modules/caniuse-lite/data/features/sharedworkers.js +1 -0
  1668. data/node_modules/caniuse-lite/data/features/sni.js +1 -0
  1669. data/node_modules/caniuse-lite/data/features/spdy.js +1 -0
  1670. data/node_modules/caniuse-lite/data/features/speech-recognition.js +1 -0
  1671. data/node_modules/caniuse-lite/data/features/speech-synthesis.js +1 -0
  1672. data/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +1 -0
  1673. data/node_modules/caniuse-lite/data/features/sql-storage.js +1 -0
  1674. data/node_modules/caniuse-lite/data/features/srcset.js +1 -0
  1675. data/node_modules/caniuse-lite/data/features/stream.js +1 -0
  1676. data/node_modules/caniuse-lite/data/features/streams.js +1 -0
  1677. data/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +1 -0
  1678. data/node_modules/caniuse-lite/data/features/style-scoped.js +1 -0
  1679. data/node_modules/caniuse-lite/data/features/subresource-bundling.js +1 -0
  1680. data/node_modules/caniuse-lite/data/features/subresource-integrity.js +1 -0
  1681. data/node_modules/caniuse-lite/data/features/svg-css.js +1 -0
  1682. data/node_modules/caniuse-lite/data/features/svg-filters.js +1 -0
  1683. data/node_modules/caniuse-lite/data/features/svg-fonts.js +1 -0
  1684. data/node_modules/caniuse-lite/data/features/svg-fragment.js +1 -0
  1685. data/node_modules/caniuse-lite/data/features/svg-html.js +1 -0
  1686. data/node_modules/caniuse-lite/data/features/svg-html5.js +1 -0
  1687. data/node_modules/caniuse-lite/data/features/svg-img.js +1 -0
  1688. data/node_modules/caniuse-lite/data/features/svg-smil.js +1 -0
  1689. data/node_modules/caniuse-lite/data/features/svg.js +1 -0
  1690. data/node_modules/caniuse-lite/data/features/sxg.js +1 -0
  1691. data/node_modules/caniuse-lite/data/features/tabindex-attr.js +1 -0
  1692. data/node_modules/caniuse-lite/data/features/template-literals.js +1 -0
  1693. data/node_modules/caniuse-lite/data/features/template.js +1 -0
  1694. data/node_modules/caniuse-lite/data/features/temporal.js +1 -0
  1695. data/node_modules/caniuse-lite/data/features/testfeat.js +1 -0
  1696. data/node_modules/caniuse-lite/data/features/text-decoration.js +1 -0
  1697. data/node_modules/caniuse-lite/data/features/text-emphasis.js +1 -0
  1698. data/node_modules/caniuse-lite/data/features/text-overflow.js +1 -0
  1699. data/node_modules/caniuse-lite/data/features/text-size-adjust.js +1 -0
  1700. data/node_modules/caniuse-lite/data/features/text-stroke.js +1 -0
  1701. data/node_modules/caniuse-lite/data/features/textcontent.js +1 -0
  1702. data/node_modules/caniuse-lite/data/features/textencoder.js +1 -0
  1703. data/node_modules/caniuse-lite/data/features/tls1-1.js +1 -0
  1704. data/node_modules/caniuse-lite/data/features/tls1-2.js +1 -0
  1705. data/node_modules/caniuse-lite/data/features/tls1-3.js +1 -0
  1706. data/node_modules/caniuse-lite/data/features/touch.js +1 -0
  1707. data/node_modules/caniuse-lite/data/features/transforms2d.js +1 -0
  1708. data/node_modules/caniuse-lite/data/features/transforms3d.js +1 -0
  1709. data/node_modules/caniuse-lite/data/features/trusted-types.js +1 -0
  1710. data/node_modules/caniuse-lite/data/features/ttf.js +1 -0
  1711. data/node_modules/caniuse-lite/data/features/typedarrays.js +1 -0
  1712. data/node_modules/caniuse-lite/data/features/u2f.js +1 -0
  1713. data/node_modules/caniuse-lite/data/features/unhandledrejection.js +1 -0
  1714. data/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +1 -0
  1715. data/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +1 -0
  1716. data/node_modules/caniuse-lite/data/features/url.js +1 -0
  1717. data/node_modules/caniuse-lite/data/features/urlsearchparams.js +1 -0
  1718. data/node_modules/caniuse-lite/data/features/use-strict.js +1 -0
  1719. data/node_modules/caniuse-lite/data/features/user-select-none.js +1 -0
  1720. data/node_modules/caniuse-lite/data/features/user-timing.js +1 -0
  1721. data/node_modules/caniuse-lite/data/features/variable-fonts.js +1 -0
  1722. data/node_modules/caniuse-lite/data/features/vector-effect.js +1 -0
  1723. data/node_modules/caniuse-lite/data/features/vibration.js +1 -0
  1724. data/node_modules/caniuse-lite/data/features/video.js +1 -0
  1725. data/node_modules/caniuse-lite/data/features/videotracks.js +1 -0
  1726. data/node_modules/caniuse-lite/data/features/view-transitions.js +1 -0
  1727. data/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +1 -0
  1728. data/node_modules/caniuse-lite/data/features/viewport-units.js +1 -0
  1729. data/node_modules/caniuse-lite/data/features/wai-aria.js +1 -0
  1730. data/node_modules/caniuse-lite/data/features/wake-lock.js +1 -0
  1731. data/node_modules/caniuse-lite/data/features/wasm-bigint.js +1 -0
  1732. data/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +1 -0
  1733. data/node_modules/caniuse-lite/data/features/wasm-extended-const.js +1 -0
  1734. data/node_modules/caniuse-lite/data/features/wasm-gc.js +1 -0
  1735. data/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +1 -0
  1736. data/node_modules/caniuse-lite/data/features/wasm-multi-value.js +1 -0
  1737. data/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +1 -0
  1738. data/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +1 -0
  1739. data/node_modules/caniuse-lite/data/features/wasm-reference-types.js +1 -0
  1740. data/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +1 -0
  1741. data/node_modules/caniuse-lite/data/features/wasm-signext.js +1 -0
  1742. data/node_modules/caniuse-lite/data/features/wasm-simd.js +1 -0
  1743. data/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +1 -0
  1744. data/node_modules/caniuse-lite/data/features/wasm-threads.js +1 -0
  1745. data/node_modules/caniuse-lite/data/features/wasm.js +1 -0
  1746. data/node_modules/caniuse-lite/data/features/wav.js +1 -0
  1747. data/node_modules/caniuse-lite/data/features/wbr-element.js +1 -0
  1748. data/node_modules/caniuse-lite/data/features/web-animation.js +1 -0
  1749. data/node_modules/caniuse-lite/data/features/web-app-manifest.js +1 -0
  1750. data/node_modules/caniuse-lite/data/features/web-bluetooth.js +1 -0
  1751. data/node_modules/caniuse-lite/data/features/web-serial.js +1 -0
  1752. data/node_modules/caniuse-lite/data/features/web-share.js +1 -0
  1753. data/node_modules/caniuse-lite/data/features/webauthn.js +1 -0
  1754. data/node_modules/caniuse-lite/data/features/webcodecs.js +1 -0
  1755. data/node_modules/caniuse-lite/data/features/webgl.js +1 -0
  1756. data/node_modules/caniuse-lite/data/features/webgl2.js +1 -0
  1757. data/node_modules/caniuse-lite/data/features/webgpu.js +1 -0
  1758. data/node_modules/caniuse-lite/data/features/webhid.js +1 -0
  1759. data/node_modules/caniuse-lite/data/features/webkit-user-drag.js +1 -0
  1760. data/node_modules/caniuse-lite/data/features/webm.js +1 -0
  1761. data/node_modules/caniuse-lite/data/features/webnfc.js +1 -0
  1762. data/node_modules/caniuse-lite/data/features/webp.js +1 -0
  1763. data/node_modules/caniuse-lite/data/features/websockets.js +1 -0
  1764. data/node_modules/caniuse-lite/data/features/webtransport.js +1 -0
  1765. data/node_modules/caniuse-lite/data/features/webusb.js +1 -0
  1766. data/node_modules/caniuse-lite/data/features/webvr.js +1 -0
  1767. data/node_modules/caniuse-lite/data/features/webvtt.js +1 -0
  1768. data/node_modules/caniuse-lite/data/features/webworkers.js +1 -0
  1769. data/node_modules/caniuse-lite/data/features/webxr.js +1 -0
  1770. data/node_modules/caniuse-lite/data/features/will-change.js +1 -0
  1771. data/node_modules/caniuse-lite/data/features/woff.js +1 -0
  1772. data/node_modules/caniuse-lite/data/features/woff2.js +1 -0
  1773. data/node_modules/caniuse-lite/data/features/word-break.js +1 -0
  1774. data/node_modules/caniuse-lite/data/features/wordwrap.js +1 -0
  1775. data/node_modules/caniuse-lite/data/features/x-doc-messaging.js +1 -0
  1776. data/node_modules/caniuse-lite/data/features/x-frame-options.js +1 -0
  1777. data/node_modules/caniuse-lite/data/features/xhr2.js +1 -0
  1778. data/node_modules/caniuse-lite/data/features/xhtml.js +1 -0
  1779. data/node_modules/caniuse-lite/data/features/xhtmlsmil.js +1 -0
  1780. data/node_modules/caniuse-lite/data/features/xml-serializer.js +1 -0
  1781. data/node_modules/caniuse-lite/data/features/zstd.js +1 -0
  1782. data/node_modules/caniuse-lite/data/features.js +1 -0
  1783. data/node_modules/caniuse-lite/data/regions/AD.js +1 -0
  1784. data/node_modules/caniuse-lite/data/regions/AE.js +1 -0
  1785. data/node_modules/caniuse-lite/data/regions/AF.js +1 -0
  1786. data/node_modules/caniuse-lite/data/regions/AG.js +1 -0
  1787. data/node_modules/caniuse-lite/data/regions/AI.js +1 -0
  1788. data/node_modules/caniuse-lite/data/regions/AL.js +1 -0
  1789. data/node_modules/caniuse-lite/data/regions/AM.js +1 -0
  1790. data/node_modules/caniuse-lite/data/regions/AO.js +1 -0
  1791. data/node_modules/caniuse-lite/data/regions/AR.js +1 -0
  1792. data/node_modules/caniuse-lite/data/regions/AS.js +1 -0
  1793. data/node_modules/caniuse-lite/data/regions/AT.js +1 -0
  1794. data/node_modules/caniuse-lite/data/regions/AU.js +1 -0
  1795. data/node_modules/caniuse-lite/data/regions/AW.js +1 -0
  1796. data/node_modules/caniuse-lite/data/regions/AX.js +1 -0
  1797. data/node_modules/caniuse-lite/data/regions/AZ.js +1 -0
  1798. data/node_modules/caniuse-lite/data/regions/BA.js +1 -0
  1799. data/node_modules/caniuse-lite/data/regions/BB.js +1 -0
  1800. data/node_modules/caniuse-lite/data/regions/BD.js +1 -0
  1801. data/node_modules/caniuse-lite/data/regions/BE.js +1 -0
  1802. data/node_modules/caniuse-lite/data/regions/BF.js +1 -0
  1803. data/node_modules/caniuse-lite/data/regions/BG.js +1 -0
  1804. data/node_modules/caniuse-lite/data/regions/BH.js +1 -0
  1805. data/node_modules/caniuse-lite/data/regions/BI.js +1 -0
  1806. data/node_modules/caniuse-lite/data/regions/BJ.js +1 -0
  1807. data/node_modules/caniuse-lite/data/regions/BM.js +1 -0
  1808. data/node_modules/caniuse-lite/data/regions/BN.js +1 -0
  1809. data/node_modules/caniuse-lite/data/regions/BO.js +1 -0
  1810. data/node_modules/caniuse-lite/data/regions/BR.js +1 -0
  1811. data/node_modules/caniuse-lite/data/regions/BS.js +1 -0
  1812. data/node_modules/caniuse-lite/data/regions/BT.js +1 -0
  1813. data/node_modules/caniuse-lite/data/regions/BW.js +1 -0
  1814. data/node_modules/caniuse-lite/data/regions/BY.js +1 -0
  1815. data/node_modules/caniuse-lite/data/regions/BZ.js +1 -0
  1816. data/node_modules/caniuse-lite/data/regions/CA.js +1 -0
  1817. data/node_modules/caniuse-lite/data/regions/CD.js +1 -0
  1818. data/node_modules/caniuse-lite/data/regions/CF.js +1 -0
  1819. data/node_modules/caniuse-lite/data/regions/CG.js +1 -0
  1820. data/node_modules/caniuse-lite/data/regions/CH.js +1 -0
  1821. data/node_modules/caniuse-lite/data/regions/CI.js +1 -0
  1822. data/node_modules/caniuse-lite/data/regions/CK.js +1 -0
  1823. data/node_modules/caniuse-lite/data/regions/CL.js +1 -0
  1824. data/node_modules/caniuse-lite/data/regions/CM.js +1 -0
  1825. data/node_modules/caniuse-lite/data/regions/CN.js +1 -0
  1826. data/node_modules/caniuse-lite/data/regions/CO.js +1 -0
  1827. data/node_modules/caniuse-lite/data/regions/CR.js +1 -0
  1828. data/node_modules/caniuse-lite/data/regions/CU.js +1 -0
  1829. data/node_modules/caniuse-lite/data/regions/CV.js +1 -0
  1830. data/node_modules/caniuse-lite/data/regions/CX.js +1 -0
  1831. data/node_modules/caniuse-lite/data/regions/CY.js +1 -0
  1832. data/node_modules/caniuse-lite/data/regions/CZ.js +1 -0
  1833. data/node_modules/caniuse-lite/data/regions/DE.js +1 -0
  1834. data/node_modules/caniuse-lite/data/regions/DJ.js +1 -0
  1835. data/node_modules/caniuse-lite/data/regions/DK.js +1 -0
  1836. data/node_modules/caniuse-lite/data/regions/DM.js +1 -0
  1837. data/node_modules/caniuse-lite/data/regions/DO.js +1 -0
  1838. data/node_modules/caniuse-lite/data/regions/DZ.js +1 -0
  1839. data/node_modules/caniuse-lite/data/regions/EC.js +1 -0
  1840. data/node_modules/caniuse-lite/data/regions/EE.js +1 -0
  1841. data/node_modules/caniuse-lite/data/regions/EG.js +1 -0
  1842. data/node_modules/caniuse-lite/data/regions/ER.js +1 -0
  1843. data/node_modules/caniuse-lite/data/regions/ES.js +1 -0
  1844. data/node_modules/caniuse-lite/data/regions/ET.js +1 -0
  1845. data/node_modules/caniuse-lite/data/regions/FI.js +1 -0
  1846. data/node_modules/caniuse-lite/data/regions/FJ.js +1 -0
  1847. data/node_modules/caniuse-lite/data/regions/FK.js +1 -0
  1848. data/node_modules/caniuse-lite/data/regions/FM.js +1 -0
  1849. data/node_modules/caniuse-lite/data/regions/FO.js +1 -0
  1850. data/node_modules/caniuse-lite/data/regions/FR.js +1 -0
  1851. data/node_modules/caniuse-lite/data/regions/GA.js +1 -0
  1852. data/node_modules/caniuse-lite/data/regions/GB.js +1 -0
  1853. data/node_modules/caniuse-lite/data/regions/GD.js +1 -0
  1854. data/node_modules/caniuse-lite/data/regions/GE.js +1 -0
  1855. data/node_modules/caniuse-lite/data/regions/GF.js +1 -0
  1856. data/node_modules/caniuse-lite/data/regions/GG.js +1 -0
  1857. data/node_modules/caniuse-lite/data/regions/GH.js +1 -0
  1858. data/node_modules/caniuse-lite/data/regions/GI.js +1 -0
  1859. data/node_modules/caniuse-lite/data/regions/GL.js +1 -0
  1860. data/node_modules/caniuse-lite/data/regions/GM.js +1 -0
  1861. data/node_modules/caniuse-lite/data/regions/GN.js +1 -0
  1862. data/node_modules/caniuse-lite/data/regions/GP.js +1 -0
  1863. data/node_modules/caniuse-lite/data/regions/GQ.js +1 -0
  1864. data/node_modules/caniuse-lite/data/regions/GR.js +1 -0
  1865. data/node_modules/caniuse-lite/data/regions/GT.js +1 -0
  1866. data/node_modules/caniuse-lite/data/regions/GU.js +1 -0
  1867. data/node_modules/caniuse-lite/data/regions/GW.js +1 -0
  1868. data/node_modules/caniuse-lite/data/regions/GY.js +1 -0
  1869. data/node_modules/caniuse-lite/data/regions/HK.js +1 -0
  1870. data/node_modules/caniuse-lite/data/regions/HN.js +1 -0
  1871. data/node_modules/caniuse-lite/data/regions/HR.js +1 -0
  1872. data/node_modules/caniuse-lite/data/regions/HT.js +1 -0
  1873. data/node_modules/caniuse-lite/data/regions/HU.js +1 -0
  1874. data/node_modules/caniuse-lite/data/regions/ID.js +1 -0
  1875. data/node_modules/caniuse-lite/data/regions/IE.js +1 -0
  1876. data/node_modules/caniuse-lite/data/regions/IL.js +1 -0
  1877. data/node_modules/caniuse-lite/data/regions/IM.js +1 -0
  1878. data/node_modules/caniuse-lite/data/regions/IN.js +1 -0
  1879. data/node_modules/caniuse-lite/data/regions/IQ.js +1 -0
  1880. data/node_modules/caniuse-lite/data/regions/IR.js +1 -0
  1881. data/node_modules/caniuse-lite/data/regions/IS.js +1 -0
  1882. data/node_modules/caniuse-lite/data/regions/IT.js +1 -0
  1883. data/node_modules/caniuse-lite/data/regions/JE.js +1 -0
  1884. data/node_modules/caniuse-lite/data/regions/JM.js +1 -0
  1885. data/node_modules/caniuse-lite/data/regions/JO.js +1 -0
  1886. data/node_modules/caniuse-lite/data/regions/JP.js +1 -0
  1887. data/node_modules/caniuse-lite/data/regions/KE.js +1 -0
  1888. data/node_modules/caniuse-lite/data/regions/KG.js +1 -0
  1889. data/node_modules/caniuse-lite/data/regions/KH.js +1 -0
  1890. data/node_modules/caniuse-lite/data/regions/KI.js +1 -0
  1891. data/node_modules/caniuse-lite/data/regions/KM.js +1 -0
  1892. data/node_modules/caniuse-lite/data/regions/KN.js +1 -0
  1893. data/node_modules/caniuse-lite/data/regions/KP.js +1 -0
  1894. data/node_modules/caniuse-lite/data/regions/KR.js +1 -0
  1895. data/node_modules/caniuse-lite/data/regions/KW.js +1 -0
  1896. data/node_modules/caniuse-lite/data/regions/KY.js +1 -0
  1897. data/node_modules/caniuse-lite/data/regions/KZ.js +1 -0
  1898. data/node_modules/caniuse-lite/data/regions/LA.js +1 -0
  1899. data/node_modules/caniuse-lite/data/regions/LB.js +1 -0
  1900. data/node_modules/caniuse-lite/data/regions/LC.js +1 -0
  1901. data/node_modules/caniuse-lite/data/regions/LI.js +1 -0
  1902. data/node_modules/caniuse-lite/data/regions/LK.js +1 -0
  1903. data/node_modules/caniuse-lite/data/regions/LR.js +1 -0
  1904. data/node_modules/caniuse-lite/data/regions/LS.js +1 -0
  1905. data/node_modules/caniuse-lite/data/regions/LT.js +1 -0
  1906. data/node_modules/caniuse-lite/data/regions/LU.js +1 -0
  1907. data/node_modules/caniuse-lite/data/regions/LV.js +1 -0
  1908. data/node_modules/caniuse-lite/data/regions/LY.js +1 -0
  1909. data/node_modules/caniuse-lite/data/regions/MA.js +1 -0
  1910. data/node_modules/caniuse-lite/data/regions/MC.js +1 -0
  1911. data/node_modules/caniuse-lite/data/regions/MD.js +1 -0
  1912. data/node_modules/caniuse-lite/data/regions/ME.js +1 -0
  1913. data/node_modules/caniuse-lite/data/regions/MG.js +1 -0
  1914. data/node_modules/caniuse-lite/data/regions/MH.js +1 -0
  1915. data/node_modules/caniuse-lite/data/regions/MK.js +1 -0
  1916. data/node_modules/caniuse-lite/data/regions/ML.js +1 -0
  1917. data/node_modules/caniuse-lite/data/regions/MM.js +1 -0
  1918. data/node_modules/caniuse-lite/data/regions/MN.js +1 -0
  1919. data/node_modules/caniuse-lite/data/regions/MO.js +1 -0
  1920. data/node_modules/caniuse-lite/data/regions/MP.js +1 -0
  1921. data/node_modules/caniuse-lite/data/regions/MQ.js +1 -0
  1922. data/node_modules/caniuse-lite/data/regions/MR.js +1 -0
  1923. data/node_modules/caniuse-lite/data/regions/MS.js +1 -0
  1924. data/node_modules/caniuse-lite/data/regions/MT.js +1 -0
  1925. data/node_modules/caniuse-lite/data/regions/MU.js +1 -0
  1926. data/node_modules/caniuse-lite/data/regions/MV.js +1 -0
  1927. data/node_modules/caniuse-lite/data/regions/MW.js +1 -0
  1928. data/node_modules/caniuse-lite/data/regions/MX.js +1 -0
  1929. data/node_modules/caniuse-lite/data/regions/MY.js +1 -0
  1930. data/node_modules/caniuse-lite/data/regions/MZ.js +1 -0
  1931. data/node_modules/caniuse-lite/data/regions/NA.js +1 -0
  1932. data/node_modules/caniuse-lite/data/regions/NC.js +1 -0
  1933. data/node_modules/caniuse-lite/data/regions/NE.js +1 -0
  1934. data/node_modules/caniuse-lite/data/regions/NF.js +1 -0
  1935. data/node_modules/caniuse-lite/data/regions/NG.js +1 -0
  1936. data/node_modules/caniuse-lite/data/regions/NI.js +1 -0
  1937. data/node_modules/caniuse-lite/data/regions/NL.js +1 -0
  1938. data/node_modules/caniuse-lite/data/regions/NO.js +1 -0
  1939. data/node_modules/caniuse-lite/data/regions/NP.js +1 -0
  1940. data/node_modules/caniuse-lite/data/regions/NR.js +1 -0
  1941. data/node_modules/caniuse-lite/data/regions/NU.js +1 -0
  1942. data/node_modules/caniuse-lite/data/regions/NZ.js +1 -0
  1943. data/node_modules/caniuse-lite/data/regions/OM.js +1 -0
  1944. data/node_modules/caniuse-lite/data/regions/PA.js +1 -0
  1945. data/node_modules/caniuse-lite/data/regions/PE.js +1 -0
  1946. data/node_modules/caniuse-lite/data/regions/PF.js +1 -0
  1947. data/node_modules/caniuse-lite/data/regions/PG.js +1 -0
  1948. data/node_modules/caniuse-lite/data/regions/PH.js +1 -0
  1949. data/node_modules/caniuse-lite/data/regions/PK.js +1 -0
  1950. data/node_modules/caniuse-lite/data/regions/PL.js +1 -0
  1951. data/node_modules/caniuse-lite/data/regions/PM.js +1 -0
  1952. data/node_modules/caniuse-lite/data/regions/PN.js +1 -0
  1953. data/node_modules/caniuse-lite/data/regions/PR.js +1 -0
  1954. data/node_modules/caniuse-lite/data/regions/PS.js +1 -0
  1955. data/node_modules/caniuse-lite/data/regions/PT.js +1 -0
  1956. data/node_modules/caniuse-lite/data/regions/PW.js +1 -0
  1957. data/node_modules/caniuse-lite/data/regions/PY.js +1 -0
  1958. data/node_modules/caniuse-lite/data/regions/QA.js +1 -0
  1959. data/node_modules/caniuse-lite/data/regions/RE.js +1 -0
  1960. data/node_modules/caniuse-lite/data/regions/RO.js +1 -0
  1961. data/node_modules/caniuse-lite/data/regions/RS.js +1 -0
  1962. data/node_modules/caniuse-lite/data/regions/RU.js +1 -0
  1963. data/node_modules/caniuse-lite/data/regions/RW.js +1 -0
  1964. data/node_modules/caniuse-lite/data/regions/SA.js +1 -0
  1965. data/node_modules/caniuse-lite/data/regions/SB.js +1 -0
  1966. data/node_modules/caniuse-lite/data/regions/SC.js +1 -0
  1967. data/node_modules/caniuse-lite/data/regions/SD.js +1 -0
  1968. data/node_modules/caniuse-lite/data/regions/SE.js +1 -0
  1969. data/node_modules/caniuse-lite/data/regions/SG.js +1 -0
  1970. data/node_modules/caniuse-lite/data/regions/SH.js +1 -0
  1971. data/node_modules/caniuse-lite/data/regions/SI.js +1 -0
  1972. data/node_modules/caniuse-lite/data/regions/SK.js +1 -0
  1973. data/node_modules/caniuse-lite/data/regions/SL.js +1 -0
  1974. data/node_modules/caniuse-lite/data/regions/SM.js +1 -0
  1975. data/node_modules/caniuse-lite/data/regions/SN.js +1 -0
  1976. data/node_modules/caniuse-lite/data/regions/SO.js +1 -0
  1977. data/node_modules/caniuse-lite/data/regions/SR.js +1 -0
  1978. data/node_modules/caniuse-lite/data/regions/ST.js +1 -0
  1979. data/node_modules/caniuse-lite/data/regions/SV.js +1 -0
  1980. data/node_modules/caniuse-lite/data/regions/SY.js +1 -0
  1981. data/node_modules/caniuse-lite/data/regions/SZ.js +1 -0
  1982. data/node_modules/caniuse-lite/data/regions/TC.js +1 -0
  1983. data/node_modules/caniuse-lite/data/regions/TD.js +1 -0
  1984. data/node_modules/caniuse-lite/data/regions/TG.js +1 -0
  1985. data/node_modules/caniuse-lite/data/regions/TH.js +1 -0
  1986. data/node_modules/caniuse-lite/data/regions/TJ.js +1 -0
  1987. data/node_modules/caniuse-lite/data/regions/TK.js +1 -0
  1988. data/node_modules/caniuse-lite/data/regions/TL.js +1 -0
  1989. data/node_modules/caniuse-lite/data/regions/TM.js +1 -0
  1990. data/node_modules/caniuse-lite/data/regions/TN.js +1 -0
  1991. data/node_modules/caniuse-lite/data/regions/TO.js +1 -0
  1992. data/node_modules/caniuse-lite/data/regions/TR.js +1 -0
  1993. data/node_modules/caniuse-lite/data/regions/TT.js +1 -0
  1994. data/node_modules/caniuse-lite/data/regions/TV.js +1 -0
  1995. data/node_modules/caniuse-lite/data/regions/TW.js +1 -0
  1996. data/node_modules/caniuse-lite/data/regions/TZ.js +1 -0
  1997. data/node_modules/caniuse-lite/data/regions/UA.js +1 -0
  1998. data/node_modules/caniuse-lite/data/regions/UG.js +1 -0
  1999. data/node_modules/caniuse-lite/data/regions/US.js +1 -0
  2000. data/node_modules/caniuse-lite/data/regions/UY.js +1 -0
  2001. data/node_modules/caniuse-lite/data/regions/UZ.js +1 -0
  2002. data/node_modules/caniuse-lite/data/regions/VA.js +1 -0
  2003. data/node_modules/caniuse-lite/data/regions/VC.js +1 -0
  2004. data/node_modules/caniuse-lite/data/regions/VE.js +1 -0
  2005. data/node_modules/caniuse-lite/data/regions/VG.js +1 -0
  2006. data/node_modules/caniuse-lite/data/regions/VI.js +1 -0
  2007. data/node_modules/caniuse-lite/data/regions/VN.js +1 -0
  2008. data/node_modules/caniuse-lite/data/regions/VU.js +1 -0
  2009. data/node_modules/caniuse-lite/data/regions/WF.js +1 -0
  2010. data/node_modules/caniuse-lite/data/regions/WS.js +1 -0
  2011. data/node_modules/caniuse-lite/data/regions/YE.js +1 -0
  2012. data/node_modules/caniuse-lite/data/regions/YT.js +1 -0
  2013. data/node_modules/caniuse-lite/data/regions/ZA.js +1 -0
  2014. data/node_modules/caniuse-lite/data/regions/ZM.js +1 -0
  2015. data/node_modules/caniuse-lite/data/regions/ZW.js +1 -0
  2016. data/node_modules/caniuse-lite/data/regions/alt-af.js +1 -0
  2017. data/node_modules/caniuse-lite/data/regions/alt-an.js +1 -0
  2018. data/node_modules/caniuse-lite/data/regions/alt-as.js +1 -0
  2019. data/node_modules/caniuse-lite/data/regions/alt-eu.js +1 -0
  2020. data/node_modules/caniuse-lite/data/regions/alt-na.js +1 -0
  2021. data/node_modules/caniuse-lite/data/regions/alt-oc.js +1 -0
  2022. data/node_modules/caniuse-lite/data/regions/alt-sa.js +1 -0
  2023. data/node_modules/caniuse-lite/data/regions/alt-ww.js +1 -0
  2024. data/node_modules/caniuse-lite/dist/lib/statuses.js +9 -0
  2025. data/node_modules/caniuse-lite/dist/lib/supported.js +9 -0
  2026. data/node_modules/caniuse-lite/dist/unpacker/agents.js +47 -0
  2027. data/node_modules/caniuse-lite/dist/unpacker/browserVersions.js +1 -0
  2028. data/node_modules/caniuse-lite/dist/unpacker/browsers.js +1 -0
  2029. data/node_modules/caniuse-lite/dist/unpacker/feature.js +52 -0
  2030. data/node_modules/caniuse-lite/dist/unpacker/features.js +6 -0
  2031. data/node_modules/caniuse-lite/dist/unpacker/index.js +4 -0
  2032. data/node_modules/caniuse-lite/dist/unpacker/region.js +22 -0
  2033. data/node_modules/caniuse-lite/package.json +34 -0
  2034. data/node_modules/clone-deep/LICENSE +21 -0
  2035. data/node_modules/clone-deep/README.md +106 -0
  2036. data/node_modules/clone-deep/index.js +49 -0
  2037. data/node_modules/clone-deep/package.json +81 -0
  2038. data/node_modules/commondir/LICENSE +24 -0
  2039. data/node_modules/commondir/example/dir.js +3 -0
  2040. data/node_modules/commondir/index.js +29 -0
  2041. data/node_modules/commondir/package.json +34 -0
  2042. data/node_modules/commondir/readme.markdown +48 -0
  2043. data/node_modules/commondir/test/dirs.js +55 -0
  2044. data/node_modules/configstore/node_modules/write-file-atomic/CHANGELOG.md +32 -0
  2045. data/node_modules/configstore/node_modules/write-file-atomic/LICENSE +6 -0
  2046. data/node_modules/configstore/node_modules/write-file-atomic/README.md +72 -0
  2047. data/node_modules/configstore/node_modules/write-file-atomic/index.js +259 -0
  2048. data/node_modules/configstore/node_modules/write-file-atomic/package.json +48 -0
  2049. data/node_modules/convert-source-map/LICENSE +23 -0
  2050. data/node_modules/convert-source-map/README.md +206 -0
  2051. data/node_modules/convert-source-map/index.js +233 -0
  2052. data/node_modules/convert-source-map/package.json +38 -0
  2053. data/node_modules/cross-spawn/node_modules/which/CHANGELOG.md +166 -0
  2054. data/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
  2055. data/node_modules/cross-spawn/node_modules/which/README.md +54 -0
  2056. data/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
  2057. data/node_modules/cross-spawn/node_modules/which/package.json +43 -0
  2058. data/node_modules/cross-spawn/node_modules/which/which.js +125 -0
  2059. data/node_modules/data-view-buffer/CHANGELOG.md +22 -0
  2060. data/node_modules/data-view-buffer/LICENSE +21 -0
  2061. data/node_modules/data-view-buffer/README.md +43 -0
  2062. data/node_modules/data-view-buffer/index.d.ts +4 -0
  2063. data/node_modules/data-view-buffer/index.js +19 -0
  2064. data/node_modules/data-view-buffer/package.json +88 -0
  2065. data/node_modules/data-view-buffer/test/index.js +31 -0
  2066. data/node_modules/data-view-buffer/tsconfig.json +50 -0
  2067. data/node_modules/data-view-byte-length/CHANGELOG.md +24 -0
  2068. data/node_modules/data-view-byte-length/LICENSE +21 -0
  2069. data/node_modules/data-view-byte-length/README.md +43 -0
  2070. data/node_modules/data-view-byte-length/index.d.ts +4 -0
  2071. data/node_modules/data-view-byte-length/index.js +19 -0
  2072. data/node_modules/data-view-byte-length/package.json +94 -0
  2073. data/node_modules/data-view-byte-length/test/index.js +31 -0
  2074. data/node_modules/data-view-byte-length/tsconfig.json +9 -0
  2075. data/node_modules/data-view-byte-offset/CHANGELOG.md +15 -0
  2076. data/node_modules/data-view-byte-offset/LICENSE +21 -0
  2077. data/node_modules/data-view-byte-offset/README.md +43 -0
  2078. data/node_modules/data-view-byte-offset/index.d.ts +4 -0
  2079. data/node_modules/data-view-byte-offset/index.js +19 -0
  2080. data/node_modules/data-view-byte-offset/package.json +93 -0
  2081. data/node_modules/data-view-byte-offset/test/index.js +31 -0
  2082. data/node_modules/data-view-byte-offset/tsconfig.json +50 -0
  2083. data/node_modules/define-data-property/CHANGELOG.md +39 -0
  2084. data/node_modules/define-data-property/index.d.ts +12 -3
  2085. data/node_modules/define-data-property/index.js +4 -8
  2086. data/node_modules/define-data-property/package.json +27 -32
  2087. data/node_modules/define-data-property/test/index.js +16 -21
  2088. data/node_modules/define-data-property/tsconfig.json +1 -0
  2089. data/node_modules/electron-to-chromium/LICENSE +5 -0
  2090. data/node_modules/electron-to-chromium/README.md +186 -0
  2091. data/node_modules/electron-to-chromium/chromium-versions.js +66 -0
  2092. data/node_modules/electron-to-chromium/chromium-versions.json +1 -0
  2093. data/node_modules/electron-to-chromium/full-chromium-versions.js +3276 -0
  2094. data/node_modules/electron-to-chromium/full-chromium-versions.json +1 -0
  2095. data/node_modules/electron-to-chromium/full-versions.js +2380 -0
  2096. data/node_modules/electron-to-chromium/full-versions.json +1 -0
  2097. data/node_modules/electron-to-chromium/index.js +36 -0
  2098. data/node_modules/electron-to-chromium/package.json +44 -0
  2099. data/node_modules/electron-to-chromium/versions.js +156 -0
  2100. data/node_modules/electron-to-chromium/versions.json +1 -0
  2101. data/node_modules/es-abstract/2015/AbstractRelationalComparison.js +3 -4
  2102. data/node_modules/es-abstract/2015/AdvanceStringIndex.js +3 -7
  2103. data/node_modules/es-abstract/2015/ArrayCreate.js +3 -3
  2104. data/node_modules/es-abstract/2015/ArraySetLength.js +4 -12
  2105. data/node_modules/es-abstract/2015/ArraySpeciesCreate.js +1 -1
  2106. data/node_modules/es-abstract/2015/Call.js +1 -1
  2107. data/node_modules/es-abstract/2015/CanonicalNumericIndexString.js +2 -5
  2108. data/node_modules/es-abstract/2015/Canonicalize.js +7 -11
  2109. data/node_modules/es-abstract/2015/CharacterRange.js +1 -1
  2110. data/node_modules/es-abstract/2015/CompletePropertyDescriptor.js +14 -10
  2111. data/node_modules/es-abstract/2015/CompletionRecord.js +1 -3
  2112. data/node_modules/es-abstract/2015/CreateDataProperty.js +1 -3
  2113. data/node_modules/es-abstract/2015/CreateDataPropertyOrThrow.js +1 -3
  2114. data/node_modules/es-abstract/2015/CreateHTML.js +2 -5
  2115. data/node_modules/es-abstract/2015/CreateIterResultObject.js +2 -6
  2116. data/node_modules/es-abstract/2015/CreateListFromArrayLike.js +1 -3
  2117. data/node_modules/es-abstract/2015/CreateMethodProperty.js +1 -3
  2118. data/node_modules/es-abstract/2015/DateFromTime.js +1 -3
  2119. data/node_modules/es-abstract/2015/DefinePropertyOrThrow.js +4 -15
  2120. data/node_modules/es-abstract/2015/DeletePropertyOrThrow.js +1 -3
  2121. data/node_modules/es-abstract/2015/DetachArrayBuffer.js +16 -12
  2122. data/node_modules/es-abstract/2015/EnumerableOwnNames.js +1 -3
  2123. data/node_modules/es-abstract/2015/FromPropertyDescriptor.js +5 -5
  2124. data/node_modules/es-abstract/2015/Get.js +1 -3
  2125. data/node_modules/es-abstract/2015/GetIterator.js +1 -3
  2126. data/node_modules/es-abstract/2015/GetMethod.js +1 -3
  2127. data/node_modules/es-abstract/2015/GetOwnPropertyKeys.js +1 -1
  2128. data/node_modules/es-abstract/2015/GetPrototypeFromConstructor.js +2 -2
  2129. data/node_modules/es-abstract/2015/GetSubstitution.js +8 -9
  2130. data/node_modules/es-abstract/2015/GetV.js +1 -3
  2131. data/node_modules/es-abstract/2015/GetValueFromBuffer.js +3 -14
  2132. data/node_modules/es-abstract/2015/HasOwnProperty.js +3 -5
  2133. data/node_modules/es-abstract/2015/HasProperty.js +1 -3
  2134. data/node_modules/es-abstract/2015/InLeapYear.js +1 -3
  2135. data/node_modules/es-abstract/2015/InstanceofOperator.js +1 -1
  2136. data/node_modules/es-abstract/2015/IntegerIndexedElementGet.js +58 -0
  2137. data/node_modules/es-abstract/2015/IntegerIndexedElementSet.js +58 -0
  2138. data/node_modules/es-abstract/2015/InternalizeJSONProperty.js +68 -0
  2139. data/node_modules/es-abstract/2015/Invoke.js +1 -3
  2140. data/node_modules/es-abstract/2015/IsAccessorDescriptor.js +7 -5
  2141. data/node_modules/es-abstract/2015/IsDataDescriptor.js +7 -5
  2142. data/node_modules/es-abstract/2015/IsDetachedBuffer.js +1 -3
  2143. data/node_modules/es-abstract/2015/IsGenericDescriptor.js +6 -3
  2144. data/node_modules/es-abstract/2015/IsPropertyDescriptor.js +2 -10
  2145. data/node_modules/es-abstract/2015/IsWordChar.js +1 -3
  2146. data/node_modules/es-abstract/2015/IteratorClose.js +1 -3
  2147. data/node_modules/es-abstract/2015/IteratorComplete.js +1 -3
  2148. data/node_modules/es-abstract/2015/IteratorNext.js +1 -3
  2149. data/node_modules/es-abstract/2015/IteratorValue.js +1 -3
  2150. data/node_modules/es-abstract/2015/NewPromiseCapability.js +1 -3
  2151. data/node_modules/es-abstract/2015/ObjectCreate.js +2 -2
  2152. data/node_modules/es-abstract/2015/OrdinaryCreateFromConstructor.js +1 -1
  2153. data/node_modules/es-abstract/2015/OrdinaryDefineOwnProperty.js +4 -11
  2154. data/node_modules/es-abstract/2015/OrdinaryGetOwnProperty.js +3 -5
  2155. data/node_modules/es-abstract/2015/OrdinaryHasInstance.js +1 -3
  2156. data/node_modules/es-abstract/2015/OrdinaryHasProperty.js +1 -3
  2157. data/node_modules/es-abstract/2015/QuoteJSONString.js +2 -6
  2158. data/node_modules/es-abstract/2015/RegExpExec.js +3 -5
  2159. data/node_modules/es-abstract/2015/RequireObjectCoercible.js +1 -1
  2160. data/node_modules/es-abstract/2015/Set.js +2 -4
  2161. data/node_modules/es-abstract/2015/SetFunctionName.js +5 -9
  2162. data/node_modules/es-abstract/2015/SetIntegrityLevel.js +2 -2
  2163. data/node_modules/es-abstract/2015/SetValueInBuffer.js +8 -18
  2164. data/node_modules/es-abstract/2015/SpeciesConstructor.js +1 -1
  2165. data/node_modules/es-abstract/2015/SplitMatch.js +3 -6
  2166. data/node_modules/es-abstract/2015/StringCreate.js +4 -5
  2167. data/node_modules/es-abstract/2015/StringGetIndexProperty.js +2 -4
  2168. data/node_modules/es-abstract/2015/SymbolDescriptiveString.js +2 -6
  2169. data/node_modules/es-abstract/2015/TestIntegrityLevel.js +1 -3
  2170. data/node_modules/es-abstract/2015/ToDateString.js +2 -4
  2171. data/node_modules/es-abstract/2015/ToNumber.js +1 -1
  2172. data/node_modules/es-abstract/2015/ToObject.js +1 -10
  2173. data/node_modules/es-abstract/2015/ToPropertyDescriptor.js +9 -11
  2174. data/node_modules/es-abstract/2015/ToString.js +1 -1
  2175. data/node_modules/es-abstract/2015/ValidateAndApplyPropertyDescriptor.js +6 -16
  2176. data/node_modules/es-abstract/2015/ValidateTypedArray.js +10 -12
  2177. data/node_modules/es-abstract/2015/tables/typed-array-objects.js +31 -0
  2178. data/node_modules/es-abstract/2015/thisBooleanValue.js +1 -3
  2179. data/node_modules/es-abstract/2015/thisNumberValue.js +1 -3
  2180. data/node_modules/es-abstract/2015/thisStringValue.js +1 -3
  2181. data/node_modules/es-abstract/2016/AbstractRelationalComparison.js +3 -4
  2182. data/node_modules/es-abstract/2016/AdvanceStringIndex.js +3 -7
  2183. data/node_modules/es-abstract/2016/ArrayCreate.js +3 -3
  2184. data/node_modules/es-abstract/2016/ArraySetLength.js +4 -12
  2185. data/node_modules/es-abstract/2016/ArraySpeciesCreate.js +1 -1
  2186. data/node_modules/es-abstract/2016/Call.js +1 -1
  2187. data/node_modules/es-abstract/2016/CanonicalNumericIndexString.js +2 -5
  2188. data/node_modules/es-abstract/2016/Canonicalize.js +7 -11
  2189. data/node_modules/es-abstract/2016/CharacterRange.js +1 -1
  2190. data/node_modules/es-abstract/2016/CompletePropertyDescriptor.js +14 -10
  2191. data/node_modules/es-abstract/2016/CompletionRecord.js +1 -3
  2192. data/node_modules/es-abstract/2016/CreateDataProperty.js +1 -3
  2193. data/node_modules/es-abstract/2016/CreateDataPropertyOrThrow.js +1 -3
  2194. data/node_modules/es-abstract/2016/CreateHTML.js +2 -5
  2195. data/node_modules/es-abstract/2016/CreateIterResultObject.js +2 -6
  2196. data/node_modules/es-abstract/2016/CreateListFromArrayLike.js +1 -3
  2197. data/node_modules/es-abstract/2016/CreateMethodProperty.js +1 -3
  2198. data/node_modules/es-abstract/2016/DateFromTime.js +1 -3
  2199. data/node_modules/es-abstract/2016/DefinePropertyOrThrow.js +4 -15
  2200. data/node_modules/es-abstract/2016/DeletePropertyOrThrow.js +1 -3
  2201. data/node_modules/es-abstract/2016/DetachArrayBuffer.js +16 -12
  2202. data/node_modules/es-abstract/2016/EnumerableOwnNames.js +1 -3
  2203. data/node_modules/es-abstract/2016/FromPropertyDescriptor.js +5 -5
  2204. data/node_modules/es-abstract/2016/Get.js +1 -3
  2205. data/node_modules/es-abstract/2016/GetIterator.js +1 -3
  2206. data/node_modules/es-abstract/2016/GetMethod.js +1 -3
  2207. data/node_modules/es-abstract/2016/GetOwnPropertyKeys.js +1 -1
  2208. data/node_modules/es-abstract/2016/GetPrototypeFromConstructor.js +2 -2
  2209. data/node_modules/es-abstract/2016/GetSubstitution.js +8 -9
  2210. data/node_modules/es-abstract/2016/GetV.js +1 -3
  2211. data/node_modules/es-abstract/2016/GetValueFromBuffer.js +3 -14
  2212. data/node_modules/es-abstract/2016/HasOwnProperty.js +3 -5
  2213. data/node_modules/es-abstract/2016/HasProperty.js +1 -3
  2214. data/node_modules/es-abstract/2016/InLeapYear.js +1 -3
  2215. data/node_modules/es-abstract/2016/InstanceofOperator.js +1 -1
  2216. data/node_modules/es-abstract/2016/IntegerIndexedElementGet.js +58 -0
  2217. data/node_modules/es-abstract/2016/IntegerIndexedElementSet.js +58 -0
  2218. data/node_modules/es-abstract/2016/InternalizeJSONProperty.js +68 -0
  2219. data/node_modules/es-abstract/2016/Invoke.js +1 -3
  2220. data/node_modules/es-abstract/2016/IsAccessorDescriptor.js +7 -5
  2221. data/node_modules/es-abstract/2016/IsDataDescriptor.js +7 -5
  2222. data/node_modules/es-abstract/2016/IsDetachedBuffer.js +1 -3
  2223. data/node_modules/es-abstract/2016/IsGenericDescriptor.js +6 -3
  2224. data/node_modules/es-abstract/2016/IsPropertyDescriptor.js +2 -10
  2225. data/node_modules/es-abstract/2016/IsWordChar.js +1 -3
  2226. data/node_modules/es-abstract/2016/IteratorClose.js +1 -3
  2227. data/node_modules/es-abstract/2016/IteratorComplete.js +1 -3
  2228. data/node_modules/es-abstract/2016/IteratorNext.js +1 -3
  2229. data/node_modules/es-abstract/2016/IteratorValue.js +1 -3
  2230. data/node_modules/es-abstract/2016/NewPromiseCapability.js +1 -3
  2231. data/node_modules/es-abstract/2016/ObjectCreate.js +2 -2
  2232. data/node_modules/es-abstract/2016/OrdinaryCreateFromConstructor.js +1 -1
  2233. data/node_modules/es-abstract/2016/OrdinaryDefineOwnProperty.js +4 -11
  2234. data/node_modules/es-abstract/2016/OrdinaryGetOwnProperty.js +3 -5
  2235. data/node_modules/es-abstract/2016/OrdinaryGetPrototypeOf.js +1 -3
  2236. data/node_modules/es-abstract/2016/OrdinaryHasInstance.js +1 -3
  2237. data/node_modules/es-abstract/2016/OrdinaryHasProperty.js +1 -3
  2238. data/node_modules/es-abstract/2016/OrdinarySetPrototypeOf.js +2 -5
  2239. data/node_modules/es-abstract/2016/QuoteJSONString.js +2 -6
  2240. data/node_modules/es-abstract/2016/RegExpExec.js +3 -5
  2241. data/node_modules/es-abstract/2016/RequireObjectCoercible.js +1 -1
  2242. data/node_modules/es-abstract/2016/SameValueNonNumber.js +1 -3
  2243. data/node_modules/es-abstract/2016/Set.js +2 -4
  2244. data/node_modules/es-abstract/2016/SetFunctionName.js +5 -9
  2245. data/node_modules/es-abstract/2016/SetIntegrityLevel.js +2 -2
  2246. data/node_modules/es-abstract/2016/SetValueInBuffer.js +8 -18
  2247. data/node_modules/es-abstract/2016/SpeciesConstructor.js +1 -1
  2248. data/node_modules/es-abstract/2016/SplitMatch.js +3 -6
  2249. data/node_modules/es-abstract/2016/StringCreate.js +4 -5
  2250. data/node_modules/es-abstract/2016/SymbolDescriptiveString.js +2 -6
  2251. data/node_modules/es-abstract/2016/TestIntegrityLevel.js +1 -3
  2252. data/node_modules/es-abstract/2016/ToDateString.js +2 -4
  2253. data/node_modules/es-abstract/2016/ToNumber.js +1 -1
  2254. data/node_modules/es-abstract/2016/ToObject.js +1 -10
  2255. data/node_modules/es-abstract/2016/ToPropertyDescriptor.js +9 -11
  2256. data/node_modules/es-abstract/2016/ToString.js +1 -1
  2257. data/node_modules/es-abstract/2016/TypedArrayCreate.js +3 -6
  2258. data/node_modules/es-abstract/2016/TypedArraySpeciesCreate.js +2 -4
  2259. data/node_modules/es-abstract/2016/UTF16Decode.js +1 -1
  2260. data/node_modules/es-abstract/2016/UTF16Encoding.js +1 -1
  2261. data/node_modules/es-abstract/2016/ValidateAndApplyPropertyDescriptor.js +6 -16
  2262. data/node_modules/es-abstract/2016/ValidateTypedArray.js +10 -12
  2263. data/node_modules/es-abstract/2016/tables/typed-array-objects.js +31 -0
  2264. data/node_modules/es-abstract/2016/thisBooleanValue.js +1 -3
  2265. data/node_modules/es-abstract/2016/thisNumberValue.js +1 -3
  2266. data/node_modules/es-abstract/2016/thisStringValue.js +1 -3
  2267. data/node_modules/es-abstract/2017/AbstractRelationalComparison.js +3 -4
  2268. data/node_modules/es-abstract/2017/AdvanceStringIndex.js +3 -7
  2269. data/node_modules/es-abstract/2017/ArrayCreate.js +3 -3
  2270. data/node_modules/es-abstract/2017/ArraySetLength.js +4 -12
  2271. data/node_modules/es-abstract/2017/ArraySpeciesCreate.js +1 -1
  2272. data/node_modules/es-abstract/2017/Call.js +1 -1
  2273. data/node_modules/es-abstract/2017/CanonicalNumericIndexString.js +2 -5
  2274. data/node_modules/es-abstract/2017/Canonicalize.js +7 -11
  2275. data/node_modules/es-abstract/2017/CharacterRange.js +1 -1
  2276. data/node_modules/es-abstract/2017/CompletePropertyDescriptor.js +14 -10
  2277. data/node_modules/es-abstract/2017/CompletionRecord.js +1 -3
  2278. data/node_modules/es-abstract/2017/CreateDataProperty.js +1 -3
  2279. data/node_modules/es-abstract/2017/CreateDataPropertyOrThrow.js +1 -3
  2280. data/node_modules/es-abstract/2017/CreateHTML.js +2 -5
  2281. data/node_modules/es-abstract/2017/CreateIterResultObject.js +2 -6
  2282. data/node_modules/es-abstract/2017/CreateListFromArrayLike.js +1 -3
  2283. data/node_modules/es-abstract/2017/CreateMethodProperty.js +1 -3
  2284. data/node_modules/es-abstract/2017/DateFromTime.js +1 -3
  2285. data/node_modules/es-abstract/2017/DefinePropertyOrThrow.js +4 -15
  2286. data/node_modules/es-abstract/2017/DeletePropertyOrThrow.js +1 -3
  2287. data/node_modules/es-abstract/2017/DetachArrayBuffer.js +15 -11
  2288. data/node_modules/es-abstract/2017/EnumerableOwnProperties.js +1 -1
  2289. data/node_modules/es-abstract/2017/FromPropertyDescriptor.js +5 -5
  2290. data/node_modules/es-abstract/2017/Get.js +1 -3
  2291. data/node_modules/es-abstract/2017/GetIterator.js +1 -3
  2292. data/node_modules/es-abstract/2017/GetMethod.js +1 -3
  2293. data/node_modules/es-abstract/2017/GetOwnPropertyKeys.js +1 -1
  2294. data/node_modules/es-abstract/2017/GetPrototypeFromConstructor.js +2 -2
  2295. data/node_modules/es-abstract/2017/GetSubstitution.js +8 -9
  2296. data/node_modules/es-abstract/2017/GetV.js +1 -3
  2297. data/node_modules/es-abstract/2017/GetValueFromBuffer.js +4 -15
  2298. data/node_modules/es-abstract/2017/HasOwnProperty.js +3 -5
  2299. data/node_modules/es-abstract/2017/HasProperty.js +1 -3
  2300. data/node_modules/es-abstract/2017/InLeapYear.js +1 -3
  2301. data/node_modules/es-abstract/2017/InstanceofOperator.js +1 -1
  2302. data/node_modules/es-abstract/2017/IntegerIndexedElementGet.js +58 -0
  2303. data/node_modules/es-abstract/2017/IntegerIndexedElementSet.js +58 -0
  2304. data/node_modules/es-abstract/2017/InternalizeJSONProperty.js +68 -0
  2305. data/node_modules/es-abstract/2017/Invoke.js +1 -3
  2306. data/node_modules/es-abstract/2017/IsAccessorDescriptor.js +7 -5
  2307. data/node_modules/es-abstract/2017/IsDataDescriptor.js +7 -5
  2308. data/node_modules/es-abstract/2017/IsDetachedBuffer.js +9 -8
  2309. data/node_modules/es-abstract/2017/IsGenericDescriptor.js +6 -3
  2310. data/node_modules/es-abstract/2017/IsPropertyDescriptor.js +2 -10
  2311. data/node_modules/es-abstract/2017/IsSharedArrayBuffer.js +1 -3
  2312. data/node_modules/es-abstract/2017/IsWordChar.js +2 -5
  2313. data/node_modules/es-abstract/2017/IteratorClose.js +1 -3
  2314. data/node_modules/es-abstract/2017/IteratorComplete.js +1 -3
  2315. data/node_modules/es-abstract/2017/IteratorNext.js +1 -3
  2316. data/node_modules/es-abstract/2017/IteratorValue.js +1 -3
  2317. data/node_modules/es-abstract/2017/NewPromiseCapability.js +1 -3
  2318. data/node_modules/es-abstract/2017/NumberToRawBytes.js +3 -6
  2319. data/node_modules/es-abstract/2017/ObjectCreate.js +2 -2
  2320. data/node_modules/es-abstract/2017/OrdinaryCreateFromConstructor.js +1 -1
  2321. data/node_modules/es-abstract/2017/OrdinaryDefineOwnProperty.js +4 -11
  2322. data/node_modules/es-abstract/2017/OrdinaryGetOwnProperty.js +3 -5
  2323. data/node_modules/es-abstract/2017/OrdinaryGetPrototypeOf.js +1 -3
  2324. data/node_modules/es-abstract/2017/OrdinaryHasInstance.js +1 -3
  2325. data/node_modules/es-abstract/2017/OrdinaryHasProperty.js +1 -3
  2326. data/node_modules/es-abstract/2017/OrdinarySetPrototypeOf.js +2 -5
  2327. data/node_modules/es-abstract/2017/OrdinaryToPrimitive.js +2 -4
  2328. data/node_modules/es-abstract/2017/QuoteJSONString.js +2 -6
  2329. data/node_modules/es-abstract/2017/RawBytesToNumber.js +3 -5
  2330. data/node_modules/es-abstract/2017/RegExpExec.js +3 -5
  2331. data/node_modules/es-abstract/2017/RequireObjectCoercible.js +1 -1
  2332. data/node_modules/es-abstract/2017/SameValueNonNumber.js +1 -3
  2333. data/node_modules/es-abstract/2017/Set.js +2 -4
  2334. data/node_modules/es-abstract/2017/SetFunctionName.js +5 -9
  2335. data/node_modules/es-abstract/2017/SetIntegrityLevel.js +2 -2
  2336. data/node_modules/es-abstract/2017/SetValueInBuffer.js +8 -18
  2337. data/node_modules/es-abstract/2017/SpeciesConstructor.js +1 -1
  2338. data/node_modules/es-abstract/2017/SplitMatch.js +3 -6
  2339. data/node_modules/es-abstract/2017/StringCreate.js +4 -5
  2340. data/node_modules/es-abstract/2017/StringGetOwnProperty.js +3 -5
  2341. data/node_modules/es-abstract/2017/SymbolDescriptiveString.js +2 -6
  2342. data/node_modules/es-abstract/2017/TestIntegrityLevel.js +1 -3
  2343. data/node_modules/es-abstract/2017/ToDateString.js +2 -4
  2344. data/node_modules/es-abstract/2017/ToIndex.js +1 -3
  2345. data/node_modules/es-abstract/2017/ToNumber.js +1 -1
  2346. data/node_modules/es-abstract/2017/ToObject.js +1 -10
  2347. data/node_modules/es-abstract/2017/ToPropertyDescriptor.js +9 -11
  2348. data/node_modules/es-abstract/2017/ToString.js +1 -1
  2349. data/node_modules/es-abstract/2017/TypedArrayCreate.js +3 -6
  2350. data/node_modules/es-abstract/2017/TypedArraySpeciesCreate.js +2 -4
  2351. data/node_modules/es-abstract/2017/UTF16Decode.js +1 -1
  2352. data/node_modules/es-abstract/2017/UTF16Encoding.js +1 -1
  2353. data/node_modules/es-abstract/2017/ValidateAndApplyPropertyDescriptor.js +6 -16
  2354. data/node_modules/es-abstract/2017/ValidateAtomicAccess.js +2 -4
  2355. data/node_modules/es-abstract/2017/ValidateTypedArray.js +10 -12
  2356. data/node_modules/es-abstract/2017/WordCharacters.js +3 -6
  2357. data/node_modules/es-abstract/2017/tables/typed-array-objects.js +31 -0
  2358. data/node_modules/es-abstract/2017/thisBooleanValue.js +1 -3
  2359. data/node_modules/es-abstract/2017/thisNumberValue.js +1 -3
  2360. data/node_modules/es-abstract/2017/thisStringValue.js +1 -3
  2361. data/node_modules/es-abstract/2018/AbstractRelationalComparison.js +3 -4
  2362. data/node_modules/es-abstract/2018/AdvanceStringIndex.js +3 -7
  2363. data/node_modules/es-abstract/2018/ArrayCreate.js +3 -3
  2364. data/node_modules/es-abstract/2018/ArraySetLength.js +4 -12
  2365. data/node_modules/es-abstract/2018/ArraySpeciesCreate.js +1 -1
  2366. data/node_modules/es-abstract/2018/AsyncIteratorClose.js +6 -4
  2367. data/node_modules/es-abstract/2018/Call.js +1 -1
  2368. data/node_modules/es-abstract/2018/CanonicalNumericIndexString.js +2 -5
  2369. data/node_modules/es-abstract/2018/Canonicalize.js +7 -11
  2370. data/node_modules/es-abstract/2018/CharacterRange.js +1 -1
  2371. data/node_modules/es-abstract/2018/CompletePropertyDescriptor.js +14 -10
  2372. data/node_modules/es-abstract/2018/CompletionRecord.js +1 -3
  2373. data/node_modules/es-abstract/2018/CopyDataProperties.js +1 -3
  2374. data/node_modules/es-abstract/2018/CreateAsyncFromSyncIterator.js +23 -9
  2375. data/node_modules/es-abstract/2018/CreateDataProperty.js +1 -3
  2376. data/node_modules/es-abstract/2018/CreateDataPropertyOrThrow.js +1 -3
  2377. data/node_modules/es-abstract/2018/CreateHTML.js +2 -5
  2378. data/node_modules/es-abstract/2018/CreateIterResultObject.js +2 -6
  2379. data/node_modules/es-abstract/2018/CreateListFromArrayLike.js +1 -3
  2380. data/node_modules/es-abstract/2018/CreateMethodProperty.js +1 -3
  2381. data/node_modules/es-abstract/2018/DateFromTime.js +1 -3
  2382. data/node_modules/es-abstract/2018/DateString.js +4 -7
  2383. data/node_modules/es-abstract/2018/DefinePropertyOrThrow.js +4 -15
  2384. data/node_modules/es-abstract/2018/DeletePropertyOrThrow.js +1 -3
  2385. data/node_modules/es-abstract/2018/DetachArrayBuffer.js +14 -11
  2386. data/node_modules/es-abstract/2018/EnumerableOwnPropertyNames.js +1 -1
  2387. data/node_modules/es-abstract/2018/FromPropertyDescriptor.js +5 -5
  2388. data/node_modules/es-abstract/2018/Get.js +1 -3
  2389. data/node_modules/es-abstract/2018/GetIterator.js +1 -3
  2390. data/node_modules/es-abstract/2018/GetMethod.js +1 -3
  2391. data/node_modules/es-abstract/2018/GetOwnPropertyKeys.js +1 -1
  2392. data/node_modules/es-abstract/2018/GetPrototypeFromConstructor.js +2 -2
  2393. data/node_modules/es-abstract/2018/GetSubstitution.js +14 -18
  2394. data/node_modules/es-abstract/2018/GetV.js +1 -3
  2395. data/node_modules/es-abstract/2018/GetValueFromBuffer.js +4 -15
  2396. data/node_modules/es-abstract/2018/HasOwnProperty.js +3 -5
  2397. data/node_modules/es-abstract/2018/HasProperty.js +1 -3
  2398. data/node_modules/es-abstract/2018/InLeapYear.js +1 -3
  2399. data/node_modules/es-abstract/2018/InstanceofOperator.js +1 -1
  2400. data/node_modules/es-abstract/2018/IntegerIndexedElementGet.js +58 -0
  2401. data/node_modules/es-abstract/2018/IntegerIndexedElementSet.js +58 -0
  2402. data/node_modules/es-abstract/2018/InternalizeJSONProperty.js +68 -0
  2403. data/node_modules/es-abstract/2018/Invoke.js +1 -3
  2404. data/node_modules/es-abstract/2018/IsAccessorDescriptor.js +7 -5
  2405. data/node_modules/es-abstract/2018/IsDataDescriptor.js +7 -5
  2406. data/node_modules/es-abstract/2018/IsDetachedBuffer.js +9 -8
  2407. data/node_modules/es-abstract/2018/IsGenericDescriptor.js +6 -3
  2408. data/node_modules/es-abstract/2018/IsSharedArrayBuffer.js +1 -3
  2409. data/node_modules/es-abstract/2018/IsStringPrefix.js +3 -7
  2410. data/node_modules/es-abstract/2018/IsWordChar.js +2 -5
  2411. data/node_modules/es-abstract/2018/IteratorClose.js +1 -3
  2412. data/node_modules/es-abstract/2018/IteratorComplete.js +1 -3
  2413. data/node_modules/es-abstract/2018/IteratorNext.js +1 -3
  2414. data/node_modules/es-abstract/2018/IteratorValue.js +1 -3
  2415. data/node_modules/es-abstract/2018/NewPromiseCapability.js +1 -3
  2416. data/node_modules/es-abstract/2018/NumberToRawBytes.js +3 -6
  2417. data/node_modules/es-abstract/2018/NumberToString.js +2 -4
  2418. data/node_modules/es-abstract/2018/ObjectCreate.js +2 -2
  2419. data/node_modules/es-abstract/2018/OrdinaryCreateFromConstructor.js +1 -1
  2420. data/node_modules/es-abstract/2018/OrdinaryDefineOwnProperty.js +4 -11
  2421. data/node_modules/es-abstract/2018/OrdinaryGetOwnProperty.js +3 -5
  2422. data/node_modules/es-abstract/2018/OrdinaryGetPrototypeOf.js +1 -3
  2423. data/node_modules/es-abstract/2018/OrdinaryHasInstance.js +1 -3
  2424. data/node_modules/es-abstract/2018/OrdinaryHasProperty.js +1 -3
  2425. data/node_modules/es-abstract/2018/OrdinarySetPrototypeOf.js +2 -5
  2426. data/node_modules/es-abstract/2018/OrdinaryToPrimitive.js +2 -4
  2427. data/node_modules/es-abstract/2018/PromiseResolve.js +2 -1
  2428. data/node_modules/es-abstract/2018/QuoteJSONString.js +4 -7
  2429. data/node_modules/es-abstract/2018/RawBytesToNumber.js +3 -5
  2430. data/node_modules/es-abstract/2018/RegExpExec.js +3 -5
  2431. data/node_modules/es-abstract/2018/RequireObjectCoercible.js +1 -1
  2432. data/node_modules/es-abstract/2018/SameValueNonNumber.js +1 -3
  2433. data/node_modules/es-abstract/2018/Set.js +2 -4
  2434. data/node_modules/es-abstract/2018/SetFunctionLength.js +2 -5
  2435. data/node_modules/es-abstract/2018/SetFunctionName.js +5 -9
  2436. data/node_modules/es-abstract/2018/SetIntegrityLevel.js +2 -2
  2437. data/node_modules/es-abstract/2018/SetValueInBuffer.js +8 -18
  2438. data/node_modules/es-abstract/2018/SpeciesConstructor.js +1 -1
  2439. data/node_modules/es-abstract/2018/SplitMatch.js +3 -6
  2440. data/node_modules/es-abstract/2018/StringCreate.js +4 -5
  2441. data/node_modules/es-abstract/2018/StringGetOwnProperty.js +3 -5
  2442. data/node_modules/es-abstract/2018/SymbolDescriptiveString.js +2 -6
  2443. data/node_modules/es-abstract/2018/TestIntegrityLevel.js +1 -3
  2444. data/node_modules/es-abstract/2018/TimeString.js +2 -5
  2445. data/node_modules/es-abstract/2018/TimeZoneString.js +33 -0
  2446. data/node_modules/es-abstract/2018/ToDateString.js +2 -4
  2447. data/node_modules/es-abstract/2018/ToIndex.js +1 -3
  2448. data/node_modules/es-abstract/2018/ToNumber.js +1 -1
  2449. data/node_modules/es-abstract/2018/ToObject.js +1 -10
  2450. data/node_modules/es-abstract/2018/ToPropertyDescriptor.js +9 -11
  2451. data/node_modules/es-abstract/2018/ToString.js +1 -1
  2452. data/node_modules/es-abstract/2018/TypedArrayCreate.js +3 -6
  2453. data/node_modules/es-abstract/2018/TypedArraySpeciesCreate.js +2 -4
  2454. data/node_modules/es-abstract/2018/UTF16Decode.js +1 -1
  2455. data/node_modules/es-abstract/2018/UTF16Encoding.js +1 -1
  2456. data/node_modules/es-abstract/2018/UnicodeEscape.js +1 -3
  2457. data/node_modules/es-abstract/2018/ValidateAndApplyPropertyDescriptor.js +6 -16
  2458. data/node_modules/es-abstract/2018/ValidateAtomicAccess.js +2 -4
  2459. data/node_modules/es-abstract/2018/ValidateTypedArray.js +10 -12
  2460. data/node_modules/es-abstract/2018/WordCharacters.js +3 -6
  2461. data/node_modules/es-abstract/2018/tables/typed-array-objects.js +31 -0
  2462. data/node_modules/es-abstract/2018/thisBooleanValue.js +1 -3
  2463. data/node_modules/es-abstract/2018/thisNumberValue.js +1 -3
  2464. data/node_modules/es-abstract/2018/thisStringValue.js +1 -3
  2465. data/node_modules/es-abstract/2018/thisSymbolValue.js +3 -4
  2466. data/node_modules/es-abstract/2019/AbstractRelationalComparison.js +3 -4
  2467. data/node_modules/es-abstract/2019/AddEntriesFromIterable.js +1 -3
  2468. data/node_modules/es-abstract/2019/AdvanceStringIndex.js +3 -7
  2469. data/node_modules/es-abstract/2019/ArrayCreate.js +3 -3
  2470. data/node_modules/es-abstract/2019/ArraySetLength.js +4 -12
  2471. data/node_modules/es-abstract/2019/ArraySpeciesCreate.js +1 -1
  2472. data/node_modules/es-abstract/2019/AsyncFromSyncIteratorContinuation.js +3 -3
  2473. data/node_modules/es-abstract/2019/AsyncIteratorClose.js +6 -4
  2474. data/node_modules/es-abstract/2019/Call.js +1 -1
  2475. data/node_modules/es-abstract/2019/CanonicalNumericIndexString.js +2 -5
  2476. data/node_modules/es-abstract/2019/Canonicalize.js +7 -11
  2477. data/node_modules/es-abstract/2019/CharacterRange.js +1 -1
  2478. data/node_modules/es-abstract/2019/CompletePropertyDescriptor.js +14 -10
  2479. data/node_modules/es-abstract/2019/CompletionRecord.js +1 -3
  2480. data/node_modules/es-abstract/2019/CopyDataProperties.js +1 -3
  2481. data/node_modules/es-abstract/2019/CreateAsyncFromSyncIterator.js +23 -7
  2482. data/node_modules/es-abstract/2019/CreateDataProperty.js +1 -3
  2483. data/node_modules/es-abstract/2019/CreateDataPropertyOrThrow.js +1 -3
  2484. data/node_modules/es-abstract/2019/CreateHTML.js +2 -5
  2485. data/node_modules/es-abstract/2019/CreateIterResultObject.js +2 -6
  2486. data/node_modules/es-abstract/2019/CreateListFromArrayLike.js +1 -3
  2487. data/node_modules/es-abstract/2019/CreateMethodProperty.js +1 -3
  2488. data/node_modules/es-abstract/2019/DateFromTime.js +1 -3
  2489. data/node_modules/es-abstract/2019/DateString.js +4 -7
  2490. data/node_modules/es-abstract/2019/DefinePropertyOrThrow.js +4 -15
  2491. data/node_modules/es-abstract/2019/DeletePropertyOrThrow.js +1 -3
  2492. data/node_modules/es-abstract/2019/DetachArrayBuffer.js +14 -11
  2493. data/node_modules/es-abstract/2019/EnumerableOwnPropertyNames.js +1 -1
  2494. data/node_modules/es-abstract/2019/FlattenIntoArray.js +1 -3
  2495. data/node_modules/es-abstract/2019/FromPropertyDescriptor.js +5 -5
  2496. data/node_modules/es-abstract/2019/Get.js +1 -3
  2497. data/node_modules/es-abstract/2019/GetIterator.js +1 -3
  2498. data/node_modules/es-abstract/2019/GetMethod.js +1 -3
  2499. data/node_modules/es-abstract/2019/GetOwnPropertyKeys.js +1 -1
  2500. data/node_modules/es-abstract/2019/GetPrototypeFromConstructor.js +2 -2
  2501. data/node_modules/es-abstract/2019/GetSubstitution.js +14 -18
  2502. data/node_modules/es-abstract/2019/GetV.js +1 -3
  2503. data/node_modules/es-abstract/2019/GetValueFromBuffer.js +3 -14
  2504. data/node_modules/es-abstract/2019/HasOwnProperty.js +3 -5
  2505. data/node_modules/es-abstract/2019/HasProperty.js +1 -3
  2506. data/node_modules/es-abstract/2019/InLeapYear.js +1 -3
  2507. data/node_modules/es-abstract/2019/InstanceofOperator.js +1 -1
  2508. data/node_modules/es-abstract/2019/IntegerIndexedElementGet.js +58 -0
  2509. data/node_modules/es-abstract/2019/IntegerIndexedElementSet.js +58 -0
  2510. data/node_modules/es-abstract/2019/InternalizeJSONProperty.js +68 -0
  2511. data/node_modules/es-abstract/2019/Invoke.js +1 -3
  2512. data/node_modules/es-abstract/2019/IsAccessorDescriptor.js +7 -5
  2513. data/node_modules/es-abstract/2019/IsDataDescriptor.js +7 -5
  2514. data/node_modules/es-abstract/2019/IsDetachedBuffer.js +9 -8
  2515. data/node_modules/es-abstract/2019/IsGenericDescriptor.js +6 -3
  2516. data/node_modules/es-abstract/2019/IsSharedArrayBuffer.js +1 -3
  2517. data/node_modules/es-abstract/2019/IsStringPrefix.js +3 -7
  2518. data/node_modules/es-abstract/2019/IsWordChar.js +2 -5
  2519. data/node_modules/es-abstract/2019/IteratorClose.js +1 -3
  2520. data/node_modules/es-abstract/2019/IteratorComplete.js +1 -3
  2521. data/node_modules/es-abstract/2019/IteratorNext.js +1 -3
  2522. data/node_modules/es-abstract/2019/IteratorValue.js +1 -3
  2523. data/node_modules/es-abstract/2019/NewPromiseCapability.js +1 -3
  2524. data/node_modules/es-abstract/2019/NumberToRawBytes.js +3 -6
  2525. data/node_modules/es-abstract/2019/NumberToString.js +2 -4
  2526. data/node_modules/es-abstract/2019/ObjectCreate.js +2 -2
  2527. data/node_modules/es-abstract/2019/OrdinaryCreateFromConstructor.js +1 -1
  2528. data/node_modules/es-abstract/2019/OrdinaryDefineOwnProperty.js +4 -11
  2529. data/node_modules/es-abstract/2019/OrdinaryGetOwnProperty.js +3 -5
  2530. data/node_modules/es-abstract/2019/OrdinaryGetPrototypeOf.js +1 -3
  2531. data/node_modules/es-abstract/2019/OrdinaryHasInstance.js +1 -3
  2532. data/node_modules/es-abstract/2019/OrdinaryHasProperty.js +1 -3
  2533. data/node_modules/es-abstract/2019/OrdinarySetPrototypeOf.js +2 -5
  2534. data/node_modules/es-abstract/2019/OrdinaryToPrimitive.js +2 -4
  2535. data/node_modules/es-abstract/2019/PromiseResolve.js +2 -1
  2536. data/node_modules/es-abstract/2019/QuoteJSONString.js +4 -7
  2537. data/node_modules/es-abstract/2019/RawBytesToNumber.js +3 -5
  2538. data/node_modules/es-abstract/2019/RegExpExec.js +3 -5
  2539. data/node_modules/es-abstract/2019/RequireObjectCoercible.js +1 -1
  2540. data/node_modules/es-abstract/2019/SameValueNonNumber.js +1 -3
  2541. data/node_modules/es-abstract/2019/Set.js +2 -4
  2542. data/node_modules/es-abstract/2019/SetFunctionLength.js +2 -5
  2543. data/node_modules/es-abstract/2019/SetFunctionName.js +5 -9
  2544. data/node_modules/es-abstract/2019/SetIntegrityLevel.js +2 -2
  2545. data/node_modules/es-abstract/2019/SetValueInBuffer.js +8 -18
  2546. data/node_modules/es-abstract/2019/SpeciesConstructor.js +1 -1
  2547. data/node_modules/es-abstract/2019/SplitMatch.js +3 -6
  2548. data/node_modules/es-abstract/2019/StringCreate.js +4 -5
  2549. data/node_modules/es-abstract/2019/StringGetOwnProperty.js +3 -5
  2550. data/node_modules/es-abstract/2019/SymbolDescriptiveString.js +2 -6
  2551. data/node_modules/es-abstract/2019/TestIntegrityLevel.js +1 -3
  2552. data/node_modules/es-abstract/2019/TimeString.js +2 -5
  2553. data/node_modules/es-abstract/2019/TimeZoneString.js +33 -0
  2554. data/node_modules/es-abstract/2019/ToDateString.js +2 -4
  2555. data/node_modules/es-abstract/2019/ToIndex.js +1 -3
  2556. data/node_modules/es-abstract/2019/ToNumber.js +1 -1
  2557. data/node_modules/es-abstract/2019/ToObject.js +1 -10
  2558. data/node_modules/es-abstract/2019/ToPropertyDescriptor.js +9 -11
  2559. data/node_modules/es-abstract/2019/ToString.js +1 -1
  2560. data/node_modules/es-abstract/2019/TrimString.js +1 -3
  2561. data/node_modules/es-abstract/2019/TypedArrayCreate.js +3 -6
  2562. data/node_modules/es-abstract/2019/TypedArraySpeciesCreate.js +2 -4
  2563. data/node_modules/es-abstract/2019/UTF16Decode.js +1 -1
  2564. data/node_modules/es-abstract/2019/UTF16Encoding.js +1 -1
  2565. data/node_modules/es-abstract/2019/UnicodeEscape.js +1 -3
  2566. data/node_modules/es-abstract/2019/ValidateAndApplyPropertyDescriptor.js +6 -16
  2567. data/node_modules/es-abstract/2019/ValidateAtomicAccess.js +2 -4
  2568. data/node_modules/es-abstract/2019/ValidateTypedArray.js +10 -12
  2569. data/node_modules/es-abstract/2019/WordCharacters.js +3 -6
  2570. data/node_modules/es-abstract/2019/tables/typed-array-objects.js +31 -0
  2571. data/node_modules/es-abstract/2019/thisBooleanValue.js +1 -3
  2572. data/node_modules/es-abstract/2019/thisNumberValue.js +1 -3
  2573. data/node_modules/es-abstract/2019/thisStringValue.js +1 -3
  2574. data/node_modules/es-abstract/2019/thisSymbolValue.js +3 -4
  2575. data/node_modules/es-abstract/2020/AbstractRelationalComparison.js +3 -3
  2576. data/node_modules/es-abstract/2020/AddEntriesFromIterable.js +1 -3
  2577. data/node_modules/es-abstract/2020/AdvanceStringIndex.js +3 -6
  2578. data/node_modules/es-abstract/2020/ArrayCreate.js +3 -3
  2579. data/node_modules/es-abstract/2020/ArraySetLength.js +4 -12
  2580. data/node_modules/es-abstract/2020/ArraySpeciesCreate.js +1 -1
  2581. data/node_modules/es-abstract/2020/AsyncFromSyncIteratorContinuation.js +3 -3
  2582. data/node_modules/es-abstract/2020/AsyncIteratorClose.js +6 -4
  2583. data/node_modules/es-abstract/2020/BigInt/add.js +2 -6
  2584. data/node_modules/es-abstract/2020/BigInt/bitwiseAND.js +2 -5
  2585. data/node_modules/es-abstract/2020/BigInt/bitwiseNOT.js +2 -4
  2586. data/node_modules/es-abstract/2020/BigInt/bitwiseOR.js +2 -5
  2587. data/node_modules/es-abstract/2020/BigInt/bitwiseXOR.js +2 -5
  2588. data/node_modules/es-abstract/2020/BigInt/divide.js +3 -5
  2589. data/node_modules/es-abstract/2020/BigInt/equal.js +2 -6
  2590. data/node_modules/es-abstract/2020/BigInt/exponentiate.js +3 -5
  2591. data/node_modules/es-abstract/2020/BigInt/leftShift.js +2 -6
  2592. data/node_modules/es-abstract/2020/BigInt/lessThan.js +2 -6
  2593. data/node_modules/es-abstract/2020/BigInt/multiply.js +2 -6
  2594. data/node_modules/es-abstract/2020/BigInt/remainder.js +3 -5
  2595. data/node_modules/es-abstract/2020/BigInt/sameValue.js +2 -5
  2596. data/node_modules/es-abstract/2020/BigInt/sameValueZero.js +2 -5
  2597. data/node_modules/es-abstract/2020/BigInt/signedRightShift.js +2 -5
  2598. data/node_modules/es-abstract/2020/BigInt/subtract.js +2 -6
  2599. data/node_modules/es-abstract/2020/BigInt/toString.js +2 -4
  2600. data/node_modules/es-abstract/2020/BigInt/unaryMinus.js +2 -4
  2601. data/node_modules/es-abstract/2020/BigInt/unsignedRightShift.js +2 -6
  2602. data/node_modules/es-abstract/2020/BigIntBitwiseOp.js +2 -5
  2603. data/node_modules/es-abstract/2020/BinaryAnd.js +1 -3
  2604. data/node_modules/es-abstract/2020/BinaryOr.js +1 -3
  2605. data/node_modules/es-abstract/2020/BinaryXor.js +1 -3
  2606. data/node_modules/es-abstract/2020/Call.js +1 -1
  2607. data/node_modules/es-abstract/2020/CanonicalNumericIndexString.js +2 -5
  2608. data/node_modules/es-abstract/2020/Canonicalize.js +7 -11
  2609. data/node_modules/es-abstract/2020/CharacterRange.js +1 -1
  2610. data/node_modules/es-abstract/2020/CodePointAt.js +2 -5
  2611. data/node_modules/es-abstract/2020/CompletePropertyDescriptor.js +14 -10
  2612. data/node_modules/es-abstract/2020/CompletionRecord.js +1 -3
  2613. data/node_modules/es-abstract/2020/CopyDataProperties.js +1 -3
  2614. data/node_modules/es-abstract/2020/CreateAsyncFromSyncIterator.js +23 -7
  2615. data/node_modules/es-abstract/2020/CreateDataProperty.js +1 -3
  2616. data/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js +1 -3
  2617. data/node_modules/es-abstract/2020/CreateHTML.js +2 -5
  2618. data/node_modules/es-abstract/2020/CreateIterResultObject.js +2 -6
  2619. data/node_modules/es-abstract/2020/CreateListFromArrayLike.js +1 -3
  2620. data/node_modules/es-abstract/2020/CreateMethodProperty.js +1 -3
  2621. data/node_modules/es-abstract/2020/CreateRegExpStringIterator.js +4 -4
  2622. data/node_modules/es-abstract/2020/DateFromTime.js +1 -3
  2623. data/node_modules/es-abstract/2020/DateString.js +4 -7
  2624. data/node_modules/es-abstract/2020/DefinePropertyOrThrow.js +4 -15
  2625. data/node_modules/es-abstract/2020/DeletePropertyOrThrow.js +1 -3
  2626. data/node_modules/es-abstract/2020/DetachArrayBuffer.js +14 -11
  2627. data/node_modules/es-abstract/2020/EnumerableOwnPropertyNames.js +1 -1
  2628. data/node_modules/es-abstract/2020/FlattenIntoArray.js +1 -3
  2629. data/node_modules/es-abstract/2020/FromPropertyDescriptor.js +5 -5
  2630. data/node_modules/es-abstract/2020/Get.js +1 -3
  2631. data/node_modules/es-abstract/2020/GetIterator.js +2 -2
  2632. data/node_modules/es-abstract/2020/GetMethod.js +1 -3
  2633. data/node_modules/es-abstract/2020/GetOwnPropertyKeys.js +1 -1
  2634. data/node_modules/es-abstract/2020/GetPrototypeFromConstructor.js +2 -2
  2635. data/node_modules/es-abstract/2020/GetSubstitution.js +14 -18
  2636. data/node_modules/es-abstract/2020/GetV.js +1 -3
  2637. data/node_modules/es-abstract/2020/GetValueFromBuffer.js +5 -18
  2638. data/node_modules/es-abstract/2020/HasOwnProperty.js +3 -5
  2639. data/node_modules/es-abstract/2020/HasProperty.js +1 -3
  2640. data/node_modules/es-abstract/2020/InLeapYear.js +1 -3
  2641. data/node_modules/es-abstract/2020/InstanceofOperator.js +1 -1
  2642. data/node_modules/es-abstract/2020/IntegerIndexedElementGet.js +53 -0
  2643. data/node_modules/es-abstract/2020/IntegerIndexedElementSet.js +60 -0
  2644. data/node_modules/es-abstract/2020/InternalizeJSONProperty.js +66 -0
  2645. data/node_modules/es-abstract/2020/Invoke.js +1 -3
  2646. data/node_modules/es-abstract/2020/IsAccessorDescriptor.js +7 -5
  2647. data/node_modules/es-abstract/2020/IsDataDescriptor.js +7 -5
  2648. data/node_modules/es-abstract/2020/IsDetachedBuffer.js +9 -8
  2649. data/node_modules/es-abstract/2020/IsGenericDescriptor.js +6 -3
  2650. data/node_modules/es-abstract/2020/IsSharedArrayBuffer.js +1 -3
  2651. data/node_modules/es-abstract/2020/IsStringPrefix.js +3 -7
  2652. data/node_modules/es-abstract/2020/IsValidIntegerIndex.js +6 -4
  2653. data/node_modules/es-abstract/2020/IsWordChar.js +2 -5
  2654. data/node_modules/es-abstract/2020/IteratorClose.js +1 -3
  2655. data/node_modules/es-abstract/2020/IteratorComplete.js +1 -3
  2656. data/node_modules/es-abstract/2020/IteratorNext.js +1 -3
  2657. data/node_modules/es-abstract/2020/IteratorValue.js +1 -3
  2658. data/node_modules/es-abstract/2020/LengthOfArrayLike.js +1 -3
  2659. data/node_modules/es-abstract/2020/NewPromiseCapability.js +1 -3
  2660. data/node_modules/es-abstract/2020/Number/add.js +2 -6
  2661. data/node_modules/es-abstract/2020/Number/bitwiseAND.js +2 -5
  2662. data/node_modules/es-abstract/2020/Number/bitwiseNOT.js +2 -5
  2663. data/node_modules/es-abstract/2020/Number/bitwiseOR.js +2 -5
  2664. data/node_modules/es-abstract/2020/Number/bitwiseXOR.js +2 -5
  2665. data/node_modules/es-abstract/2020/Number/divide.js +2 -5
  2666. data/node_modules/es-abstract/2020/Number/equal.js +2 -5
  2667. data/node_modules/es-abstract/2020/Number/exponentiate.js +2 -3
  2668. data/node_modules/es-abstract/2020/Number/leftShift.js +2 -5
  2669. data/node_modules/es-abstract/2020/Number/lessThan.js +2 -6
  2670. data/node_modules/es-abstract/2020/Number/multiply.js +2 -6
  2671. data/node_modules/es-abstract/2020/Number/remainder.js +2 -6
  2672. data/node_modules/es-abstract/2020/Number/sameValue.js +2 -4
  2673. data/node_modules/es-abstract/2020/Number/sameValueZero.js +2 -6
  2674. data/node_modules/es-abstract/2020/Number/signedRightShift.js +2 -5
  2675. data/node_modules/es-abstract/2020/Number/subtract.js +2 -6
  2676. data/node_modules/es-abstract/2020/Number/toString.js +2 -4
  2677. data/node_modules/es-abstract/2020/Number/unaryMinus.js +2 -6
  2678. data/node_modules/es-abstract/2020/Number/unsignedRightShift.js +2 -5
  2679. data/node_modules/es-abstract/2020/NumberBitwiseOp.js +2 -5
  2680. data/node_modules/es-abstract/2020/NumberToBigInt.js +4 -6
  2681. data/node_modules/es-abstract/2020/NumericToRawBytes.js +3 -6
  2682. data/node_modules/es-abstract/2020/OrdinaryCreateFromConstructor.js +1 -1
  2683. data/node_modules/es-abstract/2020/OrdinaryDefineOwnProperty.js +4 -11
  2684. data/node_modules/es-abstract/2020/OrdinaryGetOwnProperty.js +3 -5
  2685. data/node_modules/es-abstract/2020/OrdinaryGetPrototypeOf.js +1 -3
  2686. data/node_modules/es-abstract/2020/OrdinaryHasInstance.js +1 -3
  2687. data/node_modules/es-abstract/2020/OrdinaryHasProperty.js +1 -3
  2688. data/node_modules/es-abstract/2020/OrdinaryObjectCreate.js +2 -2
  2689. data/node_modules/es-abstract/2020/OrdinarySetPrototypeOf.js +2 -5
  2690. data/node_modules/es-abstract/2020/OrdinaryToPrimitive.js +2 -4
  2691. data/node_modules/es-abstract/2020/PromiseResolve.js +2 -1
  2692. data/node_modules/es-abstract/2020/QuoteJSONString.js +5 -8
  2693. data/node_modules/es-abstract/2020/RawBytesToNumeric.js +4 -5
  2694. data/node_modules/es-abstract/2020/RegExpExec.js +3 -5
  2695. data/node_modules/es-abstract/2020/RequireObjectCoercible.js +1 -1
  2696. data/node_modules/es-abstract/2020/SameValueNonNumeric.js +3 -6
  2697. data/node_modules/es-abstract/2020/Set.js +2 -4
  2698. data/node_modules/es-abstract/2020/SetFunctionLength.js +2 -5
  2699. data/node_modules/es-abstract/2020/SetFunctionName.js +5 -9
  2700. data/node_modules/es-abstract/2020/SetIntegrityLevel.js +2 -2
  2701. data/node_modules/es-abstract/2020/SetValueInBuffer.js +9 -21
  2702. data/node_modules/es-abstract/2020/SpeciesConstructor.js +1 -1
  2703. data/node_modules/es-abstract/2020/SplitMatch.js +3 -6
  2704. data/node_modules/es-abstract/2020/StringCreate.js +4 -5
  2705. data/node_modules/es-abstract/2020/StringGetOwnProperty.js +3 -5
  2706. data/node_modules/es-abstract/2020/StringPad.js +1 -3
  2707. data/node_modules/es-abstract/2020/StringToBigInt.js +2 -2
  2708. data/node_modules/es-abstract/2020/SymbolDescriptiveString.js +2 -6
  2709. data/node_modules/es-abstract/2020/TestIntegrityLevel.js +1 -3
  2710. data/node_modules/es-abstract/2020/TimeString.js +2 -5
  2711. data/node_modules/es-abstract/2020/TimeZoneString.js +33 -0
  2712. data/node_modules/es-abstract/2020/ToBigInt.js +2 -2
  2713. data/node_modules/es-abstract/2020/ToDateString.js +2 -4
  2714. data/node_modules/es-abstract/2020/ToIndex.js +1 -3
  2715. data/node_modules/es-abstract/2020/ToNumber.js +1 -1
  2716. data/node_modules/es-abstract/2020/ToNumeric.js +1 -2
  2717. data/node_modules/es-abstract/2020/ToObject.js +1 -10
  2718. data/node_modules/es-abstract/2020/ToPropertyDescriptor.js +9 -11
  2719. data/node_modules/es-abstract/2020/ToString.js +1 -1
  2720. data/node_modules/es-abstract/2020/TrimString.js +1 -3
  2721. data/node_modules/es-abstract/2020/TypedArrayCreate.js +3 -6
  2722. data/node_modules/es-abstract/2020/TypedArraySpeciesCreate.js +2 -4
  2723. data/node_modules/es-abstract/2020/UTF16DecodeString.js +2 -5
  2724. data/node_modules/es-abstract/2020/UTF16DecodeSurrogatePair.js +1 -1
  2725. data/node_modules/es-abstract/2020/UTF16Encoding.js +1 -1
  2726. data/node_modules/es-abstract/2020/UnicodeEscape.js +1 -3
  2727. data/node_modules/es-abstract/2020/ValidateAndApplyPropertyDescriptor.js +6 -16
  2728. data/node_modules/es-abstract/2020/ValidateAtomicAccess.js +2 -4
  2729. data/node_modules/es-abstract/2020/ValidateTypedArray.js +10 -12
  2730. data/node_modules/es-abstract/2020/WordCharacters.js +3 -6
  2731. data/node_modules/es-abstract/2020/floor.js +1 -3
  2732. data/node_modules/es-abstract/2020/tables/typed-array-objects.js +35 -0
  2733. data/node_modules/es-abstract/2020/thisBigIntValue.js +1 -2
  2734. data/node_modules/es-abstract/2020/thisBooleanValue.js +1 -3
  2735. data/node_modules/es-abstract/2020/thisNumberValue.js +1 -3
  2736. data/node_modules/es-abstract/2020/thisStringValue.js +1 -3
  2737. data/node_modules/es-abstract/2020/thisSymbolValue.js +3 -4
  2738. data/node_modules/es-abstract/2021/AbstractRelationalComparison.js +3 -3
  2739. data/node_modules/es-abstract/2021/AddEntriesFromIterable.js +1 -3
  2740. data/node_modules/es-abstract/2021/AddToKeptObjects.js +1 -2
  2741. data/node_modules/es-abstract/2021/AdvanceStringIndex.js +3 -6
  2742. data/node_modules/es-abstract/2021/ApplyStringOrNumericBinaryOperator.js +3 -5
  2743. data/node_modules/es-abstract/2021/ArrayCreate.js +3 -3
  2744. data/node_modules/es-abstract/2021/ArraySetLength.js +4 -12
  2745. data/node_modules/es-abstract/2021/ArraySpeciesCreate.js +1 -1
  2746. data/node_modules/es-abstract/2021/AsyncFromSyncIteratorContinuation.js +3 -3
  2747. data/node_modules/es-abstract/2021/AsyncIteratorClose.js +6 -4
  2748. data/node_modules/es-abstract/2021/BigInt/add.js +2 -6
  2749. data/node_modules/es-abstract/2021/BigInt/bitwiseAND.js +2 -5
  2750. data/node_modules/es-abstract/2021/BigInt/bitwiseNOT.js +2 -4
  2751. data/node_modules/es-abstract/2021/BigInt/bitwiseOR.js +2 -5
  2752. data/node_modules/es-abstract/2021/BigInt/bitwiseXOR.js +2 -5
  2753. data/node_modules/es-abstract/2021/BigInt/divide.js +3 -5
  2754. data/node_modules/es-abstract/2021/BigInt/equal.js +2 -6
  2755. data/node_modules/es-abstract/2021/BigInt/exponentiate.js +3 -5
  2756. data/node_modules/es-abstract/2021/BigInt/leftShift.js +2 -6
  2757. data/node_modules/es-abstract/2021/BigInt/lessThan.js +2 -6
  2758. data/node_modules/es-abstract/2021/BigInt/multiply.js +2 -6
  2759. data/node_modules/es-abstract/2021/BigInt/remainder.js +3 -5
  2760. data/node_modules/es-abstract/2021/BigInt/sameValue.js +2 -5
  2761. data/node_modules/es-abstract/2021/BigInt/sameValueZero.js +2 -5
  2762. data/node_modules/es-abstract/2021/BigInt/signedRightShift.js +2 -5
  2763. data/node_modules/es-abstract/2021/BigInt/subtract.js +2 -6
  2764. data/node_modules/es-abstract/2021/BigInt/toString.js +2 -4
  2765. data/node_modules/es-abstract/2021/BigInt/unaryMinus.js +2 -4
  2766. data/node_modules/es-abstract/2021/BigInt/unsignedRightShift.js +2 -6
  2767. data/node_modules/es-abstract/2021/BigIntBitwiseOp.js +2 -5
  2768. data/node_modules/es-abstract/2021/BinaryAnd.js +1 -3
  2769. data/node_modules/es-abstract/2021/BinaryOr.js +1 -3
  2770. data/node_modules/es-abstract/2021/BinaryXor.js +1 -3
  2771. data/node_modules/es-abstract/2021/ByteListBitwiseOp.js +1 -2
  2772. data/node_modules/es-abstract/2021/ByteListEqual.js +1 -3
  2773. data/node_modules/es-abstract/2021/Call.js +1 -1
  2774. data/node_modules/es-abstract/2021/CanonicalNumericIndexString.js +2 -5
  2775. data/node_modules/es-abstract/2021/Canonicalize.js +7 -11
  2776. data/node_modules/es-abstract/2021/CharacterRange.js +1 -1
  2777. data/node_modules/es-abstract/2021/CloneArrayBuffer.js +1 -3
  2778. data/node_modules/es-abstract/2021/CodePointAt.js +2 -5
  2779. data/node_modules/es-abstract/2021/CodePointsToString.js +1 -3
  2780. data/node_modules/es-abstract/2021/CompletePropertyDescriptor.js +14 -10
  2781. data/node_modules/es-abstract/2021/CompletionRecord.js +1 -3
  2782. data/node_modules/es-abstract/2021/CopyDataProperties.js +1 -3
  2783. data/node_modules/es-abstract/2021/CreateAsyncFromSyncIterator.js +23 -7
  2784. data/node_modules/es-abstract/2021/CreateDataProperty.js +1 -3
  2785. data/node_modules/es-abstract/2021/CreateDataPropertyOrThrow.js +1 -3
  2786. data/node_modules/es-abstract/2021/CreateHTML.js +2 -5
  2787. data/node_modules/es-abstract/2021/CreateIterResultObject.js +2 -6
  2788. data/node_modules/es-abstract/2021/CreateListFromArrayLike.js +1 -3
  2789. data/node_modules/es-abstract/2021/CreateMethodProperty.js +1 -3
  2790. data/node_modules/es-abstract/2021/CreateRegExpStringIterator.js +4 -4
  2791. data/node_modules/es-abstract/2021/DateFromTime.js +1 -3
  2792. data/node_modules/es-abstract/2021/DateString.js +4 -7
  2793. data/node_modules/es-abstract/2021/DefinePropertyOrThrow.js +4 -15
  2794. data/node_modules/es-abstract/2021/DeletePropertyOrThrow.js +1 -3
  2795. data/node_modules/es-abstract/2021/DetachArrayBuffer.js +14 -11
  2796. data/node_modules/es-abstract/2021/EnumerableOwnPropertyNames.js +1 -1
  2797. data/node_modules/es-abstract/2021/FlattenIntoArray.js +1 -3
  2798. data/node_modules/es-abstract/2021/FromPropertyDescriptor.js +5 -5
  2799. data/node_modules/es-abstract/2021/Get.js +1 -3
  2800. data/node_modules/es-abstract/2021/GetIterator.js +2 -2
  2801. data/node_modules/es-abstract/2021/GetMethod.js +1 -3
  2802. data/node_modules/es-abstract/2021/GetOwnPropertyKeys.js +1 -1
  2803. data/node_modules/es-abstract/2021/GetPromiseResolve.js +1 -3
  2804. data/node_modules/es-abstract/2021/GetPrototypeFromConstructor.js +2 -2
  2805. data/node_modules/es-abstract/2021/GetSubstitution.js +13 -18
  2806. data/node_modules/es-abstract/2021/GetV.js +1 -3
  2807. data/node_modules/es-abstract/2021/GetValueFromBuffer.js +5 -18
  2808. data/node_modules/es-abstract/2021/HasOwnProperty.js +3 -5
  2809. data/node_modules/es-abstract/2021/HasProperty.js +1 -3
  2810. data/node_modules/es-abstract/2021/InLeapYear.js +1 -3
  2811. data/node_modules/es-abstract/2021/InstanceofOperator.js +1 -1
  2812. data/node_modules/es-abstract/2021/IntegerIndexedElementGet.js +39 -0
  2813. data/node_modules/es-abstract/2021/IntegerIndexedElementSet.js +44 -0
  2814. data/node_modules/es-abstract/2021/InternalizeJSONProperty.js +66 -0
  2815. data/node_modules/es-abstract/2021/Invoke.js +1 -3
  2816. data/node_modules/es-abstract/2021/IsAccessorDescriptor.js +7 -5
  2817. data/node_modules/es-abstract/2021/IsDataDescriptor.js +7 -5
  2818. data/node_modules/es-abstract/2021/IsDetachedBuffer.js +9 -8
  2819. data/node_modules/es-abstract/2021/IsGenericDescriptor.js +6 -3
  2820. data/node_modules/es-abstract/2021/IsSharedArrayBuffer.js +1 -3
  2821. data/node_modules/es-abstract/2021/IsStringPrefix.js +3 -7
  2822. data/node_modules/es-abstract/2021/IsValidIntegerIndex.js +1 -3
  2823. data/node_modules/es-abstract/2021/IsWordChar.js +2 -5
  2824. data/node_modules/es-abstract/2021/IteratorClose.js +1 -3
  2825. data/node_modules/es-abstract/2021/IteratorComplete.js +1 -3
  2826. data/node_modules/es-abstract/2021/IteratorNext.js +1 -3
  2827. data/node_modules/es-abstract/2021/IteratorValue.js +1 -3
  2828. data/node_modules/es-abstract/2021/LengthOfArrayLike.js +1 -3
  2829. data/node_modules/es-abstract/2021/NewPromiseCapability.js +1 -3
  2830. data/node_modules/es-abstract/2021/Number/add.js +2 -6
  2831. data/node_modules/es-abstract/2021/Number/bitwiseAND.js +2 -5
  2832. data/node_modules/es-abstract/2021/Number/bitwiseNOT.js +2 -5
  2833. data/node_modules/es-abstract/2021/Number/bitwiseOR.js +2 -5
  2834. data/node_modules/es-abstract/2021/Number/bitwiseXOR.js +2 -5
  2835. data/node_modules/es-abstract/2021/Number/divide.js +2 -5
  2836. data/node_modules/es-abstract/2021/Number/equal.js +2 -5
  2837. data/node_modules/es-abstract/2021/Number/exponentiate.js +2 -3
  2838. data/node_modules/es-abstract/2021/Number/leftShift.js +2 -5
  2839. data/node_modules/es-abstract/2021/Number/lessThan.js +2 -6
  2840. data/node_modules/es-abstract/2021/Number/multiply.js +2 -6
  2841. data/node_modules/es-abstract/2021/Number/remainder.js +2 -6
  2842. data/node_modules/es-abstract/2021/Number/sameValue.js +2 -4
  2843. data/node_modules/es-abstract/2021/Number/sameValueZero.js +2 -6
  2844. data/node_modules/es-abstract/2021/Number/signedRightShift.js +2 -5
  2845. data/node_modules/es-abstract/2021/Number/subtract.js +2 -6
  2846. data/node_modules/es-abstract/2021/Number/toString.js +2 -4
  2847. data/node_modules/es-abstract/2021/Number/unaryMinus.js +2 -6
  2848. data/node_modules/es-abstract/2021/Number/unsignedRightShift.js +2 -5
  2849. data/node_modules/es-abstract/2021/NumberBitwiseOp.js +2 -5
  2850. data/node_modules/es-abstract/2021/NumberToBigInt.js +4 -5
  2851. data/node_modules/es-abstract/2021/NumericToRawBytes.js +3 -6
  2852. data/node_modules/es-abstract/2021/OrdinaryCreateFromConstructor.js +1 -1
  2853. data/node_modules/es-abstract/2021/OrdinaryDefineOwnProperty.js +4 -11
  2854. data/node_modules/es-abstract/2021/OrdinaryGetOwnProperty.js +3 -5
  2855. data/node_modules/es-abstract/2021/OrdinaryGetPrototypeOf.js +1 -3
  2856. data/node_modules/es-abstract/2021/OrdinaryHasInstance.js +1 -3
  2857. data/node_modules/es-abstract/2021/OrdinaryHasProperty.js +1 -3
  2858. data/node_modules/es-abstract/2021/OrdinaryObjectCreate.js +2 -2
  2859. data/node_modules/es-abstract/2021/OrdinarySetPrototypeOf.js +2 -5
  2860. data/node_modules/es-abstract/2021/OrdinaryToPrimitive.js +2 -4
  2861. data/node_modules/es-abstract/2021/PromiseResolve.js +2 -1
  2862. data/node_modules/es-abstract/2021/QuoteJSONString.js +4 -7
  2863. data/node_modules/es-abstract/2021/RawBytesToNumeric.js +4 -5
  2864. data/node_modules/es-abstract/2021/RegExpExec.js +3 -5
  2865. data/node_modules/es-abstract/2021/RequireObjectCoercible.js +1 -1
  2866. data/node_modules/es-abstract/2021/SameValueNonNumeric.js +3 -6
  2867. data/node_modules/es-abstract/2021/Set.js +2 -4
  2868. data/node_modules/es-abstract/2021/SetFunctionLength.js +2 -5
  2869. data/node_modules/es-abstract/2021/SetFunctionName.js +5 -9
  2870. data/node_modules/es-abstract/2021/SetIntegrityLevel.js +2 -2
  2871. data/node_modules/es-abstract/2021/SetTypedArrayFromArrayLike.js +5 -35
  2872. data/node_modules/es-abstract/2021/SetTypedArrayFromTypedArray.js +8 -36
  2873. data/node_modules/es-abstract/2021/SetValueInBuffer.js +9 -21
  2874. data/node_modules/es-abstract/2021/SpeciesConstructor.js +1 -1
  2875. data/node_modules/es-abstract/2021/SplitMatch.js +3 -6
  2876. data/node_modules/es-abstract/2021/StringCreate.js +4 -5
  2877. data/node_modules/es-abstract/2021/StringGetOwnProperty.js +3 -5
  2878. data/node_modules/es-abstract/2021/StringIndexOf.js +3 -6
  2879. data/node_modules/es-abstract/2021/StringPad.js +1 -3
  2880. data/node_modules/es-abstract/2021/StringToBigInt.js +2 -2
  2881. data/node_modules/es-abstract/2021/StringToCodePoints.js +2 -5
  2882. data/node_modules/es-abstract/2021/SymbolDescriptiveString.js +2 -6
  2883. data/node_modules/es-abstract/2021/TestIntegrityLevel.js +1 -3
  2884. data/node_modules/es-abstract/2021/TimeString.js +2 -5
  2885. data/node_modules/es-abstract/2021/TimeZoneString.js +38 -0
  2886. data/node_modules/es-abstract/2021/ToBigInt.js +2 -2
  2887. data/node_modules/es-abstract/2021/ToDateString.js +2 -4
  2888. data/node_modules/es-abstract/2021/ToIndex.js +1 -3
  2889. data/node_modules/es-abstract/2021/ToNumber.js +1 -1
  2890. data/node_modules/es-abstract/2021/ToNumeric.js +1 -2
  2891. data/node_modules/es-abstract/2021/ToObject.js +1 -10
  2892. data/node_modules/es-abstract/2021/ToPropertyDescriptor.js +9 -11
  2893. data/node_modules/es-abstract/2021/ToString.js +1 -1
  2894. data/node_modules/es-abstract/2021/TrimString.js +1 -3
  2895. data/node_modules/es-abstract/2021/TypedArrayCreate.js +3 -6
  2896. data/node_modules/es-abstract/2021/TypedArraySpeciesCreate.js +2 -4
  2897. data/node_modules/es-abstract/2021/UTF16EncodeCodePoint.js +1 -1
  2898. data/node_modules/es-abstract/2021/UTF16SurrogatePairToCodePoint.js +1 -1
  2899. data/node_modules/es-abstract/2021/UnicodeEscape.js +1 -3
  2900. data/node_modules/es-abstract/2021/ValidateAndApplyPropertyDescriptor.js +6 -16
  2901. data/node_modules/es-abstract/2021/ValidateAtomicAccess.js +5 -19
  2902. data/node_modules/es-abstract/2021/ValidateIntegerTypedArray.js +4 -20
  2903. data/node_modules/es-abstract/2021/ValidateTypedArray.js +10 -12
  2904. data/node_modules/es-abstract/2021/WeakRefDeref.js +1 -2
  2905. data/node_modules/es-abstract/2021/WordCharacters.js +3 -6
  2906. data/node_modules/es-abstract/2021/clamp.js +2 -4
  2907. data/node_modules/es-abstract/2021/floor.js +1 -3
  2908. data/node_modules/es-abstract/2021/substring.js +2 -6
  2909. data/node_modules/es-abstract/2021/tables/typed-array-objects.js +35 -0
  2910. data/node_modules/es-abstract/2021/thisBigIntValue.js +1 -2
  2911. data/node_modules/es-abstract/2021/thisBooleanValue.js +1 -3
  2912. data/node_modules/es-abstract/2021/thisNumberValue.js +1 -3
  2913. data/node_modules/es-abstract/2021/thisStringValue.js +1 -3
  2914. data/node_modules/es-abstract/2021/thisSymbolValue.js +3 -4
  2915. data/node_modules/es-abstract/2022/AddEntriesFromIterable.js +1 -3
  2916. data/node_modules/es-abstract/2022/AddToKeptObjects.js +1 -2
  2917. data/node_modules/es-abstract/2022/AdvanceStringIndex.js +3 -6
  2918. data/node_modules/es-abstract/2022/ApplyStringOrNumericBinaryOperator.js +3 -5
  2919. data/node_modules/es-abstract/2022/ArrayCreate.js +3 -3
  2920. data/node_modules/es-abstract/2022/ArraySetLength.js +4 -12
  2921. data/node_modules/es-abstract/2022/ArraySpeciesCreate.js +1 -1
  2922. data/node_modules/es-abstract/2022/AsyncFromSyncIteratorContinuation.js +3 -3
  2923. data/node_modules/es-abstract/2022/AsyncIteratorClose.js +6 -4
  2924. data/node_modules/es-abstract/2022/BigInt/add.js +2 -6
  2925. data/node_modules/es-abstract/2022/BigInt/bitwiseAND.js +2 -5
  2926. data/node_modules/es-abstract/2022/BigInt/bitwiseNOT.js +2 -4
  2927. data/node_modules/es-abstract/2022/BigInt/bitwiseOR.js +2 -5
  2928. data/node_modules/es-abstract/2022/BigInt/bitwiseXOR.js +2 -5
  2929. data/node_modules/es-abstract/2022/BigInt/divide.js +3 -5
  2930. data/node_modules/es-abstract/2022/BigInt/equal.js +2 -6
  2931. data/node_modules/es-abstract/2022/BigInt/exponentiate.js +3 -5
  2932. data/node_modules/es-abstract/2022/BigInt/leftShift.js +2 -6
  2933. data/node_modules/es-abstract/2022/BigInt/lessThan.js +2 -6
  2934. data/node_modules/es-abstract/2022/BigInt/multiply.js +2 -6
  2935. data/node_modules/es-abstract/2022/BigInt/remainder.js +3 -5
  2936. data/node_modules/es-abstract/2022/BigInt/sameValue.js +2 -5
  2937. data/node_modules/es-abstract/2022/BigInt/sameValueZero.js +2 -5
  2938. data/node_modules/es-abstract/2022/BigInt/signedRightShift.js +2 -5
  2939. data/node_modules/es-abstract/2022/BigInt/subtract.js +2 -6
  2940. data/node_modules/es-abstract/2022/BigInt/toString.js +2 -4
  2941. data/node_modules/es-abstract/2022/BigInt/unaryMinus.js +2 -4
  2942. data/node_modules/es-abstract/2022/BigInt/unsignedRightShift.js +2 -6
  2943. data/node_modules/es-abstract/2022/BigIntBitwiseOp.js +2 -5
  2944. data/node_modules/es-abstract/2022/BinaryAnd.js +1 -3
  2945. data/node_modules/es-abstract/2022/BinaryOr.js +1 -3
  2946. data/node_modules/es-abstract/2022/BinaryXor.js +1 -3
  2947. data/node_modules/es-abstract/2022/ByteListBitwiseOp.js +1 -2
  2948. data/node_modules/es-abstract/2022/ByteListEqual.js +1 -3
  2949. data/node_modules/es-abstract/2022/Call.js +1 -1
  2950. data/node_modules/es-abstract/2022/CanonicalNumericIndexString.js +2 -5
  2951. data/node_modules/es-abstract/2022/Canonicalize.js +7 -11
  2952. data/node_modules/es-abstract/2022/CharacterRange.js +1 -1
  2953. data/node_modules/es-abstract/2022/CloneArrayBuffer.js +1 -3
  2954. data/node_modules/es-abstract/2022/CodePointAt.js +2 -5
  2955. data/node_modules/es-abstract/2022/CodePointsToString.js +1 -3
  2956. data/node_modules/es-abstract/2022/CompletePropertyDescriptor.js +14 -10
  2957. data/node_modules/es-abstract/2022/CompletionRecord.js +1 -3
  2958. data/node_modules/es-abstract/2022/CopyDataProperties.js +1 -3
  2959. data/node_modules/es-abstract/2022/CreateAsyncFromSyncIterator.js +23 -7
  2960. data/node_modules/es-abstract/2022/CreateDataProperty.js +1 -3
  2961. data/node_modules/es-abstract/2022/CreateDataPropertyOrThrow.js +1 -3
  2962. data/node_modules/es-abstract/2022/CreateHTML.js +2 -5
  2963. data/node_modules/es-abstract/2022/CreateIterResultObject.js +2 -6
  2964. data/node_modules/es-abstract/2022/CreateListFromArrayLike.js +1 -3
  2965. data/node_modules/es-abstract/2022/CreateMethodProperty.js +1 -3
  2966. data/node_modules/es-abstract/2022/CreateNonEnumerableDataPropertyOrThrow.js +1 -3
  2967. data/node_modules/es-abstract/2022/CreateRegExpStringIterator.js +4 -4
  2968. data/node_modules/es-abstract/2022/DateFromTime.js +1 -3
  2969. data/node_modules/es-abstract/2022/DateString.js +4 -7
  2970. data/node_modules/es-abstract/2022/DefineMethodProperty.js +41 -0
  2971. data/node_modules/es-abstract/2022/DefinePropertyOrThrow.js +4 -15
  2972. data/node_modules/es-abstract/2022/DeletePropertyOrThrow.js +1 -3
  2973. data/node_modules/es-abstract/2022/DetachArrayBuffer.js +14 -11
  2974. data/node_modules/es-abstract/2022/EnumerableOwnPropertyNames.js +1 -1
  2975. data/node_modules/es-abstract/2022/FlattenIntoArray.js +1 -3
  2976. data/node_modules/es-abstract/2022/FromPropertyDescriptor.js +5 -5
  2977. data/node_modules/es-abstract/2022/Get.js +1 -3
  2978. data/node_modules/es-abstract/2022/GetIterator.js +2 -2
  2979. data/node_modules/es-abstract/2022/GetMatchIndexPair.js +6 -8
  2980. data/node_modules/es-abstract/2022/GetMatchString.js +6 -7
  2981. data/node_modules/es-abstract/2022/GetMethod.js +1 -3
  2982. data/node_modules/es-abstract/2022/GetOwnPropertyKeys.js +1 -1
  2983. data/node_modules/es-abstract/2022/GetPromiseResolve.js +1 -3
  2984. data/node_modules/es-abstract/2022/GetPrototypeFromConstructor.js +2 -2
  2985. data/node_modules/es-abstract/2022/GetStringIndex.js +2 -4
  2986. data/node_modules/es-abstract/2022/GetSubstitution.js +101 -86
  2987. data/node_modules/es-abstract/2022/GetV.js +1 -3
  2988. data/node_modules/es-abstract/2022/GetValueFromBuffer.js +5 -18
  2989. data/node_modules/es-abstract/2022/HasOwnProperty.js +3 -5
  2990. data/node_modules/es-abstract/2022/HasProperty.js +1 -3
  2991. data/node_modules/es-abstract/2022/InLeapYear.js +1 -3
  2992. data/node_modules/es-abstract/2022/InstallErrorCause.js +1 -3
  2993. data/node_modules/es-abstract/2022/InstanceofOperator.js +1 -1
  2994. data/node_modules/es-abstract/2022/IntegerIndexedElementGet.js +38 -0
  2995. data/node_modules/es-abstract/2022/IntegerIndexedElementSet.js +42 -0
  2996. data/node_modules/es-abstract/2022/InternalizeJSONProperty.js +66 -0
  2997. data/node_modules/es-abstract/2022/Invoke.js +1 -3
  2998. data/node_modules/es-abstract/2022/IsAccessorDescriptor.js +7 -5
  2999. data/node_modules/es-abstract/2022/IsDataDescriptor.js +7 -5
  3000. data/node_modules/es-abstract/2022/IsDetachedBuffer.js +9 -8
  3001. data/node_modules/es-abstract/2022/IsGenericDescriptor.js +6 -3
  3002. data/node_modules/es-abstract/2022/IsLessThan.js +8 -11
  3003. data/node_modules/es-abstract/2022/IsSharedArrayBuffer.js +1 -3
  3004. data/node_modules/es-abstract/2022/IsStringPrefix.js +3 -6
  3005. data/node_modules/es-abstract/2022/IsStringWellFormedUnicode.js +2 -5
  3006. data/node_modules/es-abstract/2022/IsValidIntegerIndex.js +1 -3
  3007. data/node_modules/es-abstract/2022/IsWordChar.js +2 -5
  3008. data/node_modules/es-abstract/2022/IteratorClose.js +1 -3
  3009. data/node_modules/es-abstract/2022/IteratorComplete.js +1 -3
  3010. data/node_modules/es-abstract/2022/IteratorNext.js +1 -3
  3011. data/node_modules/es-abstract/2022/IteratorValue.js +1 -3
  3012. data/node_modules/es-abstract/2022/LengthOfArrayLike.js +1 -3
  3013. data/node_modules/es-abstract/2022/MakeMatchIndicesIndexPairArray.js +4 -7
  3014. data/node_modules/es-abstract/2022/NewPromiseCapability.js +1 -3
  3015. data/node_modules/es-abstract/2022/Number/add.js +2 -6
  3016. data/node_modules/es-abstract/2022/Number/bitwiseAND.js +2 -5
  3017. data/node_modules/es-abstract/2022/Number/bitwiseNOT.js +2 -5
  3018. data/node_modules/es-abstract/2022/Number/bitwiseOR.js +2 -5
  3019. data/node_modules/es-abstract/2022/Number/bitwiseXOR.js +2 -5
  3020. data/node_modules/es-abstract/2022/Number/divide.js +2 -5
  3021. data/node_modules/es-abstract/2022/Number/equal.js +2 -5
  3022. data/node_modules/es-abstract/2022/Number/exponentiate.js +2 -3
  3023. data/node_modules/es-abstract/2022/Number/leftShift.js +2 -5
  3024. data/node_modules/es-abstract/2022/Number/lessThan.js +2 -6
  3025. data/node_modules/es-abstract/2022/Number/multiply.js +2 -6
  3026. data/node_modules/es-abstract/2022/Number/remainder.js +2 -6
  3027. data/node_modules/es-abstract/2022/Number/sameValue.js +2 -4
  3028. data/node_modules/es-abstract/2022/Number/sameValueZero.js +2 -6
  3029. data/node_modules/es-abstract/2022/Number/signedRightShift.js +2 -5
  3030. data/node_modules/es-abstract/2022/Number/subtract.js +2 -6
  3031. data/node_modules/es-abstract/2022/Number/toString.js +2 -4
  3032. data/node_modules/es-abstract/2022/Number/unaryMinus.js +2 -6
  3033. data/node_modules/es-abstract/2022/Number/unsignedRightShift.js +2 -5
  3034. data/node_modules/es-abstract/2022/NumberBitwiseOp.js +2 -5
  3035. data/node_modules/es-abstract/2022/NumberToBigInt.js +4 -5
  3036. data/node_modules/es-abstract/2022/NumericToRawBytes.js +3 -6
  3037. data/node_modules/es-abstract/2022/OrdinaryCreateFromConstructor.js +1 -1
  3038. data/node_modules/es-abstract/2022/OrdinaryDefineOwnProperty.js +4 -11
  3039. data/node_modules/es-abstract/2022/OrdinaryGetOwnProperty.js +3 -5
  3040. data/node_modules/es-abstract/2022/OrdinaryGetPrototypeOf.js +1 -3
  3041. data/node_modules/es-abstract/2022/OrdinaryHasInstance.js +1 -3
  3042. data/node_modules/es-abstract/2022/OrdinaryHasProperty.js +1 -3
  3043. data/node_modules/es-abstract/2022/OrdinaryObjectCreate.js +2 -2
  3044. data/node_modules/es-abstract/2022/OrdinarySetPrototypeOf.js +2 -5
  3045. data/node_modules/es-abstract/2022/OrdinaryToPrimitive.js +2 -4
  3046. data/node_modules/es-abstract/2022/PromiseResolve.js +2 -1
  3047. data/node_modules/es-abstract/2022/QuoteJSONString.js +4 -7
  3048. data/node_modules/es-abstract/2022/RawBytesToNumeric.js +4 -5
  3049. data/node_modules/es-abstract/2022/RegExpExec.js +3 -5
  3050. data/node_modules/es-abstract/2022/RegExpHasFlag.js +2 -2
  3051. data/node_modules/es-abstract/2022/RequireObjectCoercible.js +1 -1
  3052. data/node_modules/es-abstract/2022/SameValueNonNumeric.js +3 -6
  3053. data/node_modules/es-abstract/2022/Set.js +2 -4
  3054. data/node_modules/es-abstract/2022/SetFunctionLength.js +2 -5
  3055. data/node_modules/es-abstract/2022/SetFunctionName.js +5 -9
  3056. data/node_modules/es-abstract/2022/SetIntegrityLevel.js +2 -2
  3057. data/node_modules/es-abstract/2022/SetTypedArrayFromArrayLike.js +2 -4
  3058. data/node_modules/es-abstract/2022/SetTypedArrayFromTypedArray.js +3 -3
  3059. data/node_modules/es-abstract/2022/SetValueInBuffer.js +9 -21
  3060. data/node_modules/es-abstract/2022/SortIndexedProperties.js +1 -2
  3061. data/node_modules/es-abstract/2022/SpeciesConstructor.js +1 -1
  3062. data/node_modules/es-abstract/2022/StringCreate.js +4 -5
  3063. data/node_modules/es-abstract/2022/StringGetOwnProperty.js +3 -5
  3064. data/node_modules/es-abstract/2022/StringIndexOf.js +3 -6
  3065. data/node_modules/es-abstract/2022/StringPad.js +1 -3
  3066. data/node_modules/es-abstract/2022/StringToBigInt.js +2 -2
  3067. data/node_modules/es-abstract/2022/StringToCodePoints.js +2 -5
  3068. data/node_modules/es-abstract/2022/StringToNumber.js +2 -4
  3069. data/node_modules/es-abstract/2022/SymbolDescriptiveString.js +2 -6
  3070. data/node_modules/es-abstract/2022/TestIntegrityLevel.js +1 -3
  3071. data/node_modules/es-abstract/2022/TimeString.js +12 -11
  3072. data/node_modules/es-abstract/2022/TimeZoneString.js +38 -0
  3073. data/node_modules/es-abstract/2022/ToBigInt.js +4 -6
  3074. data/node_modules/es-abstract/2022/ToDateString.js +2 -4
  3075. data/node_modules/es-abstract/2022/ToIndex.js +1 -3
  3076. data/node_modules/es-abstract/2022/ToNumber.js +1 -1
  3077. data/node_modules/es-abstract/2022/ToNumeric.js +1 -2
  3078. data/node_modules/es-abstract/2022/ToObject.js +1 -10
  3079. data/node_modules/es-abstract/2022/ToPropertyDescriptor.js +9 -11
  3080. data/node_modules/es-abstract/2022/ToString.js +1 -1
  3081. data/node_modules/es-abstract/2022/ToZeroPaddedDecimalString.js +1 -1
  3082. data/node_modules/es-abstract/2022/TrimString.js +1 -3
  3083. data/node_modules/es-abstract/2022/TypedArrayCreate.js +3 -6
  3084. data/node_modules/es-abstract/2022/TypedArrayElementSize.js +4 -19
  3085. data/node_modules/es-abstract/2022/TypedArrayElementType.js +4 -19
  3086. data/node_modules/es-abstract/2022/TypedArraySpeciesCreate.js +2 -4
  3087. data/node_modules/es-abstract/2022/UTF16EncodeCodePoint.js +1 -1
  3088. data/node_modules/es-abstract/2022/UTF16SurrogatePairToCodePoint.js +1 -1
  3089. data/node_modules/es-abstract/2022/UnicodeEscape.js +1 -3
  3090. data/node_modules/es-abstract/2022/ValidateAndApplyPropertyDescriptor.js +15 -20
  3091. data/node_modules/es-abstract/2022/ValidateAtomicAccess.js +2 -4
  3092. data/node_modules/es-abstract/2022/ValidateIntegerTypedArray.js +2 -5
  3093. data/node_modules/es-abstract/2022/ValidateTypedArray.js +10 -14
  3094. data/node_modules/es-abstract/2022/WeakRefDeref.js +1 -2
  3095. data/node_modules/es-abstract/2022/WordCharacters.js +3 -6
  3096. data/node_modules/es-abstract/2022/clamp.js +2 -4
  3097. data/node_modules/es-abstract/2022/floor.js +1 -3
  3098. data/node_modules/es-abstract/2022/substring.js +2 -6
  3099. data/node_modules/es-abstract/2022/tables/typed-array-objects.js +35 -0
  3100. data/node_modules/es-abstract/2022/thisBigIntValue.js +1 -2
  3101. data/node_modules/es-abstract/2022/thisBooleanValue.js +1 -3
  3102. data/node_modules/es-abstract/2022/thisNumberValue.js +1 -3
  3103. data/node_modules/es-abstract/2022/thisStringValue.js +1 -3
  3104. data/node_modules/es-abstract/2022/thisSymbolValue.js +3 -4
  3105. data/node_modules/es-abstract/2023/AddEntriesFromIterable.js +1 -3
  3106. data/node_modules/es-abstract/2023/AddToKeptObjects.js +1 -2
  3107. data/node_modules/es-abstract/2023/AdvanceStringIndex.js +3 -6
  3108. data/node_modules/es-abstract/2023/ApplyStringOrNumericBinaryOperator.js +3 -5
  3109. data/node_modules/es-abstract/2023/ArrayCreate.js +3 -3
  3110. data/node_modules/es-abstract/2023/ArraySetLength.js +4 -12
  3111. data/node_modules/es-abstract/2023/ArraySpeciesCreate.js +1 -1
  3112. data/node_modules/es-abstract/2023/AsyncFromSyncIteratorContinuation.js +3 -3
  3113. data/node_modules/es-abstract/2023/AsyncIteratorClose.js +6 -4
  3114. data/node_modules/es-abstract/2023/BigInt/add.js +2 -6
  3115. data/node_modules/es-abstract/2023/BigInt/bitwiseAND.js +2 -5
  3116. data/node_modules/es-abstract/2023/BigInt/bitwiseNOT.js +2 -4
  3117. data/node_modules/es-abstract/2023/BigInt/bitwiseOR.js +2 -5
  3118. data/node_modules/es-abstract/2023/BigInt/bitwiseXOR.js +2 -5
  3119. data/node_modules/es-abstract/2023/BigInt/divide.js +3 -5
  3120. data/node_modules/es-abstract/2023/BigInt/equal.js +2 -6
  3121. data/node_modules/es-abstract/2023/BigInt/exponentiate.js +3 -5
  3122. data/node_modules/es-abstract/2023/BigInt/leftShift.js +2 -6
  3123. data/node_modules/es-abstract/2023/BigInt/lessThan.js +2 -6
  3124. data/node_modules/es-abstract/2023/BigInt/multiply.js +2 -6
  3125. data/node_modules/es-abstract/2023/BigInt/remainder.js +3 -5
  3126. data/node_modules/es-abstract/2023/BigInt/signedRightShift.js +2 -5
  3127. data/node_modules/es-abstract/2023/BigInt/subtract.js +2 -6
  3128. data/node_modules/es-abstract/2023/BigInt/toString.js +3 -7
  3129. data/node_modules/es-abstract/2023/BigInt/unaryMinus.js +2 -4
  3130. data/node_modules/es-abstract/2023/BigInt/unsignedRightShift.js +2 -6
  3131. data/node_modules/es-abstract/2023/BigIntBitwiseOp.js +2 -5
  3132. data/node_modules/es-abstract/2023/BinaryAnd.js +1 -3
  3133. data/node_modules/es-abstract/2023/BinaryOr.js +1 -3
  3134. data/node_modules/es-abstract/2023/BinaryXor.js +1 -3
  3135. data/node_modules/es-abstract/2023/ByteListBitwiseOp.js +1 -2
  3136. data/node_modules/es-abstract/2023/ByteListEqual.js +1 -3
  3137. data/node_modules/es-abstract/2023/Call.js +1 -1
  3138. data/node_modules/es-abstract/2023/CanBeHeldWeakly.js +1 -1
  3139. data/node_modules/es-abstract/2023/CanonicalNumericIndexString.js +2 -5
  3140. data/node_modules/es-abstract/2023/Canonicalize.js +11 -12
  3141. data/node_modules/es-abstract/2023/CharacterRange.js +1 -1
  3142. data/node_modules/es-abstract/2023/CloneArrayBuffer.js +1 -3
  3143. data/node_modules/es-abstract/2023/CodePointAt.js +2 -5
  3144. data/node_modules/es-abstract/2023/CodePointsToString.js +1 -3
  3145. data/node_modules/es-abstract/2023/CompareArrayElements.js +1 -3
  3146. data/node_modules/es-abstract/2023/CompareTypedArrayElements.js +2 -7
  3147. data/node_modules/es-abstract/2023/CompletePropertyDescriptor.js +14 -10
  3148. data/node_modules/es-abstract/2023/CompletionRecord.js +1 -3
  3149. data/node_modules/es-abstract/2023/CopyDataProperties.js +1 -3
  3150. data/node_modules/es-abstract/2023/CreateAsyncFromSyncIterator.js +22 -6
  3151. data/node_modules/es-abstract/2023/CreateDataProperty.js +1 -3
  3152. data/node_modules/es-abstract/2023/CreateDataPropertyOrThrow.js +1 -3
  3153. data/node_modules/es-abstract/2023/CreateHTML.js +2 -5
  3154. data/node_modules/es-abstract/2023/CreateIterResultObject.js +2 -6
  3155. data/node_modules/es-abstract/2023/CreateListFromArrayLike.js +1 -3
  3156. data/node_modules/es-abstract/2023/CreateMethodProperty.js +1 -3
  3157. data/node_modules/es-abstract/2023/CreateNonEnumerableDataPropertyOrThrow.js +1 -3
  3158. data/node_modules/es-abstract/2023/CreateRegExpStringIterator.js +4 -4
  3159. data/node_modules/es-abstract/2023/DateFromTime.js +1 -3
  3160. data/node_modules/es-abstract/2023/DateString.js +4 -7
  3161. data/node_modules/es-abstract/2023/DefaultTimeZone.js +18 -0
  3162. data/node_modules/es-abstract/2023/DefineMethodProperty.js +41 -0
  3163. data/node_modules/es-abstract/2023/DefinePropertyOrThrow.js +4 -15
  3164. data/node_modules/es-abstract/2023/DeletePropertyOrThrow.js +1 -3
  3165. data/node_modules/es-abstract/2023/DetachArrayBuffer.js +14 -11
  3166. data/node_modules/es-abstract/2023/EnumerableOwnProperties.js +1 -1
  3167. data/node_modules/es-abstract/2023/FindViaPredicate.js +1 -3
  3168. data/node_modules/es-abstract/2023/FlattenIntoArray.js +1 -3
  3169. data/node_modules/es-abstract/2023/FromPropertyDescriptor.js +5 -5
  3170. data/node_modules/es-abstract/2023/Get.js +1 -3
  3171. data/node_modules/es-abstract/2023/GetIterator.js +1 -1
  3172. data/node_modules/es-abstract/2023/GetIteratorFromMethod.js +1 -3
  3173. data/node_modules/es-abstract/2023/GetMatchIndexPair.js +6 -8
  3174. data/node_modules/es-abstract/2023/GetMatchString.js +6 -7
  3175. data/node_modules/es-abstract/2023/GetMethod.js +1 -3
  3176. data/node_modules/es-abstract/2023/GetOwnPropertyKeys.js +1 -1
  3177. data/node_modules/es-abstract/2023/GetPromiseResolve.js +1 -3
  3178. data/node_modules/es-abstract/2023/GetPrototypeFromConstructor.js +2 -2
  3179. data/node_modules/es-abstract/2023/GetStringIndex.js +2 -4
  3180. data/node_modules/es-abstract/2023/GetSubstitution.js +104 -88
  3181. data/node_modules/es-abstract/2023/GetV.js +1 -3
  3182. data/node_modules/es-abstract/2023/GetValueFromBuffer.js +5 -18
  3183. data/node_modules/es-abstract/2023/HasOwnProperty.js +3 -5
  3184. data/node_modules/es-abstract/2023/HasProperty.js +1 -3
  3185. data/node_modules/es-abstract/2023/InLeapYear.js +1 -3
  3186. data/node_modules/es-abstract/2023/InstallErrorCause.js +1 -3
  3187. data/node_modules/es-abstract/2023/InstanceofOperator.js +1 -1
  3188. data/node_modules/es-abstract/2023/IntegerIndexedElementGet.js +38 -0
  3189. data/node_modules/es-abstract/2023/IntegerIndexedElementSet.js +42 -0
  3190. data/node_modules/es-abstract/2023/InternalizeJSONProperty.js +68 -0
  3191. data/node_modules/es-abstract/2023/Invoke.js +1 -3
  3192. data/node_modules/es-abstract/2023/IsAccessorDescriptor.js +7 -5
  3193. data/node_modules/es-abstract/2023/IsDataDescriptor.js +7 -5
  3194. data/node_modules/es-abstract/2023/IsDetachedBuffer.js +9 -8
  3195. data/node_modules/es-abstract/2023/IsGenericDescriptor.js +6 -3
  3196. data/node_modules/es-abstract/2023/IsIntegralNumber.js +1 -2
  3197. data/node_modules/es-abstract/2023/IsLessThan.js +8 -11
  3198. data/node_modules/es-abstract/2023/IsSharedArrayBuffer.js +1 -3
  3199. data/node_modules/es-abstract/2023/IsStringWellFormedUnicode.js +2 -5
  3200. data/node_modules/es-abstract/2023/IsValidIntegerIndex.js +1 -3
  3201. data/node_modules/es-abstract/2023/IsWordChar.js +5 -6
  3202. data/node_modules/es-abstract/2023/IteratorClose.js +5 -5
  3203. data/node_modules/es-abstract/2023/IteratorComplete.js +1 -3
  3204. data/node_modules/es-abstract/2023/IteratorNext.js +5 -5
  3205. data/node_modules/es-abstract/2023/IteratorStep.js +6 -3
  3206. data/node_modules/es-abstract/2023/IteratorToList.js +6 -3
  3207. data/node_modules/es-abstract/2023/IteratorValue.js +1 -3
  3208. data/node_modules/es-abstract/2023/KeyForSymbol.js +2 -6
  3209. data/node_modules/es-abstract/2023/LengthOfArrayLike.js +1 -3
  3210. data/node_modules/es-abstract/2023/MakeMatchIndicesIndexPairArray.js +4 -7
  3211. data/node_modules/es-abstract/2023/NewPromiseCapability.js +1 -3
  3212. data/node_modules/es-abstract/2023/Number/add.js +2 -6
  3213. data/node_modules/es-abstract/2023/Number/bitwiseAND.js +2 -5
  3214. data/node_modules/es-abstract/2023/Number/bitwiseNOT.js +2 -5
  3215. data/node_modules/es-abstract/2023/Number/bitwiseOR.js +2 -5
  3216. data/node_modules/es-abstract/2023/Number/bitwiseXOR.js +2 -5
  3217. data/node_modules/es-abstract/2023/Number/divide.js +2 -5
  3218. data/node_modules/es-abstract/2023/Number/equal.js +2 -5
  3219. data/node_modules/es-abstract/2023/Number/exponentiate.js +2 -3
  3220. data/node_modules/es-abstract/2023/Number/leftShift.js +2 -5
  3221. data/node_modules/es-abstract/2023/Number/lessThan.js +2 -6
  3222. data/node_modules/es-abstract/2023/Number/multiply.js +2 -6
  3223. data/node_modules/es-abstract/2023/Number/remainder.js +2 -5
  3224. data/node_modules/es-abstract/2023/Number/sameValue.js +2 -4
  3225. data/node_modules/es-abstract/2023/Number/sameValueZero.js +2 -6
  3226. data/node_modules/es-abstract/2023/Number/signedRightShift.js +2 -5
  3227. data/node_modules/es-abstract/2023/Number/subtract.js +2 -6
  3228. data/node_modules/es-abstract/2023/Number/toString.js +2 -6
  3229. data/node_modules/es-abstract/2023/Number/unaryMinus.js +2 -6
  3230. data/node_modules/es-abstract/2023/Number/unsignedRightShift.js +2 -5
  3231. data/node_modules/es-abstract/2023/NumberBitwiseOp.js +2 -5
  3232. data/node_modules/es-abstract/2023/NumberToBigInt.js +4 -5
  3233. data/node_modules/es-abstract/2023/NumericToRawBytes.js +3 -6
  3234. data/node_modules/es-abstract/2023/OrdinaryCreateFromConstructor.js +1 -1
  3235. data/node_modules/es-abstract/2023/OrdinaryDefineOwnProperty.js +4 -11
  3236. data/node_modules/es-abstract/2023/OrdinaryGetOwnProperty.js +3 -5
  3237. data/node_modules/es-abstract/2023/OrdinaryGetPrototypeOf.js +1 -3
  3238. data/node_modules/es-abstract/2023/OrdinaryHasInstance.js +1 -3
  3239. data/node_modules/es-abstract/2023/OrdinaryHasProperty.js +1 -3
  3240. data/node_modules/es-abstract/2023/OrdinaryObjectCreate.js +2 -2
  3241. data/node_modules/es-abstract/2023/OrdinarySetPrototypeOf.js +2 -5
  3242. data/node_modules/es-abstract/2023/OrdinaryToPrimitive.js +2 -4
  3243. data/node_modules/es-abstract/2023/ParseHexOctet.js +3 -4
  3244. data/node_modules/es-abstract/2023/PromiseResolve.js +2 -1
  3245. data/node_modules/es-abstract/2023/QuoteJSONString.js +4 -7
  3246. data/node_modules/es-abstract/2023/RawBytesToNumeric.js +4 -5
  3247. data/node_modules/es-abstract/2023/RegExpExec.js +3 -5
  3248. data/node_modules/es-abstract/2023/RegExpHasFlag.js +2 -2
  3249. data/node_modules/es-abstract/2023/RequireObjectCoercible.js +1 -1
  3250. data/node_modules/es-abstract/2023/SameValueNonNumber.js +1 -3
  3251. data/node_modules/es-abstract/2023/Set.js +2 -4
  3252. data/node_modules/es-abstract/2023/SetFunctionLength.js +2 -5
  3253. data/node_modules/es-abstract/2023/SetFunctionName.js +5 -9
  3254. data/node_modules/es-abstract/2023/SetIntegrityLevel.js +2 -2
  3255. data/node_modules/es-abstract/2023/SetTypedArrayFromArrayLike.js +15 -43
  3256. data/node_modules/es-abstract/2023/SetTypedArrayFromTypedArray.js +25 -32
  3257. data/node_modules/es-abstract/2023/SetValueInBuffer.js +9 -21
  3258. data/node_modules/es-abstract/2023/SortIndexedProperties.js +1 -2
  3259. data/node_modules/es-abstract/2023/SpeciesConstructor.js +1 -1
  3260. data/node_modules/es-abstract/2023/StringCreate.js +4 -5
  3261. data/node_modules/es-abstract/2023/StringGetOwnProperty.js +3 -5
  3262. data/node_modules/es-abstract/2023/StringIndexOf.js +3 -6
  3263. data/node_modules/es-abstract/2023/StringPad.js +1 -3
  3264. data/node_modules/es-abstract/2023/StringToBigInt.js +2 -2
  3265. data/node_modules/es-abstract/2023/StringToCodePoints.js +2 -5
  3266. data/node_modules/es-abstract/2023/StringToNumber.js +2 -4
  3267. data/node_modules/es-abstract/2023/SymbolDescriptiveString.js +2 -6
  3268. data/node_modules/es-abstract/2023/TestIntegrityLevel.js +1 -3
  3269. data/node_modules/es-abstract/2023/TimeString.js +12 -11
  3270. data/node_modules/es-abstract/2023/TimeZoneString.js +43 -0
  3271. data/node_modules/es-abstract/2023/ToBigInt.js +4 -6
  3272. data/node_modules/es-abstract/2023/ToDateString.js +2 -4
  3273. data/node_modules/es-abstract/2023/ToIndex.js +1 -3
  3274. data/node_modules/es-abstract/2023/ToNumber.js +1 -1
  3275. data/node_modules/es-abstract/2023/ToNumeric.js +1 -2
  3276. data/node_modules/es-abstract/2023/ToObject.js +1 -10
  3277. data/node_modules/es-abstract/2023/ToPropertyDescriptor.js +9 -11
  3278. data/node_modules/es-abstract/2023/ToString.js +1 -1
  3279. data/node_modules/es-abstract/2023/ToZeroPaddedDecimalString.js +1 -1
  3280. data/node_modules/es-abstract/2023/TrimString.js +1 -3
  3281. data/node_modules/es-abstract/2023/TypedArrayCreate.js +3 -6
  3282. data/node_modules/es-abstract/2023/TypedArrayCreateSameType.js +2 -4
  3283. data/node_modules/es-abstract/2023/TypedArrayElementSize.js +4 -19
  3284. data/node_modules/es-abstract/2023/TypedArrayElementType.js +4 -19
  3285. data/node_modules/es-abstract/2023/TypedArraySpeciesCreate.js +2 -4
  3286. data/node_modules/es-abstract/2023/UTF16EncodeCodePoint.js +1 -1
  3287. data/node_modules/es-abstract/2023/UTF16SurrogatePairToCodePoint.js +1 -1
  3288. data/node_modules/es-abstract/2023/UnicodeEscape.js +1 -3
  3289. data/node_modules/es-abstract/2023/ValidateAndApplyPropertyDescriptor.js +15 -20
  3290. data/node_modules/es-abstract/2023/ValidateAtomicAccess.js +2 -4
  3291. data/node_modules/es-abstract/2023/ValidateIntegerTypedArray.js +2 -5
  3292. data/node_modules/es-abstract/2023/ValidateTypedArray.js +10 -14
  3293. data/node_modules/es-abstract/2023/WeakRefDeref.js +1 -2
  3294. data/node_modules/es-abstract/2023/WordCharacters.js +6 -7
  3295. data/node_modules/es-abstract/2023/clamp.js +2 -4
  3296. data/node_modules/es-abstract/2023/floor.js +1 -3
  3297. data/node_modules/es-abstract/2023/substring.js +2 -6
  3298. data/node_modules/es-abstract/2023/tables/typed-array-objects.js +35 -0
  3299. data/node_modules/es-abstract/2023/thisBigIntValue.js +1 -2
  3300. data/node_modules/es-abstract/2023/thisBooleanValue.js +1 -3
  3301. data/node_modules/es-abstract/2023/thisNumberValue.js +1 -3
  3302. data/node_modules/es-abstract/2023/thisStringValue.js +1 -3
  3303. data/node_modules/es-abstract/2023/thisSymbolValue.js +3 -4
  3304. data/node_modules/es-abstract/2023/truncate.js +1 -3
  3305. data/node_modules/es-abstract/2024/AddEntriesFromIterable.js +45 -0
  3306. data/node_modules/es-abstract/2024/AddToKeptObjects.js +20 -0
  3307. data/node_modules/es-abstract/2024/AddValueToKeyedGroup.js +47 -0
  3308. data/node_modules/es-abstract/2024/AdvanceStringIndex.js +31 -0
  3309. data/node_modules/es-abstract/2024/ApplyStringOrNumericBinaryOperator.js +78 -0
  3310. data/node_modules/es-abstract/2024/ArrayBufferByteLength.js +38 -0
  3311. data/node_modules/es-abstract/2024/ArrayBufferCopyAndDetach.js +99 -0
  3312. data/node_modules/es-abstract/2024/ArrayCreate.js +54 -0
  3313. data/node_modules/es-abstract/2024/ArraySetLength.js +77 -0
  3314. data/node_modules/es-abstract/2024/ArraySpeciesCreate.js +49 -0
  3315. data/node_modules/es-abstract/2024/AsyncFromSyncIteratorContinuation.js +45 -0
  3316. data/node_modules/es-abstract/2024/AsyncIteratorClose.js +70 -0
  3317. data/node_modules/es-abstract/2024/BigInt/add.js +14 -0
  3318. data/node_modules/es-abstract/2024/BigInt/bitwiseAND.js +14 -0
  3319. data/node_modules/es-abstract/2024/BigInt/bitwiseNOT.js +15 -0
  3320. data/node_modules/es-abstract/2024/BigInt/bitwiseOR.js +14 -0
  3321. data/node_modules/es-abstract/2024/BigInt/bitwiseXOR.js +14 -0
  3322. data/node_modules/es-abstract/2024/BigInt/divide.js +20 -0
  3323. data/node_modules/es-abstract/2024/BigInt/equal.js +13 -0
  3324. data/node_modules/es-abstract/2024/BigInt/exponentiate.js +29 -0
  3325. data/node_modules/es-abstract/2024/BigInt/index.js +39 -0
  3326. data/node_modules/es-abstract/2024/BigInt/leftShift.js +14 -0
  3327. data/node_modules/es-abstract/2024/BigInt/lessThan.js +14 -0
  3328. data/node_modules/es-abstract/2024/BigInt/multiply.js +14 -0
  3329. data/node_modules/es-abstract/2024/BigInt/remainder.js +28 -0
  3330. data/node_modules/es-abstract/2024/BigInt/signedRightShift.js +15 -0
  3331. data/node_modules/es-abstract/2024/BigInt/subtract.js +14 -0
  3332. data/node_modules/es-abstract/2024/BigInt/toString.js +28 -0
  3333. data/node_modules/es-abstract/2024/BigInt/unaryMinus.js +22 -0
  3334. data/node_modules/es-abstract/2024/BigInt/unsignedRightShift.js +13 -0
  3335. data/node_modules/es-abstract/2024/BigIntBitwiseOp.js +63 -0
  3336. data/node_modules/es-abstract/2024/BinaryAnd.js +12 -0
  3337. data/node_modules/es-abstract/2024/BinaryOr.js +12 -0
  3338. data/node_modules/es-abstract/2024/BinaryXor.js +12 -0
  3339. data/node_modules/es-abstract/2024/ByteListBitwiseOp.js +43 -0
  3340. data/node_modules/es-abstract/2024/ByteListEqual.js +31 -0
  3341. data/node_modules/es-abstract/2024/Call.js +20 -0
  3342. data/node_modules/es-abstract/2024/CanBeHeldWeakly.js +16 -0
  3343. data/node_modules/es-abstract/2024/CanonicalNumericIndexString.js +19 -0
  3344. data/node_modules/es-abstract/2024/Canonicalize.js +52 -0
  3345. data/node_modules/es-abstract/2024/CharacterRange.js +31 -0
  3346. data/node_modules/es-abstract/2024/ClearKeptObjects.js +12 -0
  3347. data/node_modules/es-abstract/2024/CloneArrayBuffer.js +47 -0
  3348. data/node_modules/es-abstract/2024/CodePointAt.js +55 -0
  3349. data/node_modules/es-abstract/2024/CodePointsToString.js +25 -0
  3350. data/node_modules/es-abstract/2024/CompareArrayElements.js +50 -0
  3351. data/node_modules/es-abstract/2024/CompareTypedArrayElements.js +60 -0
  3352. data/node_modules/es-abstract/2024/CompletePropertyDescriptor.js +43 -0
  3353. data/node_modules/es-abstract/2024/CompletionRecord.js +51 -0
  3354. data/node_modules/es-abstract/2024/CopyDataProperties.js +68 -0
  3355. data/node_modules/es-abstract/2024/CreateAsyncFromSyncIterator.js +137 -0
  3356. data/node_modules/es-abstract/2024/CreateDataProperty.js +25 -0
  3357. data/node_modules/es-abstract/2024/CreateDataPropertyOrThrow.js +22 -0
  3358. data/node_modules/es-abstract/2024/CreateHTML.js +27 -0
  3359. data/node_modules/es-abstract/2024/CreateIterResultObject.js +15 -0
  3360. data/node_modules/es-abstract/2024/CreateListFromArrayLike.js +44 -0
  3361. data/node_modules/es-abstract/2024/CreateNonEnumerableDataPropertyOrThrow.js +27 -0
  3362. data/node_modules/es-abstract/2024/CreateRegExpStringIterator.js +101 -0
  3363. data/node_modules/es-abstract/2024/DateFromTime.js +52 -0
  3364. data/node_modules/es-abstract/2024/DateString.js +27 -0
  3365. data/node_modules/es-abstract/2024/Day.js +11 -0
  3366. data/node_modules/es-abstract/2024/DayFromYear.js +10 -0
  3367. data/node_modules/es-abstract/2024/DayWithinYear.js +11 -0
  3368. data/node_modules/es-abstract/2024/DaysInYear.js +18 -0
  3369. data/node_modules/es-abstract/2024/DefineMethodProperty.js +41 -0
  3370. data/node_modules/es-abstract/2024/DefinePropertyOrThrow.js +39 -0
  3371. data/node_modules/es-abstract/2024/DeletePropertyOrThrow.js +25 -0
  3372. data/node_modules/es-abstract/2024/DetachArrayBuffer.js +46 -0
  3373. data/node_modules/es-abstract/2024/EnumerableOwnProperties.js +43 -0
  3374. data/node_modules/es-abstract/2024/FindViaPredicate.js +42 -0
  3375. data/node_modules/es-abstract/2024/FlattenIntoArray.js +55 -0
  3376. data/node_modules/es-abstract/2024/FromPropertyDescriptor.js +16 -0
  3377. data/node_modules/es-abstract/2024/Get.js +23 -0
  3378. data/node_modules/es-abstract/2024/GetArrayBufferMaxByteLengthOption.js +21 -0
  3379. data/node_modules/es-abstract/2024/GetGlobalObject.js +9 -0
  3380. data/node_modules/es-abstract/2024/GetIterator.js +56 -0
  3381. data/node_modules/es-abstract/2024/GetIteratorFromMethod.js +28 -0
  3382. data/node_modules/es-abstract/2024/GetMatchIndexPair.js +24 -0
  3383. data/node_modules/es-abstract/2024/GetMatchString.js +26 -0
  3384. data/node_modules/es-abstract/2024/GetMethod.js +34 -0
  3385. data/node_modules/es-abstract/2024/GetOwnPropertyKeys.js +31 -0
  3386. data/node_modules/es-abstract/2024/GetPromiseResolve.js +20 -0
  3387. data/node_modules/es-abstract/2024/GetPrototypeFromConstructor.js +32 -0
  3388. data/node_modules/es-abstract/2024/GetStringIndex.js +29 -0
  3389. data/node_modules/es-abstract/2024/GetSubstitution.js +150 -0
  3390. data/node_modules/es-abstract/2024/GetV.js +23 -0
  3391. data/node_modules/es-abstract/2024/GetValueFromBuffer.js +97 -0
  3392. data/node_modules/es-abstract/2024/GetViewByteLength.js +45 -0
  3393. data/node_modules/es-abstract/2024/GroupBy.js +77 -0
  3394. data/node_modules/es-abstract/2024/HasEitherUnicodeFlag.js +18 -0
  3395. data/node_modules/es-abstract/2024/HasOwnProperty.js +20 -0
  3396. data/node_modules/es-abstract/2024/HasProperty.js +18 -0
  3397. data/node_modules/es-abstract/2024/HourFromTime.js +14 -0
  3398. data/node_modules/es-abstract/2024/InLeapYear.js +19 -0
  3399. data/node_modules/es-abstract/2024/InstallErrorCause.js +21 -0
  3400. data/node_modules/es-abstract/2024/InstanceofOperator.js +30 -0
  3401. data/node_modules/es-abstract/2024/InternalizeJSONProperty.js +68 -0
  3402. data/node_modules/es-abstract/2024/Invoke.js +22 -0
  3403. data/node_modules/es-abstract/2024/IsAccessorDescriptor.js +25 -0
  3404. data/node_modules/es-abstract/2024/IsArray.js +4 -0
  3405. data/node_modules/es-abstract/2024/IsArrayBufferViewOutOfBounds.js +30 -0
  3406. data/node_modules/es-abstract/2024/IsBigIntElementType.js +7 -0
  3407. data/node_modules/es-abstract/2024/IsCallable.js +5 -0
  3408. data/node_modules/es-abstract/2024/IsCompatiblePropertyDescriptor.js +9 -0
  3409. data/node_modules/es-abstract/2024/IsConcatSpreadable.js +25 -0
  3410. data/node_modules/es-abstract/2024/IsConstructor.js +40 -0
  3411. data/node_modules/es-abstract/2024/IsDataDescriptor.js +25 -0
  3412. data/node_modules/es-abstract/2024/IsDetachedBuffer.js +28 -0
  3413. data/node_modules/es-abstract/2024/IsExtensible.js +18 -0
  3414. data/node_modules/es-abstract/2024/IsFixedLengthArrayBuffer.js +29 -0
  3415. data/node_modules/es-abstract/2024/IsGenericDescriptor.js +26 -0
  3416. data/node_modules/es-abstract/2024/IsIntegralNumber.js +14 -0
  3417. data/node_modules/es-abstract/2024/IsLessThan.js +97 -0
  3418. data/node_modules/es-abstract/2024/IsLooselyEqual.js +58 -0
  3419. data/node_modules/es-abstract/2024/IsNoTearConfiguration.js +16 -0
  3420. data/node_modules/es-abstract/2024/IsPromise.js +24 -0
  3421. data/node_modules/es-abstract/2024/IsPropertyKey.js +7 -0
  3422. data/node_modules/es-abstract/2024/IsRegExp.js +24 -0
  3423. data/node_modules/es-abstract/2024/IsSharedArrayBuffer.js +17 -0
  3424. data/node_modules/es-abstract/2024/IsStrictlyEqual.js +16 -0
  3425. data/node_modules/es-abstract/2024/IsStringWellFormedUnicode.js +23 -0
  3426. data/node_modules/es-abstract/2024/IsTypedArrayOutOfBounds.js +54 -0
  3427. data/node_modules/es-abstract/2024/IsUnclampedIntegerElementType.js +12 -0
  3428. data/node_modules/es-abstract/2024/IsUnsignedElementType.js +11 -0
  3429. data/node_modules/es-abstract/2024/IsValidIntegerIndex.js +43 -0
  3430. data/node_modules/es-abstract/2024/IsViewOutOfBounds.js +45 -0
  3431. data/node_modules/es-abstract/2024/IsWordChar.js +44 -0
  3432. data/node_modules/es-abstract/2024/IteratorClose.js +62 -0
  3433. data/node_modules/es-abstract/2024/IteratorComplete.js +16 -0
  3434. data/node_modules/es-abstract/2024/IteratorNext.js +28 -0
  3435. data/node_modules/es-abstract/2024/IteratorStep.js +21 -0
  3436. data/node_modules/es-abstract/2024/IteratorStepValue.js +49 -0
  3437. data/node_modules/es-abstract/2024/IteratorToList.js +31 -0
  3438. data/node_modules/es-abstract/2024/IteratorValue.js +16 -0
  3439. data/node_modules/es-abstract/2024/KeyForSymbol.js +16 -0
  3440. data/node_modules/es-abstract/2024/LengthOfArrayLike.js +18 -0
  3441. data/node_modules/es-abstract/2024/MakeDataViewWithBufferWitnessRecord.js +26 -0
  3442. data/node_modules/es-abstract/2024/MakeDate.js +13 -0
  3443. data/node_modules/es-abstract/2024/MakeDay.js +36 -0
  3444. data/node_modules/es-abstract/2024/MakeFullYear.js +26 -0
  3445. data/node_modules/es-abstract/2024/MakeMatchIndicesIndexPairArray.js +66 -0
  3446. data/node_modules/es-abstract/2024/MakeTime.js +23 -0
  3447. data/node_modules/es-abstract/2024/MakeTypedArrayWithBufferWitnessRecord.js +26 -0
  3448. data/node_modules/es-abstract/2024/MinFromTime.js +14 -0
  3449. data/node_modules/es-abstract/2024/MonthFromTime.js +47 -0
  3450. data/node_modules/es-abstract/2024/NewPromiseCapability.js +34 -0
  3451. data/node_modules/es-abstract/2024/NormalCompletion.js +9 -0
  3452. data/node_modules/es-abstract/2024/Number/add.js +32 -0
  3453. data/node_modules/es-abstract/2024/Number/bitwiseAND.js +14 -0
  3454. data/node_modules/es-abstract/2024/Number/bitwiseNOT.js +16 -0
  3455. data/node_modules/es-abstract/2024/Number/bitwiseOR.js +14 -0
  3456. data/node_modules/es-abstract/2024/Number/bitwiseXOR.js +14 -0
  3457. data/node_modules/es-abstract/2024/Number/divide.js +19 -0
  3458. data/node_modules/es-abstract/2024/Number/equal.js +18 -0
  3459. data/node_modules/es-abstract/2024/Number/exponentiate.js +76 -0
  3460. data/node_modules/es-abstract/2024/Number/index.js +43 -0
  3461. data/node_modules/es-abstract/2024/Number/leftShift.js +22 -0
  3462. data/node_modules/es-abstract/2024/Number/lessThan.js +22 -0
  3463. data/node_modules/es-abstract/2024/Number/multiply.js +29 -0
  3464. data/node_modules/es-abstract/2024/Number/remainder.js +39 -0
  3465. data/node_modules/es-abstract/2024/Number/sameValue.js +19 -0
  3466. data/node_modules/es-abstract/2024/Number/sameValueZero.js +20 -0
  3467. data/node_modules/es-abstract/2024/Number/signedRightShift.js +22 -0
  3468. data/node_modules/es-abstract/2024/Number/subtract.js +15 -0
  3469. data/node_modules/es-abstract/2024/Number/toString.js +22 -0
  3470. data/node_modules/es-abstract/2024/Number/unaryMinus.js +17 -0
  3471. data/node_modules/es-abstract/2024/Number/unsignedRightShift.js +22 -0
  3472. data/node_modules/es-abstract/2024/NumberBitwiseOp.js +26 -0
  3473. data/node_modules/es-abstract/2024/NumberToBigInt.js +25 -0
  3474. data/node_modules/es-abstract/2024/NumericToRawBytes.js +77 -0
  3475. data/node_modules/es-abstract/2024/ObjectDefineProperties.js +37 -0
  3476. data/node_modules/es-abstract/2024/OrdinaryCreateFromConstructor.js +20 -0
  3477. data/node_modules/es-abstract/2024/OrdinaryDefineOwnProperty.js +54 -0
  3478. data/node_modules/es-abstract/2024/OrdinaryGetOwnProperty.js +42 -0
  3479. data/node_modules/es-abstract/2024/OrdinaryGetPrototypeOf.js +19 -0
  3480. data/node_modules/es-abstract/2024/OrdinaryHasInstance.js +23 -0
  3481. data/node_modules/es-abstract/2024/OrdinaryHasProperty.js +18 -0
  3482. data/node_modules/es-abstract/2024/OrdinaryObjectCreate.js +56 -0
  3483. data/node_modules/es-abstract/2024/OrdinarySetPrototypeOf.js +50 -0
  3484. data/node_modules/es-abstract/2024/OrdinaryToPrimitive.js +36 -0
  3485. data/node_modules/es-abstract/2024/ParseHexOctet.js +43 -0
  3486. data/node_modules/es-abstract/2024/PromiseResolve.js +18 -0
  3487. data/node_modules/es-abstract/2024/QuoteJSONString.js +51 -0
  3488. data/node_modules/es-abstract/2024/RawBytesToNumeric.js +83 -0
  3489. data/node_modules/es-abstract/2024/RegExpCreate.js +21 -0
  3490. data/node_modules/es-abstract/2024/RegExpExec.js +30 -0
  3491. data/node_modules/es-abstract/2024/RegExpHasFlag.js +38 -0
  3492. data/node_modules/es-abstract/2024/RequireObjectCoercible.js +3 -0
  3493. data/node_modules/es-abstract/2024/SameValue.js +13 -0
  3494. data/node_modules/es-abstract/2024/SameValueNonNumber.js +19 -0
  3495. data/node_modules/es-abstract/2024/SameValueZero.js +9 -0
  3496. data/node_modules/es-abstract/2024/SecFromTime.js +14 -0
  3497. data/node_modules/es-abstract/2024/Set.js +45 -0
  3498. data/node_modules/es-abstract/2024/SetFunctionLength.js +29 -0
  3499. data/node_modules/es-abstract/2024/SetFunctionName.js +40 -0
  3500. data/node_modules/es-abstract/2024/SetIntegrityLevel.js +57 -0
  3501. data/node_modules/es-abstract/2024/SetTypedArrayFromArrayLike.js +65 -0
  3502. data/node_modules/es-abstract/2024/SetTypedArrayFromTypedArray.js +131 -0
  3503. data/node_modules/es-abstract/2024/SetValueInBuffer.js +93 -0
  3504. data/node_modules/es-abstract/2024/SortIndexedProperties.js +51 -0
  3505. data/node_modules/es-abstract/2024/SpeciesConstructor.js +32 -0
  3506. data/node_modules/es-abstract/2024/StringCreate.js +39 -0
  3507. data/node_modules/es-abstract/2024/StringGetOwnProperty.js +46 -0
  3508. data/node_modules/es-abstract/2024/StringIndexOf.js +37 -0
  3509. data/node_modules/es-abstract/2024/StringPad.js +45 -0
  3510. data/node_modules/es-abstract/2024/StringPaddingBuiltinsImpl.js +27 -0
  3511. data/node_modules/es-abstract/2024/StringToBigInt.js +23 -0
  3512. data/node_modules/es-abstract/2024/StringToCodePoints.js +26 -0
  3513. data/node_modules/es-abstract/2024/StringToNumber.js +43 -0
  3514. data/node_modules/es-abstract/2024/SymbolDescriptiveString.js +16 -0
  3515. data/node_modules/es-abstract/2024/SystemTimeZoneIdentifier.js +18 -0
  3516. data/node_modules/es-abstract/2024/TestIntegrityLevel.js +40 -0
  3517. data/node_modules/es-abstract/2024/ThisBigIntValue.js +18 -0
  3518. data/node_modules/es-abstract/2024/ThisBooleanValue.js +13 -0
  3519. data/node_modules/es-abstract/2024/ThisNumberValue.js +15 -0
  3520. data/node_modules/es-abstract/2024/ThisStringValue.js +13 -0
  3521. data/node_modules/es-abstract/2024/ThisSymbolValue.js +20 -0
  3522. data/node_modules/es-abstract/2024/ThrowCompletion.js +9 -0
  3523. data/node_modules/es-abstract/2024/TimeClip.js +21 -0
  3524. data/node_modules/es-abstract/2024/TimeFromYear.js +11 -0
  3525. data/node_modules/es-abstract/2024/TimeString.js +26 -0
  3526. data/node_modules/es-abstract/2024/TimeWithinDay.js +12 -0
  3527. data/node_modules/es-abstract/2024/TimeZoneString.js +43 -0
  3528. data/node_modules/es-abstract/2024/ToBigInt.js +51 -0
  3529. data/node_modules/es-abstract/2024/ToBigInt64.js +25 -0
  3530. data/node_modules/es-abstract/2024/ToBigUint64.js +22 -0
  3531. data/node_modules/es-abstract/2024/ToBoolean.js +5 -0
  3532. data/node_modules/es-abstract/2024/ToDateString.js +21 -0
  3533. data/node_modules/es-abstract/2024/ToIndex.js +20 -0
  3534. data/node_modules/es-abstract/2024/ToInt16.js +21 -0
  3535. data/node_modules/es-abstract/2024/ToInt32.js +23 -0
  3536. data/node_modules/es-abstract/2024/ToInt8.js +19 -0
  3537. data/node_modules/es-abstract/2024/ToIntegerOrInfinity.js +16 -0
  3538. data/node_modules/es-abstract/2024/ToLength.js +12 -0
  3539. data/node_modules/es-abstract/2024/ToNumber.js +26 -0
  3540. data/node_modules/es-abstract/2024/ToNumeric.js +20 -0
  3541. data/node_modules/es-abstract/2024/ToObject.js +5 -0
  3542. data/node_modules/es-abstract/2024/ToPrimitive.js +12 -0
  3543. data/node_modules/es-abstract/2024/ToPropertyDescriptor.js +50 -0
  3544. data/node_modules/es-abstract/2024/ToPropertyKey.js +15 -0
  3545. data/node_modules/es-abstract/2024/ToString.js +15 -0
  3546. data/node_modules/es-abstract/2024/ToUint16.js +21 -0
  3547. data/node_modules/es-abstract/2024/ToUint32.js +21 -0
  3548. data/node_modules/es-abstract/2024/ToUint8.js +19 -0
  3549. data/node_modules/es-abstract/2024/ToUint8Clamp.js +26 -0
  3550. data/node_modules/es-abstract/2024/ToZeroPaddedDecimalString.js +20 -0
  3551. data/node_modules/es-abstract/2024/TrimString.js +27 -0
  3552. data/node_modules/es-abstract/2024/Type.js +15 -0
  3553. data/node_modules/es-abstract/2024/TypedArrayByteLength.js +39 -0
  3554. data/node_modules/es-abstract/2024/TypedArrayCreateFromConstructor.js +52 -0
  3555. data/node_modules/es-abstract/2024/TypedArrayCreateSameType.js +35 -0
  3556. data/node_modules/es-abstract/2024/TypedArrayElementSize.js +25 -0
  3557. data/node_modules/es-abstract/2024/TypedArrayElementType.js +23 -0
  3558. data/node_modules/es-abstract/2024/TypedArrayGetElement.js +37 -0
  3559. data/node_modules/es-abstract/2024/TypedArrayLength.js +49 -0
  3560. data/node_modules/es-abstract/2024/TypedArraySetElement.js +42 -0
  3561. data/node_modules/es-abstract/2024/TypedArraySpeciesCreate.js +37 -0
  3562. data/node_modules/es-abstract/2024/UTF16EncodeCodePoint.js +25 -0
  3563. data/node_modules/es-abstract/2024/UTF16SurrogatePairToCodePoint.js +19 -0
  3564. data/node_modules/es-abstract/2024/UnicodeEscape.js +25 -0
  3565. data/node_modules/es-abstract/2024/ValidateAndApplyPropertyDescriptor.js +172 -0
  3566. data/node_modules/es-abstract/2024/ValidateAtomicAccess.js +43 -0
  3567. data/node_modules/es-abstract/2024/ValidateAtomicAccessOnIntegerTypedArray.js +19 -0
  3568. data/node_modules/es-abstract/2024/ValidateIntegerTypedArray.js +31 -0
  3569. data/node_modules/es-abstract/2024/ValidateTypedArray.js +32 -0
  3570. data/node_modules/es-abstract/2024/WeakRefDeref.js +23 -0
  3571. data/node_modules/es-abstract/2024/WeekDay.js +10 -0
  3572. data/node_modules/es-abstract/2024/WordCharacters.js +47 -0
  3573. data/node_modules/es-abstract/2024/YearFromTime.js +16 -0
  3574. data/node_modules/es-abstract/2024/abs.js +11 -0
  3575. data/node_modules/es-abstract/2024/clamp.js +16 -0
  3576. data/node_modules/es-abstract/2024/floor.js +14 -0
  3577. data/node_modules/es-abstract/2024/max.js +7 -0
  3578. data/node_modules/es-abstract/2024/min.js +7 -0
  3579. data/node_modules/es-abstract/2024/modulo.js +9 -0
  3580. data/node_modules/es-abstract/2024/msFromTime.js +11 -0
  3581. data/node_modules/es-abstract/2024/substring.js +17 -0
  3582. data/node_modules/es-abstract/2024/tables/typed-array-objects.js +35 -0
  3583. data/node_modules/es-abstract/2024/truncate.js +15 -0
  3584. data/node_modules/es-abstract/5/AbstractRelationalComparison.js +3 -4
  3585. data/node_modules/es-abstract/5/Canonicalize.js +3 -7
  3586. data/node_modules/es-abstract/5/CheckObjectCoercible.js +3 -8
  3587. data/node_modules/es-abstract/5/DateFromTime.js +1 -3
  3588. data/node_modules/es-abstract/5/FromPropertyDescriptor.js +5 -6
  3589. data/node_modules/es-abstract/5/InLeapYear.js +1 -3
  3590. data/node_modules/es-abstract/5/IsAccessorDescriptor.js +7 -5
  3591. data/node_modules/es-abstract/5/IsDataDescriptor.js +7 -5
  3592. data/node_modules/es-abstract/5/IsGenericDescriptor.js +6 -3
  3593. data/node_modules/es-abstract/5/IsPropertyDescriptor.js +2 -10
  3594. data/node_modules/es-abstract/5/ToObject.js +1 -10
  3595. data/node_modules/es-abstract/5/ToPropertyDescriptor.js +9 -11
  3596. data/node_modules/es-abstract/CHANGELOG.md +74 -0
  3597. data/node_modules/es-abstract/es2015.js +3 -0
  3598. data/node_modules/es-abstract/es2016.js +3 -0
  3599. data/node_modules/es-abstract/es2017.js +3 -0
  3600. data/node_modules/es-abstract/es2018.js +4 -0
  3601. data/node_modules/es-abstract/es2019.js +4 -0
  3602. data/node_modules/es-abstract/es2020.js +4 -0
  3603. data/node_modules/es-abstract/es2021.js +4 -0
  3604. data/node_modules/es-abstract/es2022.js +5 -0
  3605. data/node_modules/es-abstract/es2023.js +6 -0
  3606. data/node_modules/es-abstract/es2024.js +250 -0
  3607. data/node_modules/es-abstract/helpers/DefineOwnProperty.js +1 -3
  3608. data/node_modules/es-abstract/helpers/assertRecord.js +15 -70
  3609. data/node_modules/es-abstract/helpers/assign.js +2 -2
  3610. data/node_modules/es-abstract/helpers/bytesAsFloat32.js +1 -1
  3611. data/node_modules/es-abstract/helpers/bytesAsFloat64.js +1 -1
  3612. data/node_modules/es-abstract/helpers/bytesAsInteger.js +1 -1
  3613. data/node_modules/es-abstract/helpers/isFullyPopulatedPropertyDescriptor.js +3 -1
  3614. data/node_modules/es-abstract/helpers/isStringOrHole.js +2 -0
  3615. data/node_modules/es-abstract/helpers/isStringOrUndefined.js +5 -0
  3616. data/node_modules/es-abstract/helpers/records/async-generator-request-record.js +13 -0
  3617. data/node_modules/es-abstract/helpers/records/data-view-with-buffer-witness-record.js +18 -0
  3618. data/node_modules/es-abstract/helpers/records/iterator-record.js +13 -0
  3619. data/node_modules/es-abstract/helpers/records/match-record.js +18 -0
  3620. data/node_modules/es-abstract/helpers/records/promise-capability-record.js +16 -0
  3621. data/node_modules/es-abstract/helpers/records/property-descriptor.js +36 -0
  3622. data/node_modules/es-abstract/helpers/records/regexp-record.js +23 -0
  3623. data/node_modules/es-abstract/helpers/records/typed-array-with-buffer-witness-record.js +18 -0
  3624. data/node_modules/es-abstract/index.js +3 -1
  3625. data/node_modules/es-abstract/operations/2024.js +1537 -0
  3626. data/node_modules/es-abstract/package.json +56 -42
  3627. data/node_modules/es-define-property/CHANGELOG.md +15 -0
  3628. data/node_modules/es-define-property/LICENSE +21 -0
  3629. data/node_modules/es-define-property/README.md +49 -0
  3630. data/node_modules/es-define-property/index.d.ts +3 -0
  3631. data/node_modules/es-define-property/index.js +16 -0
  3632. data/node_modules/es-define-property/package.json +81 -0
  3633. data/node_modules/es-define-property/test/index.js +55 -0
  3634. data/node_modules/es-define-property/tsconfig.json +50 -0
  3635. data/node_modules/es-errors/CHANGELOG.md +40 -0
  3636. data/node_modules/es-errors/LICENSE +21 -0
  3637. data/node_modules/es-errors/README.md +55 -0
  3638. data/node_modules/es-errors/eval.d.ts +3 -0
  3639. data/node_modules/es-errors/eval.js +4 -0
  3640. data/node_modules/es-errors/index.d.ts +3 -0
  3641. data/node_modules/es-errors/index.js +4 -0
  3642. data/node_modules/es-errors/package.json +80 -0
  3643. data/node_modules/es-errors/range.d.ts +3 -0
  3644. data/node_modules/es-errors/range.js +4 -0
  3645. data/node_modules/es-errors/ref.d.ts +3 -0
  3646. data/node_modules/es-errors/ref.js +4 -0
  3647. data/node_modules/es-errors/syntax.d.ts +3 -0
  3648. data/node_modules/es-errors/syntax.js +4 -0
  3649. data/node_modules/es-errors/test/index.js +19 -0
  3650. data/node_modules/es-errors/tsconfig.json +49 -0
  3651. data/node_modules/es-errors/type.d.ts +3 -0
  3652. data/node_modules/es-errors/type.js +4 -0
  3653. data/node_modules/es-errors/uri.d.ts +3 -0
  3654. data/node_modules/es-errors/uri.js +4 -0
  3655. data/node_modules/es-object-atoms/CHANGELOG.md +16 -0
  3656. data/node_modules/es-object-atoms/LICENSE +21 -0
  3657. data/node_modules/es-object-atoms/README.md +56 -0
  3658. data/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  3659. data/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  3660. data/node_modules/es-object-atoms/ToObject.d.ts +3 -0
  3661. data/node_modules/es-object-atoms/ToObject.js +10 -0
  3662. data/node_modules/es-object-atoms/index.d.ts +3 -0
  3663. data/node_modules/es-object-atoms/index.js +4 -0
  3664. data/node_modules/es-object-atoms/package.json +79 -0
  3665. data/node_modules/es-object-atoms/test/index.js +28 -0
  3666. data/node_modules/es-object-atoms/tsconfig.json +6 -0
  3667. data/node_modules/es-set-tostringtag/CHANGELOG.md +17 -0
  3668. data/node_modules/es-set-tostringtag/index.d.ts +7 -0
  3669. data/node_modules/es-set-tostringtag/index.js +3 -2
  3670. data/node_modules/es-set-tostringtag/package.json +13 -8
  3671. data/node_modules/es-set-tostringtag/test/index.js +5 -3
  3672. data/node_modules/es-set-tostringtag/tsconfig.json +49 -0
  3673. data/node_modules/es-shim-unscopables/CHANGELOG.md +14 -0
  3674. data/node_modules/es-shim-unscopables/index.js +2 -2
  3675. data/node_modules/es-shim-unscopables/package.json +14 -7
  3676. data/node_modules/es-shim-unscopables/test/index.js +2 -2
  3677. data/node_modules/escalade/dist/index.js +22 -0
  3678. data/node_modules/escalade/dist/index.mjs +22 -0
  3679. data/node_modules/escalade/index.d.ts +3 -0
  3680. data/node_modules/escalade/license +9 -0
  3681. data/node_modules/escalade/package.json +63 -0
  3682. data/node_modules/escalade/readme.md +211 -0
  3683. data/node_modules/escalade/sync/index.d.ts +2 -0
  3684. data/node_modules/escalade/sync/index.js +18 -0
  3685. data/node_modules/escalade/sync/index.mjs +18 -0
  3686. data/node_modules/eslint/README.md +2 -2
  3687. data/node_modules/eslint/bin/eslint.js +1 -1
  3688. data/node_modules/eslint/lib/cli-engine/cli-engine.js +2 -2
  3689. data/node_modules/eslint/lib/cli-engine/file-enumerator.js +2 -2
  3690. data/node_modules/eslint/lib/cli-engine/lint-result-cache.js +2 -2
  3691. data/node_modules/eslint/lib/cli-engine/load-rules.js +2 -2
  3692. data/node_modules/eslint/lib/cli.js +3 -3
  3693. data/node_modules/eslint/lib/eslint/eslint-helpers.js +2 -2
  3694. data/node_modules/eslint/lib/eslint/eslint.js +5 -5
  3695. data/node_modules/eslint/lib/eslint/legacy-eslint.js +3 -3
  3696. data/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +1 -1
  3697. data/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +1 -1
  3698. data/node_modules/eslint/lib/linter/linter.js +1 -1
  3699. data/node_modules/eslint/lib/linter/report-translator.js +1 -1
  3700. data/node_modules/eslint/lib/rule-tester/rule-tester.js +3 -3
  3701. data/node_modules/eslint/lib/rules/func-style.js +42 -4
  3702. data/node_modules/eslint/lib/rules/line-comment-position.js +3 -0
  3703. data/node_modules/eslint/lib/rules/multiline-comment-style.js +3 -1
  3704. data/node_modules/eslint/lib/rules/no-constant-binary-expression.js +1 -1
  3705. data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +79 -27
  3706. data/node_modules/eslint/lib/rules/no-misleading-character-class.js +111 -30
  3707. data/node_modules/eslint/lib/rules/no-restricted-exports.js +13 -2
  3708. data/node_modules/eslint/lib/rules/object-shorthand.js +21 -20
  3709. data/node_modules/eslint/lib/shared/runtime-info.js +2 -2
  3710. data/node_modules/eslint/lib/source-code/token-store/index.js +1 -1
  3711. data/node_modules/eslint/messages/config-file-missing.js +16 -0
  3712. data/node_modules/eslint/messages/eslintrc-incompat.js +22 -1
  3713. data/node_modules/eslint/package.json +5 -5
  3714. data/node_modules/eslint-module-utils/CHANGELOG.md +10 -0
  3715. data/node_modules/eslint-module-utils/ModuleCache.d.ts +22 -0
  3716. data/node_modules/eslint-module-utils/ModuleCache.js +20 -18
  3717. data/node_modules/eslint-module-utils/declaredScope.d.ts +8 -0
  3718. data/node_modules/eslint-module-utils/declaredScope.js +2 -1
  3719. data/node_modules/eslint-module-utils/hash.d.ts +14 -0
  3720. data/node_modules/eslint-module-utils/hash.js +6 -2
  3721. data/node_modules/eslint-module-utils/ignore.d.ts +12 -0
  3722. data/node_modules/eslint-module-utils/ignore.js +11 -3
  3723. data/node_modules/eslint-module-utils/module-require.d.ts +3 -0
  3724. data/node_modules/eslint-module-utils/module-require.js +5 -0
  3725. data/node_modules/eslint-module-utils/moduleVisitor.d.ts +26 -0
  3726. data/node_modules/eslint-module-utils/moduleVisitor.js +31 -20
  3727. data/node_modules/eslint-module-utils/package.json +13 -1
  3728. data/node_modules/eslint-module-utils/parse.d.ts +11 -0
  3729. data/node_modules/eslint-module-utils/parse.js +30 -5
  3730. data/node_modules/eslint-module-utils/pkgDir.d.ts +3 -0
  3731. data/node_modules/eslint-module-utils/pkgDir.js +1 -0
  3732. data/node_modules/eslint-module-utils/pkgUp.d.ts +3 -0
  3733. data/node_modules/eslint-module-utils/pkgUp.js +4 -0
  3734. data/node_modules/eslint-module-utils/readPkgUp.d.ts +5 -0
  3735. data/node_modules/eslint-module-utils/readPkgUp.js +2 -0
  3736. data/node_modules/eslint-module-utils/resolve.d.ts +30 -0
  3737. data/node_modules/eslint-module-utils/resolve.js +42 -23
  3738. data/node_modules/eslint-module-utils/tsconfig.json +49 -0
  3739. data/node_modules/eslint-module-utils/types.d.ts +9 -0
  3740. data/node_modules/eslint-module-utils/unambiguous.d.ts +7 -0
  3741. data/node_modules/eslint-module-utils/unambiguous.js +2 -3
  3742. data/node_modules/eslint-module-utils/visit.d.ts +9 -0
  3743. data/node_modules/eslint-module-utils/visit.js +9 -4
  3744. data/node_modules/eslint-plugin-align-assignments/README.md +49 -0
  3745. data/node_modules/eslint-plugin-align-assignments/docs/rules/align-assignment.md +36 -0
  3746. data/node_modules/eslint-plugin-align-assignments/lib/index.js +5 -0
  3747. data/node_modules/eslint-plugin-align-assignments/lib/rules/align-assignments.js +170 -0
  3748. data/node_modules/eslint-plugin-align-assignments/package.json +22 -0
  3749. data/node_modules/eslint-plugin-align-assignments/tests/lib/rules/align-assignments_test.js +521 -0
  3750. data/node_modules/eslint-plugin-align-import/LICENSE +21 -0
  3751. data/node_modules/eslint-plugin-align-import/README.md +98 -0
  3752. data/node_modules/eslint-plugin-align-import/docs/rules/align-import.md +52 -0
  3753. data/node_modules/eslint-plugin-align-import/docs/rules/trim-import.md +32 -0
  3754. data/node_modules/eslint-plugin-align-import/lib/index.js +9 -0
  3755. data/node_modules/eslint-plugin-align-import/lib/rules/align-import.js +163 -0
  3756. data/node_modules/eslint-plugin-align-import/lib/rules/trim-import.js +139 -0
  3757. data/node_modules/eslint-plugin-align-import/package.json +28 -0
  3758. data/node_modules/eslint-plugin-align-import/tests/lib/rules/align-import.js +304 -0
  3759. data/node_modules/eslint-plugin-align-import/tests/lib/rules/trim-import.js +214 -0
  3760. data/node_modules/eslint-plugin-import/CHANGELOG.md +1925 -0
  3761. data/node_modules/eslint-plugin-import/CONTRIBUTING.md +84 -0
  3762. data/node_modules/eslint-plugin-import/LICENSE +22 -0
  3763. data/node_modules/eslint-plugin-import/README.md +500 -0
  3764. data/node_modules/eslint-plugin-import/RELEASE.md +54 -0
  3765. data/node_modules/eslint-plugin-import/SECURITY.md +11 -0
  3766. data/node_modules/eslint-plugin-import/config/electron.js +8 -0
  3767. data/node_modules/eslint-plugin-import/config/errors.js +14 -0
  3768. data/node_modules/eslint-plugin-import/config/react-native.js +13 -0
  3769. data/node_modules/eslint-plugin-import/config/react.js +18 -0
  3770. data/node_modules/eslint-plugin-import/config/recommended.js +28 -0
  3771. data/node_modules/eslint-plugin-import/config/stage-0.js +12 -0
  3772. data/node_modules/eslint-plugin-import/config/typescript.js +34 -0
  3773. data/node_modules/eslint-plugin-import/config/warnings.js +12 -0
  3774. data/node_modules/eslint-plugin-import/docs/rules/consistent-type-specifier-style.md +91 -0
  3775. data/node_modules/eslint-plugin-import/docs/rules/default.md +72 -0
  3776. data/node_modules/eslint-plugin-import/docs/rules/dynamic-import-chunkname.md +92 -0
  3777. data/node_modules/eslint-plugin-import/docs/rules/export.md +37 -0
  3778. data/node_modules/eslint-plugin-import/docs/rules/exports-last.md +51 -0
  3779. data/node_modules/eslint-plugin-import/docs/rules/extensions.md +174 -0
  3780. data/node_modules/eslint-plugin-import/docs/rules/first.md +75 -0
  3781. data/node_modules/eslint-plugin-import/docs/rules/group-exports.md +118 -0
  3782. data/node_modules/eslint-plugin-import/docs/rules/imports-first.md +9 -0
  3783. data/node_modules/eslint-plugin-import/docs/rules/max-dependencies.md +70 -0
  3784. data/node_modules/eslint-plugin-import/docs/rules/named.md +102 -0
  3785. data/node_modules/eslint-plugin-import/docs/rules/namespace.md +106 -0
  3786. data/node_modules/eslint-plugin-import/docs/rules/newline-after-import.md +167 -0
  3787. data/node_modules/eslint-plugin-import/docs/rules/no-absolute-path.md +54 -0
  3788. data/node_modules/eslint-plugin-import/docs/rules/no-amd.md +37 -0
  3789. data/node_modules/eslint-plugin-import/docs/rules/no-anonymous-default-export.md +83 -0
  3790. data/node_modules/eslint-plugin-import/docs/rules/no-commonjs.md +96 -0
  3791. data/node_modules/eslint-plugin-import/docs/rules/no-cycle.md +111 -0
  3792. data/node_modules/eslint-plugin-import/docs/rules/no-default-export.md +65 -0
  3793. data/node_modules/eslint-plugin-import/docs/rules/no-deprecated.md +62 -0
  3794. data/node_modules/eslint-plugin-import/docs/rules/no-duplicates.md +109 -0
  3795. data/node_modules/eslint-plugin-import/docs/rules/no-dynamic-require.md +25 -0
  3796. data/node_modules/eslint-plugin-import/docs/rules/no-empty-named-blocks.md +49 -0
  3797. data/node_modules/eslint-plugin-import/docs/rules/no-extraneous-dependencies.md +139 -0
  3798. data/node_modules/eslint-plugin-import/docs/rules/no-import-module-exports.md +81 -0
  3799. data/node_modules/eslint-plugin-import/docs/rules/no-internal-modules.md +136 -0
  3800. data/node_modules/eslint-plugin-import/docs/rules/no-mutable-exports.md +54 -0
  3801. data/node_modules/eslint-plugin-import/docs/rules/no-named-as-default-member.md +52 -0
  3802. data/node_modules/eslint-plugin-import/docs/rules/no-named-as-default.md +53 -0
  3803. data/node_modules/eslint-plugin-import/docs/rules/no-named-default.md +36 -0
  3804. data/node_modules/eslint-plugin-import/docs/rules/no-named-export.md +79 -0
  3805. data/node_modules/eslint-plugin-import/docs/rules/no-namespace.md +44 -0
  3806. data/node_modules/eslint-plugin-import/docs/rules/no-nodejs-modules.md +42 -0
  3807. data/node_modules/eslint-plugin-import/docs/rules/no-relative-packages.md +70 -0
  3808. data/node_modules/eslint-plugin-import/docs/rules/no-relative-parent-imports.md +123 -0
  3809. data/node_modules/eslint-plugin-import/docs/rules/no-restricted-paths.md +198 -0
  3810. data/node_modules/eslint-plugin-import/docs/rules/no-self-import.md +32 -0
  3811. data/node_modules/eslint-plugin-import/docs/rules/no-unassigned-import.md +60 -0
  3812. data/node_modules/eslint-plugin-import/docs/rules/no-unresolved.md +110 -0
  3813. data/node_modules/eslint-plugin-import/docs/rules/no-unused-modules.md +125 -0
  3814. data/node_modules/eslint-plugin-import/docs/rules/no-useless-path-segments.md +85 -0
  3815. data/node_modules/eslint-plugin-import/docs/rules/no-webpack-loader-syntax.md +39 -0
  3816. data/node_modules/eslint-plugin-import/docs/rules/order.md +365 -0
  3817. data/node_modules/eslint-plugin-import/docs/rules/prefer-default-export.md +185 -0
  3818. data/node_modules/eslint-plugin-import/docs/rules/unambiguous.md +57 -0
  3819. data/node_modules/eslint-plugin-import/lib/ExportMap.js +856 -0
  3820. data/node_modules/eslint-plugin-import/lib/core/importType.js +129 -0
  3821. data/node_modules/eslint-plugin-import/lib/core/packagePath.js +22 -0
  3822. data/node_modules/eslint-plugin-import/lib/core/staticRequire.js +11 -0
  3823. data/node_modules/eslint-plugin-import/lib/docsUrl.js +8 -0
  3824. data/node_modules/eslint-plugin-import/lib/importDeclaration.js +5 -0
  3825. data/node_modules/eslint-plugin-import/lib/index.js +71 -0
  3826. data/node_modules/eslint-plugin-import/lib/rules/consistent-type-specifier-style.js +221 -0
  3827. data/node_modules/eslint-plugin-import/lib/rules/default.js +40 -0
  3828. data/node_modules/eslint-plugin-import/lib/rules/dynamic-import-chunkname.js +120 -0
  3829. data/node_modules/eslint-plugin-import/lib/rules/export.js +250 -0
  3830. data/node_modules/eslint-plugin-import/lib/rules/exports-last.js +40 -0
  3831. data/node_modules/eslint-plugin-import/lib/rules/extensions.js +193 -0
  3832. data/node_modules/eslint-plugin-import/lib/rules/first.js +144 -0
  3833. data/node_modules/eslint-plugin-import/lib/rules/group-exports.js +155 -0
  3834. data/node_modules/eslint-plugin-import/lib/rules/imports-first.js +16 -0
  3835. data/node_modules/eslint-plugin-import/lib/rules/max-dependencies.js +60 -0
  3836. data/node_modules/eslint-plugin-import/lib/rules/named.js +143 -0
  3837. data/node_modules/eslint-plugin-import/lib/rules/namespace.js +218 -0
  3838. data/node_modules/eslint-plugin-import/lib/rules/newline-after-import.js +237 -0
  3839. data/node_modules/eslint-plugin-import/lib/rules/no-absolute-path.js +40 -0
  3840. data/node_modules/eslint-plugin-import/lib/rules/no-amd.js +47 -0
  3841. data/node_modules/eslint-plugin-import/lib/rules/no-anonymous-default-export.js +103 -0
  3842. data/node_modules/eslint-plugin-import/lib/rules/no-commonjs.js +141 -0
  3843. data/node_modules/eslint-plugin-import/lib/rules/no-cycle.js +158 -0
  3844. data/node_modules/eslint-plugin-import/lib/rules/no-default-export.js +43 -0
  3845. data/node_modules/eslint-plugin-import/lib/rules/no-deprecated.js +138 -0
  3846. data/node_modules/eslint-plugin-import/lib/rules/no-duplicates.js +354 -0
  3847. data/node_modules/eslint-plugin-import/lib/rules/no-dynamic-require.js +77 -0
  3848. data/node_modules/eslint-plugin-import/lib/rules/no-empty-named-blocks.js +105 -0
  3849. data/node_modules/eslint-plugin-import/lib/rules/no-extraneous-dependencies.js +301 -0
  3850. data/node_modules/eslint-plugin-import/lib/rules/no-import-module-exports.js +85 -0
  3851. data/node_modules/eslint-plugin-import/lib/rules/no-internal-modules.js +144 -0
  3852. data/node_modules/eslint-plugin-import/lib/rules/no-mutable-exports.js +59 -0
  3853. data/node_modules/eslint-plugin-import/lib/rules/no-named-as-default-member.js +96 -0
  3854. data/node_modules/eslint-plugin-import/lib/rules/no-named-as-default.js +45 -0
  3855. data/node_modules/eslint-plugin-import/lib/rules/no-named-default.js +31 -0
  3856. data/node_modules/eslint-plugin-import/lib/rules/no-named-export.js +39 -0
  3857. data/node_modules/eslint-plugin-import/lib/rules/no-namespace.js +175 -0
  3858. data/node_modules/eslint-plugin-import/lib/rules/no-nodejs-modules.js +44 -0
  3859. data/node_modules/eslint-plugin-import/lib/rules/no-relative-packages.js +71 -0
  3860. data/node_modules/eslint-plugin-import/lib/rules/no-relative-parent-imports.js +48 -0
  3861. data/node_modules/eslint-plugin-import/lib/rules/no-restricted-paths.js +245 -0
  3862. data/node_modules/eslint-plugin-import/lib/rules/no-self-import.js +39 -0
  3863. data/node_modules/eslint-plugin-import/lib/rules/no-unassigned-import.js +79 -0
  3864. data/node_modules/eslint-plugin-import/lib/rules/no-unresolved.js +60 -0
  3865. data/node_modules/eslint-plugin-import/lib/rules/no-unused-modules.js +945 -0
  3866. data/node_modules/eslint-plugin-import/lib/rules/no-useless-path-segments.js +147 -0
  3867. data/node_modules/eslint-plugin-import/lib/rules/no-webpack-loader-syntax.js +26 -0
  3868. data/node_modules/eslint-plugin-import/lib/rules/order.js +785 -0
  3869. data/node_modules/eslint-plugin-import/lib/rules/prefer-default-export.js +116 -0
  3870. data/node_modules/eslint-plugin-import/lib/rules/unambiguous.js +38 -0
  3871. data/node_modules/eslint-plugin-import/memo-parser/LICENSE +22 -0
  3872. data/node_modules/eslint-plugin-import/memo-parser/README.md +21 -0
  3873. data/node_modules/eslint-plugin-import/memo-parser/index.js +41 -0
  3874. data/node_modules/eslint-plugin-import/node_modules/debug/CHANGELOG.md +395 -0
  3875. data/node_modules/eslint-plugin-import/node_modules/debug/LICENSE +19 -0
  3876. data/node_modules/eslint-plugin-import/node_modules/debug/README.md +437 -0
  3877. data/node_modules/eslint-plugin-import/node_modules/debug/node.js +1 -0
  3878. data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/index.js +162 -0
  3879. data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/license.md +21 -0
  3880. data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/package.json +38 -0
  3881. data/node_modules/eslint-plugin-import/node_modules/debug/node_modules/ms/readme.md +59 -0
  3882. data/node_modules/eslint-plugin-import/node_modules/debug/package.json +51 -0
  3883. data/node_modules/eslint-plugin-import/node_modules/debug/src/browser.js +180 -0
  3884. data/node_modules/eslint-plugin-import/node_modules/debug/src/common.js +249 -0
  3885. data/node_modules/eslint-plugin-import/node_modules/debug/src/index.js +12 -0
  3886. data/node_modules/eslint-plugin-import/node_modules/debug/src/node.js +177 -0
  3887. data/node_modules/eslint-plugin-import/node_modules/minimatch/LICENSE +15 -0
  3888. data/node_modules/eslint-plugin-import/node_modules/semver/LICENSE +15 -0
  3889. data/node_modules/eslint-plugin-import/node_modules/semver/README.md +443 -0
  3890. data/node_modules/eslint-plugin-import/node_modules/semver/bin/semver.js +174 -0
  3891. data/node_modules/eslint-plugin-import/node_modules/semver/package.json +38 -0
  3892. data/node_modules/eslint-plugin-import/node_modules/semver/range.bnf +16 -0
  3893. data/node_modules/eslint-plugin-import/node_modules/semver/semver.js +1643 -0
  3894. data/node_modules/eslint-plugin-import/package.json +124 -0
  3895. data/node_modules/eslint-plugin-prefer-arrow/LICENSE +21 -0
  3896. data/node_modules/eslint-plugin-prefer-arrow/README.md +46 -0
  3897. data/node_modules/eslint-plugin-prefer-arrow/index.js +10 -0
  3898. data/node_modules/eslint-plugin-prefer-arrow/lib/rules/prefer-arrow-functions.js +296 -0
  3899. data/node_modules/eslint-plugin-prefer-arrow/package.json +30 -0
  3900. data/node_modules/eslint-plugin-prefer-arrow/test/lib/rules/prefer-arrow-functions.js +285 -0
  3901. data/node_modules/eslint-plugin-sonarjs/LICENSE +165 -0
  3902. data/node_modules/eslint-plugin-sonarjs/README.md +150 -0
  3903. data/node_modules/eslint-plugin-sonarjs/lib/package.json +106 -0
  3904. data/node_modules/eslint-plugin-sonarjs/lib/src/index.d.ts +101 -0
  3905. data/node_modules/eslint-plugin-sonarjs/lib/src/index.js +117 -0
  3906. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/cognitive-complexity.d.ts +3 -0
  3907. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/cognitive-complexity.js +273 -0
  3908. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/elseif-without-else.d.ts +3 -0
  3909. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/elseif-without-else.js +63 -0
  3910. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/max-switch-cases.d.ts +4 -0
  3911. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/max-switch-cases.js +73 -0
  3912. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-all-duplicated-branches.d.ts +3 -0
  3913. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-all-duplicated-branches.js +79 -0
  3914. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-collapsible-if.d.ts +3 -0
  3915. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-collapsible-if.js +74 -0
  3916. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-collection-size-mischeck.d.ts +3 -0
  3917. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-collection-size-mischeck.js +98 -0
  3918. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-duplicate-string.d.ts +10 -0
  3919. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-duplicate-string.js +135 -0
  3920. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-duplicated-branches.d.ts +3 -0
  3921. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-duplicated-branches.js +147 -0
  3922. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-element-overwrite.d.ts +3 -0
  3923. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-element-overwrite.js +177 -0
  3924. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-empty-collection.d.ts +3 -0
  3925. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-empty-collection.js +202 -0
  3926. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-extra-arguments.d.ts +3 -0
  3927. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-extra-arguments.js +181 -0
  3928. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-gratuitous-expressions.d.ts +3 -0
  3929. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-gratuitous-expressions.js +227 -0
  3930. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-conditions.d.ts +3 -0
  3931. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-conditions.js +131 -0
  3932. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-expressions.d.ts +3 -0
  3933. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-expressions.js +108 -0
  3934. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-functions.d.ts +4 -0
  3935. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-identical-functions.js +114 -0
  3936. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-ignored-return.d.ts +3 -0
  3937. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-ignored-return.js +269 -0
  3938. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-inverted-boolean-check.d.ts +3 -0
  3939. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-inverted-boolean-check.js +82 -0
  3940. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-nested-switch.d.ts +3 -0
  3941. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-nested-switch.js +52 -0
  3942. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-nested-template-literals.d.ts +3 -0
  3943. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-nested-template-literals.js +58 -0
  3944. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-one-iteration-loop.d.ts +3 -0
  3945. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-one-iteration-loop.js +113 -0
  3946. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-redundant-boolean.d.ts +3 -0
  3947. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-redundant-boolean.js +77 -0
  3948. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-redundant-jump.d.ts +3 -0
  3949. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-redundant-jump.js +90 -0
  3950. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-same-line-conditional.d.ts +3 -0
  3951. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-same-line-conditional.js +100 -0
  3952. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-small-switch.d.ts +3 -0
  3953. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-small-switch.js +59 -0
  3954. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-unused-collection.d.ts +3 -0
  3955. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-unused-collection.js +183 -0
  3956. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-use-of-empty-return-value.d.ts +3 -0
  3957. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-use-of-empty-return-value.js +139 -0
  3958. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-useless-catch.d.ts +3 -0
  3959. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/no-useless-catch.js +66 -0
  3960. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/non-existent-operator.d.ts +3 -0
  3961. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/non-existent-operator.js +102 -0
  3962. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-immediate-return.d.ts +3 -0
  3963. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-immediate-return.js +119 -0
  3964. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-object-literal.d.ts +3 -0
  3965. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-object-literal.js +95 -0
  3966. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-single-boolean-return.d.ts +3 -0
  3967. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-single-boolean-return.js +107 -0
  3968. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-while.d.ts +3 -0
  3969. data/node_modules/eslint-plugin-sonarjs/lib/src/rules/prefer-while.js +71 -0
  3970. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/collections.d.ts +2 -0
  3971. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/collections.js +40 -0
  3972. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/conditions.d.ts +13 -0
  3973. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/conditions.js +47 -0
  3974. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/docs-url.d.ts +1 -0
  3975. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/docs-url.js +50 -0
  3976. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/equivalence.d.ts +7 -0
  3977. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/equivalence.js +24 -0
  3978. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/index.d.ts +4 -0
  3979. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/index.js +39 -0
  3980. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/jsx.d.ts +2 -0
  3981. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/jsx.js +48 -0
  3982. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/locations.d.ts +39 -0
  3983. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/locations.js +134 -0
  3984. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/nodes.d.ts +22 -0
  3985. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/nodes.js +93 -0
  3986. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/parser-services.d.ts +3 -0
  3987. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/parser-services.js +7 -0
  3988. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-ast.d.ts +3 -0
  3989. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-ast.js +30 -0
  3990. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-collection.d.ts +1 -0
  3991. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-collection.js +23 -0
  3992. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-parent.d.ts +3 -0
  3993. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-parent.js +20 -0
  3994. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-type.d.ts +3 -0
  3995. data/node_modules/eslint-plugin-sonarjs/lib/src/utils/utils-type.js +27 -0
  3996. data/node_modules/eslint-plugin-sonarjs/package.json +106 -0
  3997. data/node_modules/esprima/ChangeLog +235 -0
  3998. data/node_modules/esprima/LICENSE.BSD +21 -0
  3999. data/node_modules/esprima/README.md +46 -0
  4000. data/node_modules/esprima/bin/esparse.js +139 -0
  4001. data/node_modules/esprima/bin/esvalidate.js +236 -0
  4002. data/node_modules/esprima/dist/esprima.js +6709 -0
  4003. data/node_modules/esprima/package.json +112 -0
  4004. data/node_modules/find-cache-dir/index.js +32 -0
  4005. data/node_modules/find-cache-dir/license +9 -0
  4006. data/node_modules/find-cache-dir/package.json +42 -0
  4007. data/node_modules/find-cache-dir/readme.md +116 -0
  4008. data/node_modules/flatted/cjs/index.js +29 -3
  4009. data/node_modules/flatted/es.js +1 -2
  4010. data/node_modules/flatted/esm/index.js +29 -3
  4011. data/node_modules/flatted/esm.js +1 -2
  4012. data/node_modules/flatted/index.js +43 -32
  4013. data/node_modules/flatted/min.js +1 -2
  4014. data/node_modules/flatted/package.json +15 -14
  4015. data/node_modules/flatted/types/index.d.ts +4 -0
  4016. data/node_modules/flow-parser/README.md +44 -0
  4017. data/node_modules/flow-parser/flow_parser.js +11286 -0
  4018. data/node_modules/flow-parser/package.json +33 -0
  4019. data/node_modules/foreground-child/node_modules/signal-exit/LICENSE.txt +16 -0
  4020. data/node_modules/foreground-child/node_modules/signal-exit/README.md +74 -0
  4021. data/node_modules/foreground-child/node_modules/signal-exit/dist/cjs/package.json +3 -0
  4022. data/node_modules/foreground-child/node_modules/signal-exit/dist/mjs/package.json +3 -0
  4023. data/node_modules/foreground-child/node_modules/signal-exit/package.json +106 -0
  4024. data/node_modules/gensync/LICENSE +7 -0
  4025. data/node_modules/gensync/README.md +196 -0
  4026. data/node_modules/gensync/index.js +373 -0
  4027. data/node_modules/gensync/index.js.flow +32 -0
  4028. data/node_modules/gensync/package.json +37 -0
  4029. data/node_modules/gensync/test/index.test.js +489 -0
  4030. data/node_modules/get-intrinsic/CHANGELOG.md +26 -0
  4031. data/node_modules/get-intrinsic/index.js +16 -8
  4032. data/node_modules/get-intrinsic/package.json +18 -18
  4033. data/node_modules/get-symbol-description/CHANGELOG.md +31 -0
  4034. data/node_modules/get-symbol-description/index.js +3 -2
  4035. data/node_modules/get-symbol-description/package.json +22 -13
  4036. data/node_modules/get-symbol-description/test/index.js +4 -4
  4037. data/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
  4038. data/node_modules/glob/node_modules/minimatch/README.md +454 -0
  4039. data/node_modules/glob/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
  4040. data/node_modules/glob/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
  4041. data/node_modules/glob/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  4042. data/node_modules/glob/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
  4043. data/node_modules/glob/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
  4044. data/node_modules/glob/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
  4045. data/node_modules/glob/node_modules/minimatch/dist/cjs/ast.js +589 -0
  4046. data/node_modules/glob/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
  4047. data/node_modules/glob/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
  4048. data/node_modules/glob/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
  4049. data/node_modules/glob/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  4050. data/node_modules/glob/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
  4051. data/node_modules/glob/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
  4052. data/node_modules/glob/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
  4053. data/node_modules/glob/node_modules/minimatch/dist/cjs/escape.js +22 -0
  4054. data/node_modules/glob/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
  4055. data/node_modules/glob/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
  4056. data/node_modules/glob/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
  4057. data/node_modules/glob/node_modules/minimatch/dist/cjs/index.js +1011 -0
  4058. data/node_modules/glob/node_modules/minimatch/dist/cjs/index.js.map +1 -0
  4059. data/node_modules/glob/node_modules/minimatch/dist/cjs/package.json +3 -0
  4060. data/node_modules/glob/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
  4061. data/node_modules/glob/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
  4062. data/node_modules/glob/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  4063. data/node_modules/glob/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
  4064. data/node_modules/glob/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
  4065. data/node_modules/glob/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
  4066. data/node_modules/glob/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  4067. data/node_modules/glob/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
  4068. data/node_modules/glob/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
  4069. data/node_modules/glob/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
  4070. data/node_modules/glob/node_modules/minimatch/dist/mjs/ast.js +585 -0
  4071. data/node_modules/glob/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
  4072. data/node_modules/glob/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
  4073. data/node_modules/glob/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
  4074. data/node_modules/glob/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  4075. data/node_modules/glob/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
  4076. data/node_modules/glob/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
  4077. data/node_modules/glob/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
  4078. data/node_modules/glob/node_modules/minimatch/dist/mjs/escape.js +18 -0
  4079. data/node_modules/glob/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
  4080. data/node_modules/glob/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
  4081. data/node_modules/glob/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
  4082. data/node_modules/glob/node_modules/minimatch/dist/mjs/index.js +995 -0
  4083. data/node_modules/glob/node_modules/minimatch/dist/mjs/index.js.map +1 -0
  4084. data/node_modules/glob/node_modules/minimatch/dist/mjs/package.json +3 -0
  4085. data/node_modules/glob/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
  4086. data/node_modules/glob/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
  4087. data/node_modules/glob/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  4088. data/node_modules/glob/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
  4089. data/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4090. data/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +135 -0
  4091. data/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +203 -0
  4092. data/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +46 -0
  4093. data/node_modules/glob/node_modules/minimatch/package.json +86 -0
  4094. data/node_modules/globalthis/CHANGELOG.md +13 -0
  4095. data/node_modules/globalthis/package.json +8 -6
  4096. data/node_modules/globalthis/shim.js +9 -2
  4097. data/node_modules/has-property-descriptors/CHANGELOG.md +19 -0
  4098. data/node_modules/has-property-descriptors/index.js +3 -14
  4099. data/node_modules/has-property-descriptors/package.json +13 -6
  4100. data/node_modules/has-proto/CHANGELOG.md +15 -0
  4101. data/node_modules/has-proto/index.d.ts +3 -0
  4102. data/node_modules/has-proto/index.js +5 -1
  4103. data/node_modules/has-proto/package.json +9 -5
  4104. data/node_modules/has-proto/tsconfig.json +49 -0
  4105. data/node_modules/has-tostringtag/CHANGELOG.md +22 -0
  4106. data/node_modules/has-tostringtag/index.d.ts +3 -0
  4107. data/node_modules/has-tostringtag/index.js +1 -0
  4108. data/node_modules/has-tostringtag/package.json +37 -13
  4109. data/node_modules/has-tostringtag/shams.d.ts +3 -0
  4110. data/node_modules/has-tostringtag/shams.js +1 -0
  4111. data/node_modules/has-tostringtag/test/shams/core-js.js +3 -0
  4112. data/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +2 -0
  4113. data/node_modules/has-tostringtag/test/tests.js +2 -1
  4114. data/node_modules/has-tostringtag/tsconfig.json +49 -0
  4115. data/node_modules/hasown/CHANGELOG.md +20 -0
  4116. data/node_modules/hasown/index.d.ts +3 -3
  4117. data/node_modules/hasown/index.js +1 -1
  4118. data/node_modules/hasown/package.json +16 -15
  4119. data/node_modules/hasown/tsconfig.json +3 -46
  4120. data/node_modules/ignore-walk/node_modules/minimatch/LICENSE +15 -0
  4121. data/node_modules/ignore-walk/node_modules/minimatch/README.md +454 -0
  4122. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
  4123. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
  4124. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  4125. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
  4126. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
  4127. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
  4128. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/ast.js +589 -0
  4129. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
  4130. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
  4131. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
  4132. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  4133. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
  4134. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
  4135. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
  4136. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/escape.js +22 -0
  4137. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
  4138. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
  4139. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
  4140. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/index.js +1011 -0
  4141. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/index.js.map +1 -0
  4142. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/package.json +3 -0
  4143. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
  4144. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
  4145. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  4146. data/node_modules/ignore-walk/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
  4147. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
  4148. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
  4149. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  4150. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
  4151. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
  4152. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
  4153. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/ast.js +585 -0
  4154. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
  4155. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
  4156. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
  4157. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  4158. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
  4159. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
  4160. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
  4161. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/escape.js +18 -0
  4162. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
  4163. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
  4164. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
  4165. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/index.js +995 -0
  4166. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/index.js.map +1 -0
  4167. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/package.json +3 -0
  4168. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
  4169. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
  4170. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  4171. data/node_modules/ignore-walk/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
  4172. data/node_modules/ignore-walk/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4173. data/node_modules/ignore-walk/node_modules/minimatch/node_modules/brace-expansion/README.md +135 -0
  4174. data/node_modules/ignore-walk/node_modules/minimatch/node_modules/brace-expansion/index.js +203 -0
  4175. data/node_modules/ignore-walk/node_modules/minimatch/node_modules/brace-expansion/package.json +46 -0
  4176. data/node_modules/ignore-walk/node_modules/minimatch/package.json +86 -0
  4177. data/node_modules/internal-slot/CHANGELOG.md +16 -0
  4178. data/node_modules/internal-slot/index.js +3 -4
  4179. data/node_modules/internal-slot/package.json +8 -8
  4180. data/node_modules/is-array-buffer/CHANGELOG.md +17 -0
  4181. data/node_modules/is-array-buffer/index.d.ts +3 -0
  4182. data/node_modules/is-array-buffer/index.js +12 -13
  4183. data/node_modules/is-array-buffer/package.json +20 -9
  4184. data/node_modules/is-array-buffer/test/index.js +9 -2
  4185. data/node_modules/is-array-buffer/tsconfig.json +49 -0
  4186. data/node_modules/is-data-view/CHANGELOG.md +23 -0
  4187. data/node_modules/is-data-view/LICENSE +21 -0
  4188. data/node_modules/is-data-view/README.md +69 -0
  4189. data/node_modules/is-data-view/index.d.ts +3 -0
  4190. data/node_modules/is-data-view/index.js +39 -0
  4191. data/node_modules/is-data-view/package.json +97 -0
  4192. data/node_modules/is-data-view/test/index.js +60 -0
  4193. data/node_modules/is-data-view/tsconfig.json +49 -0
  4194. data/node_modules/is-negative-zero/CHANGELOG.md +11 -0
  4195. data/node_modules/is-negative-zero/index.d.ts +3 -0
  4196. data/node_modules/is-negative-zero/index.js +1 -0
  4197. data/node_modules/is-negative-zero/package.json +19 -6
  4198. data/node_modules/is-negative-zero/test/index.js +1 -0
  4199. data/node_modules/is-negative-zero/tsconfig.json +49 -0
  4200. data/node_modules/is-plain-object/LICENSE +21 -0
  4201. data/node_modules/is-plain-object/README.md +104 -0
  4202. data/node_modules/is-plain-object/index.d.ts +5 -0
  4203. data/node_modules/is-plain-object/index.js +37 -0
  4204. data/node_modules/is-plain-object/package.json +79 -0
  4205. data/node_modules/is-shared-array-buffer/CHANGELOG.md +17 -0
  4206. data/node_modules/is-shared-array-buffer/README.md +0 -2
  4207. data/node_modules/is-shared-array-buffer/index.d.ts +3 -0
  4208. data/node_modules/is-shared-array-buffer/index.js +1 -0
  4209. data/node_modules/is-shared-array-buffer/package.json +28 -7
  4210. data/node_modules/is-shared-array-buffer/test/index.js +14 -2
  4211. data/node_modules/is-shared-array-buffer/tsconfig.json +49 -0
  4212. data/node_modules/is-typed-array/CHANGELOG.md +10 -0
  4213. data/node_modules/is-typed-array/index.d.ts +16 -0
  4214. data/node_modules/is-typed-array/index.js +1 -0
  4215. data/node_modules/is-typed-array/package.json +18 -7
  4216. data/node_modules/is-typed-array/test/index.js +9 -1
  4217. data/node_modules/is-typed-array/tsconfig.json +49 -0
  4218. data/node_modules/isobject/LICENSE +21 -0
  4219. data/node_modules/isobject/README.md +122 -0
  4220. data/node_modules/isobject/index.d.ts +5 -0
  4221. data/node_modules/isobject/index.js +12 -0
  4222. data/node_modules/isobject/package.json +74 -0
  4223. data/node_modules/js-tokens/CHANGELOG.md +151 -0
  4224. data/node_modules/js-tokens/LICENSE +21 -0
  4225. data/node_modules/js-tokens/README.md +240 -0
  4226. data/node_modules/js-tokens/index.js +23 -0
  4227. data/node_modules/js-tokens/package.json +30 -0
  4228. data/node_modules/jscodeshift/CHANGELOG.md +146 -0
  4229. data/node_modules/jscodeshift/CODE_OF_CONDUCT.md +3 -0
  4230. data/node_modules/jscodeshift/CONTRIBUTING.md +47 -0
  4231. data/node_modules/jscodeshift/LICENSE +21 -0
  4232. data/node_modules/jscodeshift/README.md +631 -0
  4233. data/node_modules/jscodeshift/bin/jscodeshift.js +182 -0
  4234. data/node_modules/jscodeshift/bin/jscodeshift.sh +12 -0
  4235. data/node_modules/jscodeshift/dist/Collection.js +472 -0
  4236. data/node_modules/jscodeshift/dist/Runner.js +318 -0
  4237. data/node_modules/jscodeshift/dist/Worker.js +210 -0
  4238. data/node_modules/jscodeshift/dist/argsParser.js +273 -0
  4239. data/node_modules/jscodeshift/dist/collections/JSXElement.js +221 -0
  4240. data/node_modules/jscodeshift/dist/collections/Node.js +187 -0
  4241. data/node_modules/jscodeshift/dist/collections/VariableDeclarator.js +201 -0
  4242. data/node_modules/jscodeshift/dist/collections/index.js +13 -0
  4243. data/node_modules/jscodeshift/dist/core.js +183 -0
  4244. data/node_modules/jscodeshift/dist/getParser.js +25 -0
  4245. data/node_modules/jscodeshift/dist/ignoreFiles.js +68 -0
  4246. data/node_modules/jscodeshift/dist/matchNode.js +40 -0
  4247. data/node_modules/jscodeshift/dist/src/Collection.js +472 -0
  4248. data/node_modules/jscodeshift/dist/src/Runner.js +318 -0
  4249. data/node_modules/jscodeshift/dist/src/Worker.js +210 -0
  4250. data/node_modules/jscodeshift/dist/src/argsParser.js +273 -0
  4251. data/node_modules/jscodeshift/dist/src/collections/JSXElement.js +221 -0
  4252. data/node_modules/jscodeshift/dist/src/collections/Node.js +187 -0
  4253. data/node_modules/jscodeshift/dist/src/collections/VariableDeclarator.js +201 -0
  4254. data/node_modules/jscodeshift/dist/src/collections/index.js +13 -0
  4255. data/node_modules/jscodeshift/dist/src/core.js +183 -0
  4256. data/node_modules/jscodeshift/dist/src/getParser.js +25 -0
  4257. data/node_modules/jscodeshift/dist/src/ignoreFiles.js +68 -0
  4258. data/node_modules/jscodeshift/dist/src/matchNode.js +40 -0
  4259. data/node_modules/jscodeshift/dist/src/template.js +173 -0
  4260. data/node_modules/jscodeshift/dist/src/testUtils.js +149 -0
  4261. data/node_modules/jscodeshift/dist/src/utils/intersection.js +27 -0
  4262. data/node_modules/jscodeshift/dist/src/utils/once.js +21 -0
  4263. data/node_modules/jscodeshift/dist/src/utils/union.js +20 -0
  4264. data/node_modules/jscodeshift/dist/template.js +173 -0
  4265. data/node_modules/jscodeshift/dist/testUtils.js +149 -0
  4266. data/node_modules/jscodeshift/dist/utils/intersection.js +27 -0
  4267. data/node_modules/jscodeshift/dist/utils/once.js +21 -0
  4268. data/node_modules/jscodeshift/dist/utils/union.js +20 -0
  4269. data/node_modules/jscodeshift/index.js +9 -0
  4270. data/node_modules/jscodeshift/node_modules/chalk/license +9 -0
  4271. data/node_modules/jscodeshift/package.json +71 -0
  4272. data/node_modules/jscodeshift/parser/babel5Compat.js +50 -0
  4273. data/node_modules/jscodeshift/parser/babylon.js +57 -0
  4274. data/node_modules/jscodeshift/parser/flow.js +34 -0
  4275. data/node_modules/jscodeshift/parser/ts.js +24 -0
  4276. data/node_modules/jscodeshift/parser/tsOptions.js +44 -0
  4277. data/node_modules/jscodeshift/parser/tsx.js +27 -0
  4278. data/node_modules/jscodeshift/src/Collection.js +472 -0
  4279. data/node_modules/jscodeshift/src/Runner.js +318 -0
  4280. data/node_modules/jscodeshift/src/Worker.js +210 -0
  4281. data/node_modules/jscodeshift/src/argsParser.js +273 -0
  4282. data/node_modules/jscodeshift/src/collections/JSXElement.js +221 -0
  4283. data/node_modules/jscodeshift/src/collections/Node.js +187 -0
  4284. data/node_modules/jscodeshift/src/collections/VariableDeclarator.js +201 -0
  4285. data/node_modules/jscodeshift/src/collections/index.js +13 -0
  4286. data/node_modules/jscodeshift/src/core.js +183 -0
  4287. data/node_modules/jscodeshift/src/getParser.js +25 -0
  4288. data/node_modules/jscodeshift/src/ignoreFiles.js +68 -0
  4289. data/node_modules/jscodeshift/src/matchNode.js +40 -0
  4290. data/node_modules/jscodeshift/src/template.js +173 -0
  4291. data/node_modules/jscodeshift/src/testUtils.js +149 -0
  4292. data/node_modules/jscodeshift/src/utils/intersection.js +27 -0
  4293. data/node_modules/jscodeshift/src/utils/once.js +21 -0
  4294. data/node_modules/jscodeshift/src/utils/union.js +20 -0
  4295. data/node_modules/jscodeshift/utils/requirePackage.js +24 -0
  4296. data/node_modules/jscodeshift/utils/testUtils.js +50 -0
  4297. data/node_modules/jsesc/LICENSE-MIT.txt +20 -0
  4298. data/node_modules/jsesc/README.md +421 -0
  4299. data/node_modules/jsesc/bin/jsesc +148 -0
  4300. data/node_modules/jsesc/jsesc.js +329 -0
  4301. data/node_modules/jsesc/man/jsesc.1 +94 -0
  4302. data/node_modules/jsesc/package.json +54 -0
  4303. data/node_modules/kind-of/CHANGELOG.md +160 -0
  4304. data/node_modules/kind-of/LICENSE +21 -0
  4305. data/node_modules/kind-of/README.md +367 -0
  4306. data/node_modules/kind-of/index.js +129 -0
  4307. data/node_modules/kind-of/package.json +88 -0
  4308. data/node_modules/make-dir/index.d.ts +39 -0
  4309. data/node_modules/make-dir/index.js +139 -0
  4310. data/node_modules/make-dir/license +9 -0
  4311. data/node_modules/make-dir/node_modules/semver/LICENSE +15 -0
  4312. data/node_modules/make-dir/node_modules/semver/README.md +412 -0
  4313. data/node_modules/make-dir/node_modules/semver/bin/semver +160 -0
  4314. data/node_modules/make-dir/node_modules/semver/package.json +38 -0
  4315. data/node_modules/make-dir/node_modules/semver/range.bnf +16 -0
  4316. data/node_modules/make-dir/node_modules/semver/semver.js +1525 -0
  4317. data/node_modules/make-dir/package.json +59 -0
  4318. data/node_modules/make-dir/readme.md +123 -0
  4319. data/node_modules/neo-async/LICENSE +22 -0
  4320. data/node_modules/neo-async/README.md +273 -0
  4321. data/node_modules/neo-async/all.js +3 -0
  4322. data/node_modules/neo-async/allLimit.js +3 -0
  4323. data/node_modules/neo-async/allSeries.js +3 -0
  4324. data/node_modules/neo-async/angelFall.js +3 -0
  4325. data/node_modules/neo-async/any.js +3 -0
  4326. data/node_modules/neo-async/anyLimit.js +3 -0
  4327. data/node_modules/neo-async/anySeries.js +3 -0
  4328. data/node_modules/neo-async/apply.js +3 -0
  4329. data/node_modules/neo-async/applyEach.js +3 -0
  4330. data/node_modules/neo-async/applyEachSeries.js +3 -0
  4331. data/node_modules/neo-async/async.js +9184 -0
  4332. data/node_modules/neo-async/async.min.js +80 -0
  4333. data/node_modules/neo-async/asyncify.js +3 -0
  4334. data/node_modules/neo-async/auto.js +3 -0
  4335. data/node_modules/neo-async/autoInject.js +3 -0
  4336. data/node_modules/neo-async/cargo.js +3 -0
  4337. data/node_modules/neo-async/compose.js +3 -0
  4338. data/node_modules/neo-async/concat.js +3 -0
  4339. data/node_modules/neo-async/concatLimit.js +3 -0
  4340. data/node_modules/neo-async/concatSeries.js +3 -0
  4341. data/node_modules/neo-async/constant.js +3 -0
  4342. data/node_modules/neo-async/createLogger.js +3 -0
  4343. data/node_modules/neo-async/detect.js +3 -0
  4344. data/node_modules/neo-async/detectLimit.js +3 -0
  4345. data/node_modules/neo-async/detectSeries.js +3 -0
  4346. data/node_modules/neo-async/dir.js +3 -0
  4347. data/node_modules/neo-async/doDuring.js +3 -0
  4348. data/node_modules/neo-async/doUntil.js +3 -0
  4349. data/node_modules/neo-async/doWhilst.js +3 -0
  4350. data/node_modules/neo-async/during.js +3 -0
  4351. data/node_modules/neo-async/each.js +3 -0
  4352. data/node_modules/neo-async/eachLimit.js +3 -0
  4353. data/node_modules/neo-async/eachOf.js +3 -0
  4354. data/node_modules/neo-async/eachOfLimit.js +3 -0
  4355. data/node_modules/neo-async/eachOfSeries.js +3 -0
  4356. data/node_modules/neo-async/eachSeries.js +3 -0
  4357. data/node_modules/neo-async/ensureAsync.js +3 -0
  4358. data/node_modules/neo-async/every.js +3 -0
  4359. data/node_modules/neo-async/everyLimit.js +3 -0
  4360. data/node_modules/neo-async/everySeries.js +3 -0
  4361. data/node_modules/neo-async/fast.js +3 -0
  4362. data/node_modules/neo-async/filter.js +3 -0
  4363. data/node_modules/neo-async/filterLimit.js +3 -0
  4364. data/node_modules/neo-async/filterSeries.js +3 -0
  4365. data/node_modules/neo-async/find.js +3 -0
  4366. data/node_modules/neo-async/findLimit.js +3 -0
  4367. data/node_modules/neo-async/findSeries.js +3 -0
  4368. data/node_modules/neo-async/foldl.js +3 -0
  4369. data/node_modules/neo-async/foldr.js +3 -0
  4370. data/node_modules/neo-async/forEach.js +3 -0
  4371. data/node_modules/neo-async/forEachLimit.js +3 -0
  4372. data/node_modules/neo-async/forEachOf.js +3 -0
  4373. data/node_modules/neo-async/forEachOfLimit.js +3 -0
  4374. data/node_modules/neo-async/forEachOfSeries.js +3 -0
  4375. data/node_modules/neo-async/forEachSeries.js +3 -0
  4376. data/node_modules/neo-async/forever.js +3 -0
  4377. data/node_modules/neo-async/groupBy.js +3 -0
  4378. data/node_modules/neo-async/groupByLimit.js +3 -0
  4379. data/node_modules/neo-async/groupBySeries.js +3 -0
  4380. data/node_modules/neo-async/inject.js +3 -0
  4381. data/node_modules/neo-async/iterator.js +3 -0
  4382. data/node_modules/neo-async/log.js +3 -0
  4383. data/node_modules/neo-async/map.js +3 -0
  4384. data/node_modules/neo-async/mapLimit.js +3 -0
  4385. data/node_modules/neo-async/mapSeries.js +3 -0
  4386. data/node_modules/neo-async/mapValues.js +3 -0
  4387. data/node_modules/neo-async/mapValuesLimit.js +3 -0
  4388. data/node_modules/neo-async/mapValuesSeries.js +3 -0
  4389. data/node_modules/neo-async/memoize.js +3 -0
  4390. data/node_modules/neo-async/nextTick.js +3 -0
  4391. data/node_modules/neo-async/omit.js +3 -0
  4392. data/node_modules/neo-async/omitLimit.js +3 -0
  4393. data/node_modules/neo-async/omitSeries.js +3 -0
  4394. data/node_modules/neo-async/package.json +57 -0
  4395. data/node_modules/neo-async/parallel.js +3 -0
  4396. data/node_modules/neo-async/parallelLimit.js +3 -0
  4397. data/node_modules/neo-async/pick.js +3 -0
  4398. data/node_modules/neo-async/pickLimit.js +3 -0
  4399. data/node_modules/neo-async/pickSeries.js +3 -0
  4400. data/node_modules/neo-async/priorityQueue.js +3 -0
  4401. data/node_modules/neo-async/queue.js +3 -0
  4402. data/node_modules/neo-async/race.js +3 -0
  4403. data/node_modules/neo-async/reduce.js +3 -0
  4404. data/node_modules/neo-async/reduceRight.js +3 -0
  4405. data/node_modules/neo-async/reflect.js +3 -0
  4406. data/node_modules/neo-async/reflectAll.js +3 -0
  4407. data/node_modules/neo-async/reject.js +3 -0
  4408. data/node_modules/neo-async/rejectLimit.js +3 -0
  4409. data/node_modules/neo-async/rejectSeries.js +3 -0
  4410. data/node_modules/neo-async/retry.js +3 -0
  4411. data/node_modules/neo-async/retryable.js +3 -0
  4412. data/node_modules/neo-async/safe.js +3 -0
  4413. data/node_modules/neo-async/select.js +3 -0
  4414. data/node_modules/neo-async/selectLimit.js +3 -0
  4415. data/node_modules/neo-async/selectSeries.js +3 -0
  4416. data/node_modules/neo-async/seq.js +3 -0
  4417. data/node_modules/neo-async/series.js +3 -0
  4418. data/node_modules/neo-async/setImmediate.js +3 -0
  4419. data/node_modules/neo-async/some.js +3 -0
  4420. data/node_modules/neo-async/someLimit.js +3 -0
  4421. data/node_modules/neo-async/someSeries.js +3 -0
  4422. data/node_modules/neo-async/sortBy.js +3 -0
  4423. data/node_modules/neo-async/sortByLimit.js +3 -0
  4424. data/node_modules/neo-async/sortBySeries.js +3 -0
  4425. data/node_modules/neo-async/timeout.js +3 -0
  4426. data/node_modules/neo-async/times.js +3 -0
  4427. data/node_modules/neo-async/timesLimit.js +3 -0
  4428. data/node_modules/neo-async/timesSeries.js +3 -0
  4429. data/node_modules/neo-async/transform.js +3 -0
  4430. data/node_modules/neo-async/transformLimit.js +3 -0
  4431. data/node_modules/neo-async/transformSeries.js +3 -0
  4432. data/node_modules/neo-async/tryEach.js +3 -0
  4433. data/node_modules/neo-async/unmemoize.js +3 -0
  4434. data/node_modules/neo-async/until.js +3 -0
  4435. data/node_modules/neo-async/waterfall.js +3 -0
  4436. data/node_modules/neo-async/whilst.js +3 -0
  4437. data/node_modules/neo-async/wrapSync.js +3 -0
  4438. data/node_modules/node-dir/LICENSE.txt +22 -0
  4439. data/node_modules/node-dir/README.md +225 -0
  4440. data/node_modules/node-dir/index.js +5 -0
  4441. data/node_modules/node-dir/lib/paths.js +240 -0
  4442. data/node_modules/node-dir/lib/readfiles.js +122 -0
  4443. data/node_modules/node-dir/lib/readfilesstream.js +131 -0
  4444. data/node_modules/node-dir/node_modules/minimatch/LICENSE +15 -0
  4445. data/node_modules/node-dir/node_modules/minimatch/README.md +230 -0
  4446. data/node_modules/node-dir/node_modules/minimatch/minimatch.js +947 -0
  4447. data/node_modules/node-dir/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4448. data/node_modules/node-dir/node_modules/minimatch/package.json +33 -0
  4449. data/node_modules/node-dir/package.json +40 -0
  4450. data/node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4451. data/node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +135 -0
  4452. data/node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +203 -0
  4453. data/node_modules/node-gyp/node_modules/make-fetch-happen/node_modules/cacache/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +46 -0
  4454. data/node_modules/node-gyp/node_modules/which/CHANGELOG.md +166 -0
  4455. data/node_modules/node-gyp/node_modules/which/LICENSE +15 -0
  4456. data/node_modules/node-gyp/node_modules/which/README.md +54 -0
  4457. data/node_modules/node-gyp/node_modules/which/bin/node-which +52 -0
  4458. data/node_modules/node-gyp/node_modules/which/package.json +43 -0
  4459. data/node_modules/node-gyp/node_modules/which/which.js +125 -0
  4460. data/node_modules/node-releases/LICENSE +21 -0
  4461. data/node_modules/node-releases/README.md +12 -0
  4462. data/node_modules/node-releases/data/processed/envs.json +1 -0
  4463. data/node_modules/node-releases/data/release-schedule/release-schedule.json +1 -0
  4464. data/node_modules/node-releases/package.json +19 -0
  4465. data/node_modules/npm-check-updates/node_modules/chalk/license +9 -0
  4466. data/node_modules/npm-check-updates/node_modules/chalk/package.json +83 -0
  4467. data/node_modules/npm-check-updates/node_modules/chalk/readme.md +325 -0
  4468. data/node_modules/npm-check-updates/node_modules/chalk/source/index.d.ts +320 -0
  4469. data/node_modules/npm-check-updates/node_modules/chalk/source/index.js +225 -0
  4470. data/node_modules/npm-check-updates/node_modules/chalk/source/utilities.js +33 -0
  4471. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  4472. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  4473. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  4474. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  4475. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  4476. data/node_modules/npm-check-updates/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  4477. data/node_modules/npm-check-updates/node_modules/minimatch/LICENSE +15 -0
  4478. data/node_modules/npm-check-updates/node_modules/minimatch/README.md +454 -0
  4479. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts +2 -0
  4480. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/assert-valid-pattern.d.ts.map +1 -0
  4481. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
  4482. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/assert-valid-pattern.js.map +1 -0
  4483. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/ast.d.ts +19 -0
  4484. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/ast.d.ts.map +1 -0
  4485. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/ast.js +589 -0
  4486. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/ast.js.map +1 -0
  4487. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/brace-expressions.d.ts +8 -0
  4488. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/brace-expressions.d.ts.map +1 -0
  4489. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
  4490. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/brace-expressions.js.map +1 -0
  4491. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/escape.d.ts +12 -0
  4492. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/escape.d.ts.map +1 -0
  4493. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/escape.js +22 -0
  4494. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/escape.js.map +1 -0
  4495. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/index.d.ts +94 -0
  4496. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/index.d.ts.map +1 -0
  4497. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/index.js +1011 -0
  4498. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/index.js.map +1 -0
  4499. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/package.json +3 -0
  4500. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/unescape.d.ts +17 -0
  4501. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/unescape.d.ts.map +1 -0
  4502. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/unescape.js +24 -0
  4503. data/node_modules/npm-check-updates/node_modules/minimatch/dist/cjs/unescape.js.map +1 -0
  4504. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts +2 -0
  4505. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/assert-valid-pattern.d.ts.map +1 -0
  4506. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
  4507. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/assert-valid-pattern.js.map +1 -0
  4508. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/ast.d.ts +19 -0
  4509. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/ast.d.ts.map +1 -0
  4510. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/ast.js +585 -0
  4511. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/ast.js.map +1 -0
  4512. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/brace-expressions.d.ts +8 -0
  4513. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/brace-expressions.d.ts.map +1 -0
  4514. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
  4515. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/brace-expressions.js.map +1 -0
  4516. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/escape.d.ts +12 -0
  4517. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/escape.d.ts.map +1 -0
  4518. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/escape.js +18 -0
  4519. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/escape.js.map +1 -0
  4520. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/index.d.ts +94 -0
  4521. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/index.d.ts.map +1 -0
  4522. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/index.js +995 -0
  4523. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/index.js.map +1 -0
  4524. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/package.json +3 -0
  4525. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/unescape.d.ts +17 -0
  4526. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/unescape.d.ts.map +1 -0
  4527. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/unescape.js +20 -0
  4528. data/node_modules/npm-check-updates/node_modules/minimatch/dist/mjs/unescape.js.map +1 -0
  4529. data/node_modules/npm-check-updates/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4530. data/node_modules/npm-check-updates/node_modules/minimatch/node_modules/brace-expansion/README.md +135 -0
  4531. data/node_modules/npm-check-updates/node_modules/minimatch/node_modules/brace-expansion/index.js +203 -0
  4532. data/node_modules/npm-check-updates/node_modules/minimatch/node_modules/brace-expansion/package.json +46 -0
  4533. data/node_modules/npm-check-updates/node_modules/minimatch/package.json +86 -0
  4534. data/node_modules/npm-check-updates/node_modules/strip-ansi/index.d.ts +15 -0
  4535. data/node_modules/npm-check-updates/node_modules/strip-ansi/index.js +14 -0
  4536. data/node_modules/npm-check-updates/node_modules/strip-ansi/license +9 -0
  4537. data/node_modules/npm-check-updates/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +33 -0
  4538. data/node_modules/npm-check-updates/node_modules/strip-ansi/node_modules/ansi-regex/index.js +8 -0
  4539. data/node_modules/npm-check-updates/node_modules/strip-ansi/node_modules/ansi-regex/license +9 -0
  4540. data/node_modules/npm-check-updates/node_modules/strip-ansi/node_modules/ansi-regex/package.json +58 -0
  4541. data/node_modules/npm-check-updates/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +72 -0
  4542. data/node_modules/npm-check-updates/node_modules/strip-ansi/package.json +57 -0
  4543. data/node_modules/npm-check-updates/node_modules/strip-ansi/readme.md +41 -0
  4544. data/node_modules/object-inspect/CHANGELOG.md +19 -0
  4545. data/node_modules/object-inspect/index.js +8 -0
  4546. data/node_modules/object-inspect/package.json +8 -6
  4547. data/node_modules/object-inspect/test/global.js +17 -0
  4548. data/node_modules/object.assign/CHANGELOG.md +8 -0
  4549. data/node_modules/object.assign/dist/browser.js +263 -66
  4550. data/node_modules/object.assign/package.json +10 -10
  4551. data/node_modules/object.assign/test/tests.js +2 -2
  4552. data/node_modules/object.entries/CHANGELOG.md +9 -0
  4553. data/node_modules/object.entries/implementation.js +1 -1
  4554. data/node_modules/object.entries/package.json +8 -8
  4555. data/node_modules/object.entries/test/native.js +16 -0
  4556. data/node_modules/object.fromentries/CHANGELOG.md +9 -0
  4557. data/node_modules/object.fromentries/implementation.js +4 -4
  4558. data/node_modules/object.fromentries/package.json +7 -6
  4559. data/node_modules/object.groupby/CHANGELOG.md +17 -0
  4560. data/node_modules/object.groupby/implementation.js +4 -4
  4561. data/node_modules/object.groupby/package.json +11 -8
  4562. data/node_modules/object.values/CHANGELOG.md +8 -0
  4563. data/node_modules/object.values/implementation.js +1 -1
  4564. data/node_modules/object.values/package.json +8 -8
  4565. data/node_modules/optionator/README.md +1 -1
  4566. data/node_modules/optionator/lib/help.js +1 -1
  4567. data/node_modules/optionator/lib/index.js +1 -1
  4568. data/node_modules/optionator/package.json +3 -3
  4569. data/node_modules/p-try/index.d.ts +39 -0
  4570. data/node_modules/p-try/index.js +9 -0
  4571. data/node_modules/p-try/license +9 -0
  4572. data/node_modules/p-try/package.json +42 -0
  4573. data/node_modules/p-try/readme.md +58 -0
  4574. data/node_modules/picocolors/LICENSE +15 -0
  4575. data/node_modules/picocolors/README.md +21 -0
  4576. data/node_modules/picocolors/package.json +25 -0
  4577. data/node_modules/picocolors/picocolors.browser.js +4 -0
  4578. data/node_modules/picocolors/picocolors.d.ts +5 -0
  4579. data/node_modules/picocolors/picocolors.js +65 -0
  4580. data/node_modules/picocolors/types.ts +30 -0
  4581. data/node_modules/pify/index.js +68 -0
  4582. data/node_modules/pify/license +9 -0
  4583. data/node_modules/pify/package.json +51 -0
  4584. data/node_modules/pify/readme.md +145 -0
  4585. data/node_modules/pirates/LICENSE +21 -0
  4586. data/node_modules/pirates/README.md +69 -0
  4587. data/node_modules/pirates/index.d.ts +82 -0
  4588. data/node_modules/pirates/lib/index.js +139 -0
  4589. data/node_modules/pirates/package.json +74 -0
  4590. data/node_modules/pkg-dir/index.js +10 -0
  4591. data/node_modules/pkg-dir/license +9 -0
  4592. data/node_modules/pkg-dir/node_modules/find-up/index.js +46 -0
  4593. data/node_modules/pkg-dir/node_modules/find-up/license +9 -0
  4594. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/index.js +24 -0
  4595. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/license +9 -0
  4596. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/index.js +34 -0
  4597. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/license +9 -0
  4598. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit/index.d.ts +38 -0
  4599. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit/index.js +57 -0
  4600. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit/license +9 -0
  4601. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit/package.json +52 -0
  4602. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/node_modules/p-limit/readme.md +101 -0
  4603. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/package.json +51 -0
  4604. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/p-locate/readme.md +88 -0
  4605. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/path-exists/index.js +17 -0
  4606. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/path-exists/license +21 -0
  4607. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/path-exists/package.json +40 -0
  4608. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/node_modules/path-exists/readme.md +50 -0
  4609. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/package.json +44 -0
  4610. data/node_modules/pkg-dir/node_modules/find-up/node_modules/locate-path/readme.md +99 -0
  4611. data/node_modules/pkg-dir/node_modules/find-up/package.json +50 -0
  4612. data/node_modules/pkg-dir/node_modules/find-up/readme.md +87 -0
  4613. data/node_modules/pkg-dir/package.json +53 -0
  4614. data/node_modules/pkg-dir/readme.md +66 -0
  4615. data/node_modules/possible-typed-array-names/CHANGELOG.md +15 -0
  4616. data/node_modules/possible-typed-array-names/LICENSE +21 -0
  4617. data/node_modules/possible-typed-array-names/README.md +48 -0
  4618. data/node_modules/possible-typed-array-names/index.d.ts +15 -0
  4619. data/node_modules/possible-typed-array-names/index.js +16 -0
  4620. data/node_modules/possible-typed-array-names/package.json +83 -0
  4621. data/node_modules/possible-typed-array-names/test/index.js +16 -0
  4622. data/node_modules/possible-typed-array-names/tsconfig.json +49 -0
  4623. data/node_modules/punycode/README.md +23 -1
  4624. data/node_modules/punycode/package.json +3 -3
  4625. data/node_modules/punycode/punycode.es6.js +1 -1
  4626. data/node_modules/punycode/punycode.js +1 -1
  4627. data/node_modules/recast/LICENSE +20 -0
  4628. data/node_modules/recast/README.md +221 -0
  4629. data/node_modules/recast/example/add-braces +44 -0
  4630. data/node_modules/recast/example/generic-identity +17 -0
  4631. data/node_modules/recast/example/identity +8 -0
  4632. data/node_modules/recast/example/to-while +84 -0
  4633. data/node_modules/recast/lib/comments.d.ts +2 -0
  4634. data/node_modules/recast/lib/comments.js +313 -0
  4635. data/node_modules/recast/lib/fast-path.d.ts +25 -0
  4636. data/node_modules/recast/lib/fast-path.js +541 -0
  4637. data/node_modules/recast/lib/lines.d.ts +62 -0
  4638. data/node_modules/recast/lib/lines.js +654 -0
  4639. data/node_modules/recast/lib/mapping.d.ts +15 -0
  4640. data/node_modules/recast/lib/mapping.js +197 -0
  4641. data/node_modules/recast/lib/options.d.ts +147 -0
  4642. data/node_modules/recast/lib/options.js +55 -0
  4643. data/node_modules/recast/lib/parser.d.ts +2 -0
  4644. data/node_modules/recast/lib/parser.js +250 -0
  4645. data/node_modules/recast/lib/patcher.d.ts +12 -0
  4646. data/node_modules/recast/lib/patcher.js +386 -0
  4647. data/node_modules/recast/lib/printer.d.ts +14 -0
  4648. data/node_modules/recast/lib/printer.js +2388 -0
  4649. data/node_modules/recast/lib/util.d.ts +18 -0
  4650. data/node_modules/recast/lib/util.js +331 -0
  4651. data/node_modules/recast/main.d.ts +50 -0
  4652. data/node_modules/recast/main.js +65 -0
  4653. data/node_modules/recast/package.json +74 -0
  4654. data/node_modules/recast/parsers/_babel_options.d.ts +8 -0
  4655. data/node_modules/recast/parsers/_babel_options.js +57 -0
  4656. data/node_modules/recast/parsers/acorn.d.ts +1 -0
  4657. data/node_modules/recast/parsers/acorn.js +33 -0
  4658. data/node_modules/recast/parsers/babel-ts.d.ts +4 -0
  4659. data/node_modules/recast/parsers/babel-ts.js +13 -0
  4660. data/node_modules/recast/parsers/babel.d.ts +8 -0
  4661. data/node_modules/recast/parsers/babel.js +33 -0
  4662. data/node_modules/recast/parsers/babylon.d.ts +1 -0
  4663. data/node_modules/recast/parsers/babylon.js +4 -0
  4664. data/node_modules/recast/parsers/esprima.d.ts +1 -0
  4665. data/node_modules/recast/parsers/esprima.js +30 -0
  4666. data/node_modules/recast/parsers/flow.d.ts +2 -0
  4667. data/node_modules/recast/parsers/flow.js +19 -0
  4668. data/node_modules/recast/parsers/typescript.d.ts +2 -0
  4669. data/node_modules/recast/parsers/typescript.js +19 -0
  4670. data/node_modules/recast/tsconfig.json +18 -0
  4671. data/node_modules/regexp.prototype.flags/CHANGELOG.md +13 -0
  4672. data/node_modules/regexp.prototype.flags/implementation.js +2 -2
  4673. data/node_modules/regexp.prototype.flags/package.json +11 -10
  4674. data/node_modules/regexp.prototype.flags/test/tests.js +13 -13
  4675. data/node_modules/resolve/package.json +4 -3
  4676. data/node_modules/resolve/test/resolver/multirepo/package.json +1 -1
  4677. data/node_modules/resolve/test/resolver.js +4 -2
  4678. data/node_modules/resolve/test/resolver_sync.js +9 -5
  4679. data/node_modules/safe-array-concat/CHANGELOG.md +32 -0
  4680. data/node_modules/safe-array-concat/index.d.ts +3 -0
  4681. data/node_modules/safe-array-concat/index.js +12 -5
  4682. data/node_modules/safe-array-concat/package.json +21 -7
  4683. data/node_modules/safe-array-concat/test/index.js +28 -22
  4684. data/node_modules/safe-array-concat/tsconfig.json +9 -0
  4685. data/node_modules/safe-regex-test/CHANGELOG.md +28 -0
  4686. data/node_modules/safe-regex-test/README.md +6 -2
  4687. data/node_modules/safe-regex-test/index.js +1 -2
  4688. data/node_modules/safe-regex-test/package.json +14 -9
  4689. data/node_modules/set-function-length/CHANGELOG.md +70 -0
  4690. data/node_modules/set-function-length/LICENSE +21 -0
  4691. data/node_modules/set-function-length/README.md +56 -0
  4692. data/node_modules/set-function-length/env.d.ts +9 -0
  4693. data/node_modules/set-function-length/env.js +25 -0
  4694. data/node_modules/set-function-length/index.d.ts +7 -0
  4695. data/node_modules/set-function-length/index.js +42 -0
  4696. data/node_modules/set-function-length/package.json +102 -0
  4697. data/node_modules/set-function-length/tsconfig.json +9 -0
  4698. data/node_modules/set-function-name/CHANGELOG.md +9 -0
  4699. data/node_modules/set-function-name/index.d.ts +5 -0
  4700. data/node_modules/set-function-name/index.js +4 -3
  4701. data/node_modules/set-function-name/package.json +28 -9
  4702. data/node_modules/set-function-name/tsconfig.json +59 -0
  4703. data/node_modules/shallow-clone/LICENSE +21 -0
  4704. data/node_modules/shallow-clone/README.md +153 -0
  4705. data/node_modules/shallow-clone/index.js +83 -0
  4706. data/node_modules/shallow-clone/package.json +64 -0
  4707. data/node_modules/side-channel/CHANGELOG.md +30 -0
  4708. data/node_modules/side-channel/index.d.ts +27 -0
  4709. data/node_modules/side-channel/index.js +25 -20
  4710. data/node_modules/side-channel/package.json +36 -19
  4711. data/node_modules/side-channel/test/index.js +6 -1
  4712. data/node_modules/side-channel/tsconfig.json +50 -0
  4713. data/node_modules/signal-exit/LICENSE.txt +1 -1
  4714. data/node_modules/signal-exit/README.md +21 -56
  4715. data/node_modules/signal-exit/package.json +19 -87
  4716. data/node_modules/string.prototype.trim/CHANGELOG.md +7 -0
  4717. data/node_modules/string.prototype.trim/implementation.js +2 -2
  4718. data/node_modules/string.prototype.trim/index.js +1 -1
  4719. data/node_modules/string.prototype.trim/package.json +8 -7
  4720. data/node_modules/string.prototype.trimend/CHANGELOG.md +7 -0
  4721. data/node_modules/string.prototype.trimend/index.js +1 -1
  4722. data/node_modules/string.prototype.trimend/package.json +7 -7
  4723. data/node_modules/string.prototype.trimstart/CHANGELOG.md +10 -0
  4724. data/node_modules/string.prototype.trimstart/index.js +1 -1
  4725. data/node_modules/string.prototype.trimstart/package.json +10 -7
  4726. data/node_modules/temp/LICENSE +20 -0
  4727. data/node_modules/temp/README.md +295 -0
  4728. data/node_modules/temp/lib/temp.js +314 -0
  4729. data/node_modules/temp/node_modules/rimraf/LICENSE +15 -0
  4730. data/node_modules/temp/node_modules/rimraf/README.md +101 -0
  4731. data/node_modules/temp/node_modules/rimraf/bin.js +50 -0
  4732. data/node_modules/temp/node_modules/rimraf/node_modules/glob/LICENSE +21 -0
  4733. data/node_modules/temp/node_modules/rimraf/node_modules/glob/README.md +378 -0
  4734. data/node_modules/temp/node_modules/rimraf/node_modules/glob/common.js +238 -0
  4735. data/node_modules/temp/node_modules/rimraf/node_modules/glob/glob.js +790 -0
  4736. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/LICENSE +15 -0
  4737. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +230 -0
  4738. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +947 -0
  4739. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/LICENSE +21 -0
  4740. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +129 -0
  4741. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +201 -0
  4742. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +47 -0
  4743. data/node_modules/temp/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +33 -0
  4744. data/node_modules/temp/node_modules/rimraf/node_modules/glob/package.json +55 -0
  4745. data/node_modules/temp/node_modules/rimraf/node_modules/glob/sync.js +486 -0
  4746. data/node_modules/temp/node_modules/rimraf/package.json +29 -0
  4747. data/node_modules/temp/node_modules/rimraf/rimraf.js +364 -0
  4748. data/node_modules/temp/package.json +48 -0
  4749. data/node_modules/tiny-invariant/LICENSE +21 -0
  4750. data/node_modules/tiny-invariant/README.md +109 -0
  4751. data/node_modules/tiny-invariant/dist/esm/package.json +1 -0
  4752. data/node_modules/tiny-invariant/dist/esm/tiny-invariant.d.ts +21 -0
  4753. data/node_modules/tiny-invariant/dist/esm/tiny-invariant.js +15 -0
  4754. data/node_modules/tiny-invariant/dist/tiny-invariant.cjs.js +17 -0
  4755. data/node_modules/tiny-invariant/dist/tiny-invariant.d.ts +21 -0
  4756. data/node_modules/tiny-invariant/dist/tiny-invariant.esm.js +15 -0
  4757. data/node_modules/tiny-invariant/dist/tiny-invariant.js +23 -0
  4758. data/node_modules/tiny-invariant/dist/tiny-invariant.min.js +1 -0
  4759. data/node_modules/tiny-invariant/package.json +89 -0
  4760. data/node_modules/tiny-invariant/src/tiny-invariant.flow.js +12 -0
  4761. data/node_modules/tiny-invariant/src/tiny-invariant.ts +48 -0
  4762. data/node_modules/to-fast-properties/index.js +27 -0
  4763. data/node_modules/to-fast-properties/license +10 -0
  4764. data/node_modules/to-fast-properties/package.json +35 -0
  4765. data/node_modules/to-fast-properties/readme.md +37 -0
  4766. data/node_modules/tslib/CopyrightNotice.txt +15 -0
  4767. data/node_modules/tslib/LICENSE.txt +12 -0
  4768. data/node_modules/tslib/README.md +164 -0
  4769. data/node_modules/tslib/SECURITY.md +41 -0
  4770. data/node_modules/tslib/modules/index.d.ts +37 -0
  4771. data/node_modules/tslib/modules/index.js +68 -0
  4772. data/node_modules/tslib/modules/package.json +3 -0
  4773. data/node_modules/tslib/package.json +47 -0
  4774. data/node_modules/tslib/tslib.d.ts +453 -0
  4775. data/node_modules/tslib/tslib.es6.html +1 -0
  4776. data/node_modules/tslib/tslib.es6.js +370 -0
  4777. data/node_modules/tslib/tslib.es6.mjs +370 -0
  4778. data/node_modules/tslib/tslib.html +1 -0
  4779. data/node_modules/tslib/tslib.js +421 -0
  4780. data/node_modules/typed-array-buffer/CHANGELOG.md +18 -0
  4781. data/node_modules/typed-array-buffer/index.d.ts +16 -0
  4782. data/node_modules/typed-array-buffer/index.js +2 -3
  4783. data/node_modules/typed-array-buffer/package.json +16 -9
  4784. data/node_modules/typed-array-buffer/test/index.js +2 -1
  4785. data/node_modules/typed-array-buffer/tsconfig.json +49 -0
  4786. data/node_modules/typed-array-byte-length/CHANGELOG.md +11 -0
  4787. data/node_modules/typed-array-byte-length/index.d.ts +17 -0
  4788. data/node_modules/typed-array-byte-length/index.js +19 -7
  4789. data/node_modules/typed-array-byte-length/package.json +22 -9
  4790. data/node_modules/typed-array-byte-length/test/index.js +1 -0
  4791. data/node_modules/typed-array-byte-length/tsconfig.json +49 -0
  4792. data/node_modules/typed-array-byte-offset/CHANGELOG.md +18 -0
  4793. data/node_modules/typed-array-byte-offset/index.d.ts +17 -0
  4794. data/node_modules/typed-array-byte-offset/index.js +15 -3
  4795. data/node_modules/typed-array-byte-offset/package.json +22 -9
  4796. data/node_modules/typed-array-byte-offset/test/index.js +2 -13
  4797. data/node_modules/typed-array-byte-offset/tsconfig.json +49 -0
  4798. data/node_modules/typed-array-length/CHANGELOG.md +24 -0
  4799. data/node_modules/typed-array-length/index.d.ts +23 -0
  4800. data/node_modules/typed-array-length/index.js +30 -27
  4801. data/node_modules/typed-array-length/package.json +30 -9
  4802. data/node_modules/typed-array-length/test/index.js +3 -14
  4803. data/node_modules/typed-array-length/tsconfig.json +9 -0
  4804. data/node_modules/update-browserslist-db/LICENSE +20 -0
  4805. data/node_modules/update-browserslist-db/README.md +22 -0
  4806. data/node_modules/update-browserslist-db/check-npm-version.js +17 -0
  4807. data/node_modules/update-browserslist-db/cli.js +42 -0
  4808. data/node_modules/update-browserslist-db/index.d.ts +6 -0
  4809. data/node_modules/update-browserslist-db/index.js +333 -0
  4810. data/node_modules/update-browserslist-db/package.json +40 -0
  4811. data/node_modules/update-browserslist-db/utils.js +25 -0
  4812. data/node_modules/update-notifier/node_modules/chalk/license +9 -0
  4813. data/node_modules/update-notifier/node_modules/chalk/package.json +83 -0
  4814. data/node_modules/update-notifier/node_modules/chalk/readme.md +325 -0
  4815. data/node_modules/update-notifier/node_modules/chalk/source/index.d.ts +320 -0
  4816. data/node_modules/update-notifier/node_modules/chalk/source/index.js +225 -0
  4817. data/node_modules/update-notifier/node_modules/chalk/source/utilities.js +33 -0
  4818. data/node_modules/update-notifier/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +236 -0
  4819. data/node_modules/update-notifier/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
  4820. data/node_modules/update-notifier/node_modules/chalk/source/vendor/supports-color/browser.d.ts +1 -0
  4821. data/node_modules/update-notifier/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
  4822. data/node_modules/update-notifier/node_modules/chalk/source/vendor/supports-color/index.d.ts +55 -0
  4823. data/node_modules/update-notifier/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
  4824. data/node_modules/which-typed-array/CHANGELOG.md +34 -0
  4825. data/node_modules/which-typed-array/index.d.ts +61 -0
  4826. data/node_modules/which-typed-array/index.js +45 -18
  4827. data/node_modules/which-typed-array/package.json +20 -7
  4828. data/node_modules/which-typed-array/test/index.js +7 -1
  4829. data/node_modules/which-typed-array/tsconfig.json +9 -0
  4830. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/index.d.ts +15 -0
  4831. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/index.js +14 -0
  4832. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/license +9 -0
  4833. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +33 -0
  4834. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js +8 -0
  4835. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/license +9 -0
  4836. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/package.json +58 -0
  4837. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +72 -0
  4838. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/package.json +57 -0
  4839. data/node_modules/widest-line/node_modules/string-width/node_modules/strip-ansi/readme.md +41 -0
  4840. data/node_modules/word-wrap/README.md +201 -0
  4841. data/node_modules/word-wrap/index.d.ts +50 -0
  4842. data/node_modules/word-wrap/index.js +61 -0
  4843. data/node_modules/word-wrap/package.json +77 -0
  4844. data/node_modules/wrap-ansi/node_modules/strip-ansi/index.d.ts +15 -0
  4845. data/node_modules/wrap-ansi/node_modules/strip-ansi/index.js +14 -0
  4846. data/node_modules/wrap-ansi/node_modules/strip-ansi/license +9 -0
  4847. data/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +33 -0
  4848. data/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.js +8 -0
  4849. data/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/license +9 -0
  4850. data/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/package.json +58 -0
  4851. data/node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +72 -0
  4852. data/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +57 -0
  4853. data/node_modules/wrap-ansi/node_modules/strip-ansi/readme.md +41 -0
  4854. data/node_modules/write-file-atomic/CHANGELOG.md +0 -7
  4855. data/node_modules/write-file-atomic/README.md +3 -19
  4856. data/node_modules/write-file-atomic/index.js +136 -157
  4857. data/node_modules/write-file-atomic/package.json +13 -20
  4858. data/package.json +8 -2
  4859. metadata +3473 -776
  4860. data/node_modules/@aashutoshrathi/word-wrap/README.md +0 -182
  4861. data/node_modules/@aashutoshrathi/word-wrap/index.d.ts +0 -50
  4862. data/node_modules/@aashutoshrathi/word-wrap/index.js +0 -52
  4863. data/node_modules/@aashutoshrathi/word-wrap/package.json +0 -81
  4864. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/LICENSE +0 -19
  4865. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/README.md +0 -299
  4866. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/bin/eslint.js +0 -140
  4867. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/conf/config-schema.js +0 -93
  4868. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/conf/default-cli-options.js +0 -32
  4869. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/conf/globals.js +0 -154
  4870. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/conf/replacements.json +0 -22
  4871. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/conf/rule-type-list.json +0 -36
  4872. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/api.js +0 -26
  4873. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/cli-engine.js +0 -1078
  4874. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/file-enumerator.js +0 -547
  4875. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +0 -60
  4876. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/compact.js +0 -60
  4877. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +0 -46
  4878. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/html.js +0 -351
  4879. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +0 -41
  4880. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/json-with-metadata.js +0 -16
  4881. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/json.js +0 -13
  4882. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/junit.js +0 -82
  4883. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/stylish.js +0 -101
  4884. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/tap.js +0 -95
  4885. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/unix.js +0 -58
  4886. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +0 -63
  4887. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/hash.js +0 -35
  4888. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/index.js +0 -7
  4889. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/lint-result-cache.js +0 -191
  4890. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/load-rules.js +0 -46
  4891. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli-engine/xml-escape.js +0 -34
  4892. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/cli.js +0 -441
  4893. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/config/default-config.js +0 -67
  4894. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/config/flat-config-array.js +0 -274
  4895. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/config/flat-config-helpers.js +0 -111
  4896. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/config/flat-config-schema.js +0 -545
  4897. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/config/rule-validator.js +0 -158
  4898. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/eslint/eslint-helpers.js +0 -904
  4899. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/eslint/eslint.js +0 -700
  4900. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/eslint/flat-eslint.js +0 -1140
  4901. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/eslint/index.js +0 -9
  4902. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/apply-disable-directives.js +0 -351
  4903. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +0 -852
  4904. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/code-path-segment.js +0 -263
  4905. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/code-path-state.js +0 -1483
  4906. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +0 -248
  4907. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/debug-helpers.js +0 -203
  4908. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +0 -248
  4909. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/code-path-analysis/id-generator.js +0 -45
  4910. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/config-comment-parser.js +0 -151
  4911. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/index.js +0 -13
  4912. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/interpolate.js +0 -28
  4913. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/linter.js +0 -2134
  4914. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/node-event-generator.js +0 -354
  4915. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/report-translator.js +0 -369
  4916. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/rule-fixer.js +0 -140
  4917. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/rules.js +0 -80
  4918. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/safe-emitter.js +0 -52
  4919. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/source-code-fixer.js +0 -152
  4920. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/linter/timing.js +0 -161
  4921. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/options.js +0 -377
  4922. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +0 -1122
  4923. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rule-tester/index.js +0 -5
  4924. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rule-tester/rule-tester.js +0 -1206
  4925. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/accessor-pairs.js +0 -346
  4926. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/array-bracket-newline.js +0 -258
  4927. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/array-bracket-spacing.js +0 -241
  4928. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/array-callback-return.js +0 -446
  4929. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/array-element-newline.js +0 -308
  4930. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/arrow-body-style.js +0 -296
  4931. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/arrow-parens.js +0 -183
  4932. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/arrow-spacing.js +0 -161
  4933. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/block-scoped-var.js +0 -135
  4934. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/block-spacing.js +0 -171
  4935. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/brace-style.js +0 -194
  4936. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/callback-return.js +0 -187
  4937. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/camelcase.js +0 -399
  4938. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/capitalized-comments.js +0 -300
  4939. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/class-methods-use-this.js +0 -187
  4940. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/comma-dangle.js +0 -370
  4941. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/comma-spacing.js +0 -189
  4942. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/comma-style.js +0 -311
  4943. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/complexity.js +0 -165
  4944. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/computed-property-spacing.js +0 -205
  4945. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/consistent-return.js +0 -210
  4946. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/consistent-this.js +0 -153
  4947. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/constructor-super.js +0 -446
  4948. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/curly.js +0 -486
  4949. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/default-case-last.js +0 -44
  4950. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/default-case.js +0 -97
  4951. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/default-param-last.js +0 -62
  4952. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/dot-location.js +0 -105
  4953. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/dot-notation.js +0 -176
  4954. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/eol-last.js +0 -112
  4955. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/eqeqeq.js +0 -174
  4956. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/for-direction.js +0 -133
  4957. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/func-call-spacing.js +0 -230
  4958. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/func-name-matching.js +0 -253
  4959. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/func-names.js +0 -191
  4960. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/func-style.js +0 -98
  4961. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/function-call-argument-newline.js +0 -122
  4962. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/function-paren-newline.js +0 -289
  4963. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/generator-star-spacing.js +0 -206
  4964. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/getter-return.js +0 -204
  4965. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/global-require.js +0 -90
  4966. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/grouped-accessor-pairs.js +0 -215
  4967. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/guard-for-in.js +0 -76
  4968. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/handle-callback-err.js +0 -101
  4969. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/id-blacklist.js +0 -246
  4970. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/id-denylist.js +0 -228
  4971. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/id-length.js +0 -177
  4972. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/id-match.js +0 -299
  4973. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +0 -81
  4974. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/indent-legacy.js +0 -1126
  4975. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/indent.js +0 -1800
  4976. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/index.js +0 -306
  4977. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/init-declarations.js +0 -139
  4978. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/jsx-quotes.js +0 -95
  4979. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/key-spacing.js +0 -684
  4980. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/keyword-spacing.js +0 -637
  4981. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/line-comment-position.js +0 -122
  4982. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/linebreak-style.js +0 -105
  4983. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/lines-around-comment.js +0 -468
  4984. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/lines-around-directive.js +0 -201
  4985. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/lines-between-class-members.js +0 -266
  4986. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/logical-assignment-operators.js +0 -476
  4987. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-classes-per-file.js +0 -89
  4988. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-depth.js +0 -156
  4989. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-len.js +0 -437
  4990. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-lines-per-function.js +0 -213
  4991. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-lines.js +0 -193
  4992. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-nested-callbacks.js +0 -117
  4993. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-params.js +0 -102
  4994. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-statements-per-line.js +0 -196
  4995. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/max-statements.js +0 -184
  4996. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/multiline-comment-style.js +0 -474
  4997. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/multiline-ternary.js +0 -171
  4998. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/new-cap.js +0 -276
  4999. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/new-parens.js +0 -90
  5000. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/newline-after-var.js +0 -253
  5001. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/newline-before-return.js +0 -217
  5002. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/newline-per-chained-call.js +0 -123
  5003. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-alert.js +0 -138
  5004. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-array-constructor.js +0 -54
  5005. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-async-promise-executor.js +0 -39
  5006. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-await-in-loop.js +0 -106
  5007. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-bitwise.js +0 -119
  5008. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-buffer-constructor.js +0 -50
  5009. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-caller.js +0 -46
  5010. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-case-declarations.js +0 -64
  5011. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-catch-shadow.js +0 -82
  5012. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-class-assign.js +0 -63
  5013. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-compare-neg-zero.js +0 -60
  5014. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-cond-assign.js +0 -159
  5015. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-confusing-arrow.js +0 -89
  5016. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-console.js +0 -135
  5017. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-const-assign.js +0 -56
  5018. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-constant-binary-expression.js +0 -509
  5019. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-constant-condition.js +0 -150
  5020. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-constructor-return.js +0 -62
  5021. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-continue.js +0 -39
  5022. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-control-regex.js +0 -138
  5023. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-debugger.js +0 -43
  5024. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-delete-var.js +0 -42
  5025. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-div-regex.js +0 -53
  5026. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-dupe-args.js +0 -82
  5027. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-dupe-class-members.js +0 -104
  5028. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-dupe-else-if.js +0 -122
  5029. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-dupe-keys.js +0 -142
  5030. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-duplicate-case.js +0 -71
  5031. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-duplicate-imports.js +0 -290
  5032. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-else-return.js +0 -405
  5033. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-empty-character-class.js +0 -76
  5034. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-empty-function.js +0 -167
  5035. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-empty-pattern.js +0 -78
  5036. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-empty-static-block.js +0 -47
  5037. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-empty.js +0 -103
  5038. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-eq-null.js +0 -46
  5039. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-eval.js +0 -286
  5040. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-ex-assign.js +0 -54
  5041. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extend-native.js +0 -179
  5042. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extra-bind.js +0 -213
  5043. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +0 -317
  5044. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extra-label.js +0 -149
  5045. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extra-parens.js +0 -1319
  5046. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-extra-semi.js +0 -144
  5047. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-fallthrough.js +0 -196
  5048. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-floating-decimal.js +0 -70
  5049. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-func-assign.js +0 -78
  5050. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-global-assign.js +0 -95
  5051. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-implicit-coercion.js +0 -380
  5052. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-implicit-globals.js +0 -146
  5053. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-implied-eval.js +0 -132
  5054. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-import-assign.js +0 -241
  5055. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-inline-comments.js +0 -110
  5056. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-inner-declarations.js +0 -110
  5057. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-invalid-regexp.js +0 -194
  5058. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-invalid-this.js +0 -150
  5059. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-irregular-whitespace.js +0 -276
  5060. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-iterator.js +0 -52
  5061. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-label-var.js +0 -80
  5062. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-labels.js +0 -149
  5063. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-lone-blocks.js +0 -136
  5064. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-lonely-if.js +0 -88
  5065. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-loop-func.js +0 -206
  5066. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-loss-of-precision.js +0 -214
  5067. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-magic-numbers.js +0 -243
  5068. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-misleading-character-class.js +0 -300
  5069. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-mixed-operators.js +0 -226
  5070. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-mixed-requires.js +0 -238
  5071. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +0 -113
  5072. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-multi-assign.js +0 -67
  5073. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-multi-spaces.js +0 -138
  5074. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-multi-str.js +0 -65
  5075. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +0 -151
  5076. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-native-reassign.js +0 -98
  5077. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-negated-condition.js +0 -95
  5078. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-negated-in-lhs.js +0 -46
  5079. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-nested-ternary.js +0 -44
  5080. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-func.js +0 -87
  5081. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +0 -66
  5082. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-object.js +0 -67
  5083. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-require.js +0 -50
  5084. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-symbol.js +0 -56
  5085. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new-wrappers.js +0 -60
  5086. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-new.js +0 -43
  5087. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-nonoctal-decimal-escape.js +0 -148
  5088. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-obj-calls.js +0 -86
  5089. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-object-constructor.js +0 -118
  5090. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-octal-escape.js +0 -56
  5091. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-octal.js +0 -45
  5092. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-param-reassign.js +0 -230
  5093. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-path-concat.js +0 -64
  5094. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-plusplus.js +0 -105
  5095. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-process-env.js +0 -51
  5096. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-process-exit.js +0 -47
  5097. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-promise-executor-return.js +0 -260
  5098. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-proto.js +0 -48
  5099. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-prototype-builtins.js +0 -71
  5100. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-redeclare.js +0 -174
  5101. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-regex-spaces.js +0 -197
  5102. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-exports.js +0 -193
  5103. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-globals.js +0 -124
  5104. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-imports.js +0 -387
  5105. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-modules.js +0 -213
  5106. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-properties.js +0 -181
  5107. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-restricted-syntax.js +0 -70
  5108. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-return-assign.js +0 -80
  5109. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-return-await.js +0 -135
  5110. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-script-url.js +0 -61
  5111. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-self-assign.js +0 -183
  5112. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-self-compare.js +0 -60
  5113. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-sequences.js +0 -138
  5114. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-setter-return.js +0 -226
  5115. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +0 -65
  5116. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-shadow.js +0 -336
  5117. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-spaced-func.js +0 -83
  5118. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-sparse-arrays.js +0 -50
  5119. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-sync.js +0 -64
  5120. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-tabs.js +0 -78
  5121. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-template-curly-in-string.js +0 -44
  5122. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-ternary.js +0 -41
  5123. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-this-before-super.js +0 -331
  5124. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-throw-literal.js +0 -51
  5125. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-trailing-spaces.js +0 -190
  5126. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-undef-init.js +0 -75
  5127. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-undef.js +0 -79
  5128. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-undefined.js +0 -86
  5129. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-underscore-dangle.js +0 -335
  5130. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unexpected-multiline.js +0 -120
  5131. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unmodified-loop-condition.js +0 -360
  5132. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unneeded-ternary.js +0 -166
  5133. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unreachable-loop.js +0 -185
  5134. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unreachable.js +0 -293
  5135. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unsafe-finally.js +0 -111
  5136. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unsafe-negation.js +0 -128
  5137. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +0 -205
  5138. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unused-expressions.js +0 -186
  5139. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unused-labels.js +0 -143
  5140. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unused-private-class-members.js +0 -195
  5141. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-unused-vars.js +0 -718
  5142. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-use-before-define.js +0 -348
  5143. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-backreference.js +0 -194
  5144. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-call.js +0 -90
  5145. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-catch.js +0 -57
  5146. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-computed-key.js +0 -168
  5147. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-concat.js +0 -115
  5148. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-constructor.js +0 -189
  5149. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-escape.js +0 -333
  5150. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-rename.js +0 -172
  5151. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-useless-return.js +0 -364
  5152. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-var.js +0 -334
  5153. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-void.js +0 -64
  5154. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-warning-comments.js +0 -201
  5155. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-whitespace-before-property.js +0 -113
  5156. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/no-with.js +0 -39
  5157. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +0 -124
  5158. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/object-curly-newline.js +0 -321
  5159. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/object-curly-spacing.js +0 -308
  5160. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/object-property-newline.js +0 -99
  5161. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/object-shorthand.js +0 -520
  5162. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +0 -92
  5163. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/one-var.js +0 -567
  5164. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/operator-assignment.js +0 -209
  5165. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/operator-linebreak.js +0 -250
  5166. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/padded-blocks.js +0 -307
  5167. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/padding-line-between-statements.js +0 -587
  5168. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-arrow-callback.js +0 -381
  5169. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-const.js +0 -501
  5170. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-destructuring.js +0 -301
  5171. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +0 -191
  5172. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-named-capture-group.js +0 -178
  5173. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-numeric-literals.js +0 -148
  5174. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-object-has-own.js +0 -114
  5175. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-object-spread.js +0 -298
  5176. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-promise-reject-errors.js +0 -132
  5177. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-reflect.js +0 -127
  5178. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-regex-literals.js +0 -507
  5179. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-rest-params.js +0 -118
  5180. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-spread.js +0 -87
  5181. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/prefer-template.js +0 -275
  5182. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/quote-props.js +0 -307
  5183. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/quotes.js +0 -347
  5184. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/radix.js +0 -198
  5185. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/require-atomic-updates.js +0 -331
  5186. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/require-await.js +0 -113
  5187. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/require-jsdoc.js +0 -122
  5188. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/require-unicode-regexp.js +0 -129
  5189. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/require-yield.js +0 -77
  5190. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/rest-spread-spacing.js +0 -120
  5191. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/semi-spacing.js +0 -245
  5192. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/semi-style.js +0 -155
  5193. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/semi.js +0 -435
  5194. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/sort-imports.js +0 -241
  5195. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/sort-keys.js +0 -230
  5196. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/sort-vars.js +0 -104
  5197. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/space-before-blocks.js +0 -201
  5198. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/space-before-function-paren.js +0 -164
  5199. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/space-in-parens.js +0 -282
  5200. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/space-infix-ops.js +0 -195
  5201. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/space-unary-ops.js +0 -321
  5202. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/spaced-comment.js +0 -382
  5203. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/strict.js +0 -277
  5204. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/switch-colon-spacing.js +0 -129
  5205. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/symbol-description.js +0 -73
  5206. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/template-curly-spacing.js +0 -141
  5207. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/template-tag-spacing.js +0 -90
  5208. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/unicode-bom.js +0 -73
  5209. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/use-isnan.js +0 -141
  5210. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/ast-utils.js +0 -2172
  5211. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/fix-tracker.js +0 -114
  5212. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/keywords.js +0 -67
  5213. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +0 -115
  5214. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/patterns/letters.js +0 -36
  5215. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/regular-expressions.js +0 -42
  5216. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/unicode/index.js +0 -11
  5217. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/unicode/is-combining-character.js +0 -13
  5218. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/unicode/is-emoji-modifier.js +0 -13
  5219. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/unicode/is-regional-indicator-symbol.js +0 -13
  5220. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/utils/unicode/is-surrogate-pair.js +0 -14
  5221. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/valid-jsdoc.js +0 -516
  5222. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/valid-typeof.js +0 -127
  5223. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/vars-on-top.js +0 -157
  5224. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/wrap-iife.js +0 -204
  5225. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/wrap-regex.js +0 -58
  5226. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/yield-star-spacing.js +0 -127
  5227. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/rules/yoda.js +0 -353
  5228. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/ajv.js +0 -34
  5229. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/ast-utils.js +0 -29
  5230. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/config-validator.js +0 -347
  5231. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/deprecation-warnings.js +0 -58
  5232. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/directives.js +0 -15
  5233. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/logging.js +0 -30
  5234. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/relative-module-resolver.js +0 -50
  5235. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/runtime-info.js +0 -167
  5236. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/string-utils.js +0 -60
  5237. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/traverser.js +0 -195
  5238. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/shared/types.js +0 -216
  5239. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/index.js +0 -5
  5240. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/source-code.js +0 -1076
  5241. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/backward-token-comment-cursor.js +0 -57
  5242. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +0 -58
  5243. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/cursor.js +0 -76
  5244. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/cursors.js +0 -90
  5245. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/decorative-cursor.js +0 -39
  5246. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/filter-cursor.js +0 -43
  5247. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +0 -57
  5248. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +0 -63
  5249. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/index.js +0 -627
  5250. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/limit-cursor.js +0 -40
  5251. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/padded-token-cursor.js +0 -38
  5252. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/skip-cursor.js +0 -42
  5253. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/source-code/token-store/utils.js +0 -107
  5254. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/lib/unsupported-api.js +0 -30
  5255. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/all-files-ignored.js +0 -16
  5256. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/eslintrc-incompat.js +0 -98
  5257. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/eslintrc-plugins.js +0 -24
  5258. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/extend-config-missing.js +0 -13
  5259. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/failed-to-read-json.js +0 -11
  5260. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/file-not-found.js +0 -10
  5261. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/invalid-rule-options.js +0 -17
  5262. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/invalid-rule-severity.js +0 -13
  5263. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/no-config-found.js +0 -15
  5264. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/plugin-conflict.js +0 -22
  5265. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/plugin-invalid.js +0 -16
  5266. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/plugin-missing.js +0 -19
  5267. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/print-config-with-directory-path.js +0 -8
  5268. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/shared.js +0 -18
  5269. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/messages/whitespace-found.js +0 -11
  5270. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/LICENSE +0 -19
  5271. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/README.md +0 -71
  5272. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/conf/config-schema.js +0 -79
  5273. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/conf/environments.js +0 -215
  5274. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +0 -1104
  5275. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +0 -1
  5276. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +0 -4333
  5277. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +0 -1
  5278. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +0 -532
  5279. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +0 -523
  5280. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +0 -115
  5281. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +0 -145
  5282. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +0 -238
  5283. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/index.js +0 -19
  5284. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +0 -225
  5285. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js +0 -1149
  5286. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/flat-compat.js +0 -318
  5287. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index-universal.js +0 -29
  5288. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index.js +0 -56
  5289. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/ajv.js +0 -191
  5290. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +0 -135
  5291. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +0 -325
  5292. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +0 -63
  5293. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/naming.js +0 -96
  5294. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +0 -42
  5295. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/types.js +0 -149
  5296. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/strip-json-comments/index.d.ts +0 -36
  5297. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/strip-json-comments/index.js +0 -77
  5298. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/strip-json-comments/package.json +0 -47
  5299. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/strip-json-comments/readme.md +0 -78
  5300. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/package.json +0 -82
  5301. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/universal.js +0 -9
  5302. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/LICENSE +0 -19
  5303. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/README.md +0 -57
  5304. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/package.json +0 -31
  5305. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-all.js +0 -278
  5306. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js +0 -76
  5307. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/js/src/index.js +0 -17
  5308. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/LICENSE +0 -201
  5309. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/README.md +0 -342
  5310. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/api.js +0 -1061
  5311. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/CHANGELOG.md +0 -8
  5312. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/LICENSE +0 -29
  5313. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/README.md +0 -234
  5314. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/package.json +0 -33
  5315. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/src/index.js +0 -7
  5316. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/src/merge-strategy.js +0 -53
  5317. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/src/object-schema.js +0 -235
  5318. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/src/validation-strategy.js +0 -102
  5319. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/tests/merge-strategy.js +0 -66
  5320. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/tests/object-schema.js +0 -611
  5321. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/@humanwhocodes/object-schema/tests/validation-strategy.js +0 -186
  5322. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/minimatch/README.md +0 -224
  5323. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/minimatch/minimatch.js +0 -947
  5324. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/minimatch/package.json +0 -33
  5325. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/package.json +0 -61
  5326. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/index.d.ts +0 -17
  5327. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/index.js +0 -4
  5328. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex/index.d.ts +0 -37
  5329. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex/index.js +0 -10
  5330. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex/package.json +0 -55
  5331. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +0 -78
  5332. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/package.json +0 -54
  5333. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/readme.md +0 -46
  5334. data/node_modules/@eslint-community/eslint-utils/node_modules/eslint/package.json +0 -174
  5335. data/node_modules/@ungap/structured-clone/LICENSE +0 -15
  5336. data/node_modules/@ungap/structured-clone/README.md +0 -95
  5337. data/node_modules/@ungap/structured-clone/cjs/deserialize.js +0 -78
  5338. data/node_modules/@ungap/structured-clone/cjs/index.js +0 -27
  5339. data/node_modules/@ungap/structured-clone/cjs/json.js +0 -24
  5340. data/node_modules/@ungap/structured-clone/cjs/package.json +0 -1
  5341. data/node_modules/@ungap/structured-clone/cjs/serialize.js +0 -160
  5342. data/node_modules/@ungap/structured-clone/cjs/types.js +0 -22
  5343. data/node_modules/@ungap/structured-clone/esm/deserialize.js +0 -79
  5344. data/node_modules/@ungap/structured-clone/esm/index.js +0 -25
  5345. data/node_modules/@ungap/structured-clone/esm/json.js +0 -21
  5346. data/node_modules/@ungap/structured-clone/esm/serialize.js +0 -161
  5347. data/node_modules/@ungap/structured-clone/esm/types.js +0 -11
  5348. data/node_modules/@ungap/structured-clone/package.json +0 -53
  5349. data/node_modules/@ungap/structured-clone/structured-json.js +0 -1
  5350. data/node_modules/array.prototype.findlastindex/index.mjs +0 -18
  5351. data/node_modules/array.prototype.findlastindex/test/index.mjs +0 -31
  5352. data/node_modules/boxen/node_modules/type-fest/index.d.ts +0 -95
  5353. data/node_modules/boxen/node_modules/type-fest/package.json +0 -52
  5354. data/node_modules/boxen/node_modules/type-fest/readme.md +0 -905
  5355. data/node_modules/boxen/node_modules/type-fest/source/async-return-type.d.ts +0 -25
  5356. data/node_modules/boxen/node_modules/type-fest/source/asyncify.d.ts +0 -33
  5357. data/node_modules/boxen/node_modules/type-fest/source/basic.d.ts +0 -45
  5358. data/node_modules/boxen/node_modules/type-fest/source/camel-case.d.ts +0 -73
  5359. data/node_modules/boxen/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +0 -54
  5360. data/node_modules/boxen/node_modules/type-fest/source/camel-cased-properties.d.ts +0 -36
  5361. data/node_modules/boxen/node_modules/type-fest/source/conditional-except.d.ts +0 -45
  5362. data/node_modules/boxen/node_modules/type-fest/source/conditional-keys.d.ts +0 -47
  5363. data/node_modules/boxen/node_modules/type-fest/source/conditional-pick.d.ts +0 -44
  5364. data/node_modules/boxen/node_modules/type-fest/source/delimiter-case.d.ts +0 -93
  5365. data/node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +0 -60
  5366. data/node_modules/boxen/node_modules/type-fest/source/delimiter-cased-properties.d.ts +0 -37
  5367. data/node_modules/boxen/node_modules/type-fest/source/entries.d.ts +0 -62
  5368. data/node_modules/boxen/node_modules/type-fest/source/entry.d.ts +0 -65
  5369. data/node_modules/boxen/node_modules/type-fest/source/exact.d.ts +0 -73
  5370. data/node_modules/boxen/node_modules/type-fest/source/except.d.ts +0 -57
  5371. data/node_modules/boxen/node_modules/type-fest/source/fixed-length-array.d.ts +0 -43
  5372. data/node_modules/boxen/node_modules/type-fest/source/get.d.ts +0 -184
  5373. data/node_modules/boxen/node_modules/type-fest/source/has-optional-keys.d.ts +0 -21
  5374. data/node_modules/boxen/node_modules/type-fest/source/has-required-keys.d.ts +0 -59
  5375. data/node_modules/boxen/node_modules/type-fest/source/includes.d.ts +0 -22
  5376. data/node_modules/boxen/node_modules/type-fest/source/internal.d.ts +0 -59
  5377. data/node_modules/boxen/node_modules/type-fest/source/invariant-of.d.ts +0 -76
  5378. data/node_modules/boxen/node_modules/type-fest/source/iterable-element.d.ts +0 -54
  5379. data/node_modules/boxen/node_modules/type-fest/source/join.d.ts +0 -30
  5380. data/node_modules/boxen/node_modules/type-fest/source/jsonify.d.ts +0 -90
  5381. data/node_modules/boxen/node_modules/type-fest/source/kebab-case.d.ts +0 -38
  5382. data/node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +0 -47
  5383. data/node_modules/boxen/node_modules/type-fest/source/kebab-cased-properties.d.ts +0 -30
  5384. data/node_modules/boxen/node_modules/type-fest/source/last-array-element.d.ts +0 -28
  5385. data/node_modules/boxen/node_modules/type-fest/source/literal-to-primitive.d.ts +0 -36
  5386. data/node_modules/boxen/node_modules/type-fest/source/literal-union.d.ts +0 -35
  5387. data/node_modules/boxen/node_modules/type-fest/source/merge-exclusive.d.ts +0 -41
  5388. data/node_modules/boxen/node_modules/type-fest/source/merge.d.ts +0 -27
  5389. data/node_modules/boxen/node_modules/type-fest/source/multidimensional-array.d.ts +0 -43
  5390. data/node_modules/boxen/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +0 -47
  5391. data/node_modules/boxen/node_modules/type-fest/source/mutable.d.ts +0 -5
  5392. data/node_modules/boxen/node_modules/type-fest/source/numeric.d.ts +0 -170
  5393. data/node_modules/boxen/node_modules/type-fest/source/observable-like.d.ts +0 -62
  5394. data/node_modules/boxen/node_modules/type-fest/source/opaque.d.ts +0 -107
  5395. data/node_modules/boxen/node_modules/type-fest/source/optional-keys-of.d.ts +0 -38
  5396. data/node_modules/boxen/node_modules/type-fest/source/package-json.d.ts +0 -663
  5397. data/node_modules/boxen/node_modules/type-fest/source/partial-deep.d.ts +0 -113
  5398. data/node_modules/boxen/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +0 -70
  5399. data/node_modules/boxen/node_modules/type-fest/source/pascal-case.d.ts +0 -38
  5400. data/node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +0 -54
  5401. data/node_modules/boxen/node_modules/type-fest/source/pascal-cased-properties.d.ts +0 -34
  5402. data/node_modules/boxen/node_modules/type-fest/source/primitive.d.ts +0 -13
  5403. data/node_modules/boxen/node_modules/type-fest/source/promisable.d.ts +0 -25
  5404. data/node_modules/boxen/node_modules/type-fest/source/promise-value.d.ts +0 -29
  5405. data/node_modules/boxen/node_modules/type-fest/source/readonly-deep.d.ts +0 -85
  5406. data/node_modules/boxen/node_modules/type-fest/source/readonly-tuple.d.ts +0 -41
  5407. data/node_modules/boxen/node_modules/type-fest/source/remove-index-signature.d.ts +0 -104
  5408. data/node_modules/boxen/node_modules/type-fest/source/replace.d.ts +0 -67
  5409. data/node_modules/boxen/node_modules/type-fest/source/require-all-or-none.d.ts +0 -36
  5410. data/node_modules/boxen/node_modules/type-fest/source/require-at-least-one.d.ts +0 -35
  5411. data/node_modules/boxen/node_modules/type-fest/source/require-exactly-one.d.ts +0 -34
  5412. data/node_modules/boxen/node_modules/type-fest/source/required-keys-of.d.ts +0 -29
  5413. data/node_modules/boxen/node_modules/type-fest/source/schema.d.ts +0 -72
  5414. data/node_modules/boxen/node_modules/type-fest/source/screaming-snake-case.d.ts +0 -33
  5415. data/node_modules/boxen/node_modules/type-fest/source/set-non-nullable.d.ts +0 -35
  5416. data/node_modules/boxen/node_modules/type-fest/source/set-optional.d.ts +0 -35
  5417. data/node_modules/boxen/node_modules/type-fest/source/set-required.d.ts +0 -35
  5418. data/node_modules/boxen/node_modules/type-fest/source/set-return-type.d.ts +0 -31
  5419. data/node_modules/boxen/node_modules/type-fest/source/simplify.d.ts +0 -83
  5420. data/node_modules/boxen/node_modules/type-fest/source/snake-case.d.ts +0 -38
  5421. data/node_modules/boxen/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +0 -47
  5422. data/node_modules/boxen/node_modules/type-fest/source/snake-cased-properties.d.ts +0 -30
  5423. data/node_modules/boxen/node_modules/type-fest/source/split.d.ts +0 -29
  5424. data/node_modules/boxen/node_modules/type-fest/source/spread.d.ts +0 -85
  5425. data/node_modules/boxen/node_modules/type-fest/source/string-key-of.d.ts +0 -25
  5426. data/node_modules/boxen/node_modules/type-fest/source/stringified.d.ts +0 -23
  5427. data/node_modules/boxen/node_modules/type-fest/source/trim.d.ts +0 -25
  5428. data/node_modules/boxen/node_modules/type-fest/source/tsconfig-json.d.ts +0 -1172
  5429. data/node_modules/boxen/node_modules/type-fest/source/typed-array.d.ts +0 -17
  5430. data/node_modules/boxen/node_modules/type-fest/source/union-to-intersection.d.ts +0 -60
  5431. data/node_modules/boxen/node_modules/type-fest/source/value-of.d.ts +0 -42
  5432. data/node_modules/boxen/node_modules/type-fest/source/writable.d.ts +0 -40
  5433. data/node_modules/call-bind/node_modules/function-bind/LICENSE +0 -20
  5434. data/node_modules/call-bind/node_modules/function-bind/README.md +0 -48
  5435. data/node_modules/call-bind/node_modules/function-bind/implementation.js +0 -52
  5436. data/node_modules/call-bind/node_modules/function-bind/index.js +0 -5
  5437. data/node_modules/call-bind/node_modules/function-bind/package.json +0 -63
  5438. data/node_modules/call-bind/node_modules/function-bind/test/index.js +0 -252
  5439. data/node_modules/define-data-property/index.d.ts.map +0 -1
  5440. data/node_modules/define-data-property/tsinit +0 -109
  5441. data/node_modules/es-abstract/helpers/isMatchRecord.js +0 -16
  5442. data/node_modules/es-abstract/helpers/isPropertyDescriptor.js +0 -31
  5443. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/CHANGELOG.md +0 -173
  5444. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/LICENSE +0 -20
  5445. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/README.md +0 -40
  5446. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/core.json +0 -158
  5447. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/index.js +0 -69
  5448. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/package.json +0 -73
  5449. data/node_modules/eslint-import-resolver-node/node_modules/is-core-module/test/index.js +0 -133
  5450. data/node_modules/flatted/types.d.ts +0 -62
  5451. data/node_modules/get-intrinsic/node_modules/function-bind/LICENSE +0 -20
  5452. data/node_modules/get-intrinsic/node_modules/function-bind/README.md +0 -48
  5453. data/node_modules/get-intrinsic/node_modules/function-bind/implementation.js +0 -52
  5454. data/node_modules/get-intrinsic/node_modules/function-bind/index.js +0 -5
  5455. data/node_modules/get-intrinsic/node_modules/function-bind/package.json +0 -63
  5456. data/node_modules/get-intrinsic/node_modules/function-bind/test/index.js +0 -252
  5457. data/node_modules/graphemer/CHANGELOG.md +0 -30
  5458. data/node_modules/graphemer/LICENSE +0 -18
  5459. data/node_modules/graphemer/README.md +0 -132
  5460. data/node_modules/graphemer/lib/Graphemer.d.ts +0 -41
  5461. data/node_modules/graphemer/lib/Graphemer.d.ts.map +0 -1
  5462. data/node_modules/graphemer/lib/Graphemer.js +0 -11959
  5463. data/node_modules/graphemer/lib/GraphemerHelper.d.ts +0 -32
  5464. data/node_modules/graphemer/lib/GraphemerHelper.d.ts.map +0 -1
  5465. data/node_modules/graphemer/lib/GraphemerHelper.js +0 -169
  5466. data/node_modules/graphemer/lib/GraphemerIterator.d.ts +0 -22
  5467. data/node_modules/graphemer/lib/GraphemerIterator.d.ts.map +0 -1
  5468. data/node_modules/graphemer/lib/GraphemerIterator.js +0 -36
  5469. data/node_modules/graphemer/lib/boundaries.d.ts +0 -35
  5470. data/node_modules/graphemer/lib/boundaries.d.ts.map +0 -1
  5471. data/node_modules/graphemer/lib/boundaries.js +0 -38
  5472. data/node_modules/graphemer/lib/index.d.ts +0 -3
  5473. data/node_modules/graphemer/lib/index.d.ts.map +0 -1
  5474. data/node_modules/graphemer/lib/index.js +0 -7
  5475. data/node_modules/graphemer/package.json +0 -54
  5476. data/node_modules/hasown/index.d.ts.map +0 -1
  5477. data/node_modules/jsonc-eslint-parser/LICENSE +0 -21
  5478. data/node_modules/jsonc-eslint-parser/README.md +0 -96
  5479. data/node_modules/jsonc-eslint-parser/lib/index.d.ts +0 -11
  5480. data/node_modules/jsonc-eslint-parser/lib/index.js +0 -44
  5481. data/node_modules/jsonc-eslint-parser/lib/meta.d.ts +0 -2
  5482. data/node_modules/jsonc-eslint-parser/lib/meta.js +0 -5
  5483. data/node_modules/jsonc-eslint-parser/lib/parser/ast.d.ts +0 -125
  5484. data/node_modules/jsonc-eslint-parser/lib/parser/ast.js +0 -2
  5485. data/node_modules/jsonc-eslint-parser/lib/parser/convert.d.ts +0 -15
  5486. data/node_modules/jsonc-eslint-parser/lib/parser/convert.js +0 -170
  5487. data/node_modules/jsonc-eslint-parser/lib/parser/errors.d.ts +0 -17
  5488. data/node_modules/jsonc-eslint-parser/lib/parser/errors.js +0 -92
  5489. data/node_modules/jsonc-eslint-parser/lib/parser/extend-parser.d.ts +0 -3
  5490. data/node_modules/jsonc-eslint-parser/lib/parser/extend-parser.js +0 -117
  5491. data/node_modules/jsonc-eslint-parser/lib/parser/modules/acorn.d.ts +0 -2
  5492. data/node_modules/jsonc-eslint-parser/lib/parser/modules/acorn.js +0 -74
  5493. data/node_modules/jsonc-eslint-parser/lib/parser/modules/espree.d.ts +0 -8
  5494. data/node_modules/jsonc-eslint-parser/lib/parser/modules/espree.js +0 -59
  5495. data/node_modules/jsonc-eslint-parser/lib/parser/modules/require-utils.d.ts +0 -13
  5496. data/node_modules/jsonc-eslint-parser/lib/parser/modules/require-utils.js +0 -80
  5497. data/node_modules/jsonc-eslint-parser/lib/parser/parser.d.ts +0 -9
  5498. data/node_modules/jsonc-eslint-parser/lib/parser/parser.js +0 -201
  5499. data/node_modules/jsonc-eslint-parser/lib/parser/syntax-context.d.ts +0 -27
  5500. data/node_modules/jsonc-eslint-parser/lib/parser/syntax-context.js +0 -2
  5501. data/node_modules/jsonc-eslint-parser/lib/parser/token-store.d.ts +0 -21
  5502. data/node_modules/jsonc-eslint-parser/lib/parser/token-store.js +0 -48
  5503. data/node_modules/jsonc-eslint-parser/lib/parser/traverse.d.ts +0 -11
  5504. data/node_modules/jsonc-eslint-parser/lib/parser/traverse.js +0 -57
  5505. data/node_modules/jsonc-eslint-parser/lib/parser/utils.d.ts +0 -5
  5506. data/node_modules/jsonc-eslint-parser/lib/parser/utils.js +0 -8
  5507. data/node_modules/jsonc-eslint-parser/lib/parser/validate.d.ts +0 -8
  5508. data/node_modules/jsonc-eslint-parser/lib/parser/validate.js +0 -405
  5509. data/node_modules/jsonc-eslint-parser/lib/parser/visitor-keys.d.ts +0 -2
  5510. data/node_modules/jsonc-eslint-parser/lib/parser/visitor-keys.js +0 -51
  5511. data/node_modules/jsonc-eslint-parser/lib/types.d.ts +0 -11
  5512. data/node_modules/jsonc-eslint-parser/lib/types.js +0 -2
  5513. data/node_modules/jsonc-eslint-parser/lib/utils/ast.d.ts +0 -19
  5514. data/node_modules/jsonc-eslint-parser/lib/utils/ast.js +0 -128
  5515. data/node_modules/jsonc-eslint-parser/node_modules/semver/README.md +0 -637
  5516. data/node_modules/jsonc-eslint-parser/node_modules/semver/bin/semver.js +0 -197
  5517. data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/comparator.js +0 -141
  5518. data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/index.js +0 -5
  5519. data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/range.js +0 -539
  5520. data/node_modules/jsonc-eslint-parser/node_modules/semver/classes/semver.js +0 -302
  5521. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/clean.js +0 -6
  5522. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/cmp.js +0 -52
  5523. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/coerce.js +0 -52
  5524. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare-build.js +0 -7
  5525. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare-loose.js +0 -3
  5526. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/compare.js +0 -5
  5527. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/diff.js +0 -65
  5528. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/eq.js +0 -3
  5529. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/gt.js +0 -3
  5530. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/gte.js +0 -3
  5531. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/inc.js +0 -19
  5532. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/lt.js +0 -3
  5533. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/lte.js +0 -3
  5534. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/major.js +0 -3
  5535. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/minor.js +0 -3
  5536. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/neq.js +0 -3
  5537. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/parse.js +0 -16
  5538. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/patch.js +0 -3
  5539. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/prerelease.js +0 -6
  5540. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/rcompare.js +0 -3
  5541. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/rsort.js +0 -3
  5542. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/satisfies.js +0 -10
  5543. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/sort.js +0 -3
  5544. data/node_modules/jsonc-eslint-parser/node_modules/semver/functions/valid.js +0 -6
  5545. data/node_modules/jsonc-eslint-parser/node_modules/semver/index.js +0 -89
  5546. data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/constants.js +0 -35
  5547. data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/debug.js +0 -9
  5548. data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/identifiers.js +0 -23
  5549. data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/parse-options.js +0 -15
  5550. data/node_modules/jsonc-eslint-parser/node_modules/semver/internal/re.js +0 -212
  5551. data/node_modules/jsonc-eslint-parser/node_modules/semver/package.json +0 -87
  5552. data/node_modules/jsonc-eslint-parser/node_modules/semver/preload.js +0 -2
  5553. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/gtr.js +0 -4
  5554. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/intersects.js +0 -7
  5555. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/ltr.js +0 -4
  5556. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/max-satisfying.js +0 -25
  5557. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/min-satisfying.js +0 -24
  5558. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/min-version.js +0 -61
  5559. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/outside.js +0 -80
  5560. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/simplify.js +0 -47
  5561. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/subset.js +0 -247
  5562. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/to-comparators.js +0 -8
  5563. data/node_modules/jsonc-eslint-parser/node_modules/semver/ranges/valid.js +0 -11
  5564. data/node_modules/jsonc-eslint-parser/package.json +0 -92
  5565. data/node_modules/object.assign/test.html +0 -18458
  5566. data/node_modules/object.groupby/aos/AddValueToKeyedGroup.js +0 -26
  5567. data/node_modules/object.groupby/aos/GroupBy.js +0 -77
  5568. data/node_modules/resolve/node_modules/is-core-module/CHANGELOG.md +0 -173
  5569. data/node_modules/resolve/node_modules/is-core-module/LICENSE +0 -20
  5570. data/node_modules/resolve/node_modules/is-core-module/README.md +0 -40
  5571. data/node_modules/resolve/node_modules/is-core-module/core.json +0 -158
  5572. data/node_modules/resolve/node_modules/is-core-module/index.js +0 -69
  5573. data/node_modules/resolve/node_modules/is-core-module/package.json +0 -73
  5574. data/node_modules/resolve/node_modules/is-core-module/test/index.js +0 -133
  5575. data/node_modules/resolve/test/resolver/malformed_package_json/index.js +0 -0
  5576. data/node_modules/resolve/test/resolver/malformed_package_json/package.json +0 -1
  5577. data/node_modules/write-file-atomic/node_modules/signal-exit/LICENSE.txt +0 -16
  5578. data/node_modules/write-file-atomic/node_modules/signal-exit/README.md +0 -39
  5579. data/node_modules/write-file-atomic/node_modules/signal-exit/package.json +0 -38
  5580. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array/node_modules/minimatch → @babel/core/node_modules/semver}/LICENSE +0 -0
  5581. /data/node_modules/{jsonc-eslint-parser → @babel/core}/node_modules/semver/range.bnf +0 -0
  5582. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/minimatch → @babel/helper-compilation-targets/node_modules/lru-cache}/LICENSE +0 -0
  5583. /data/node_modules/{jsonc-eslint-parser/node_modules/semver → @babel/helper-compilation-targets/node_modules/lru-cache/node_modules/yallist}/LICENSE +0 -0
  5584. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → @babel/highlight}/node_modules/chalk/license +0 -0
  5585. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi → @babel/highlight/node_modules/chalk/node_modules/ansi-styles}/license +0 -0
  5586. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/strip-ansi/node_modules/ansi-regex → @babel/highlight/node_modules/chalk/node_modules/supports-color}/license +0 -0
  5587. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/strip-json-comments → @isaacs/cliui/node_modules/strip-ansi}/license +0 -0
  5588. /data/node_modules/{signal-exit → @tufjs/models/node_modules/minimatch}/dist/cjs/package.json +0 -0
  5589. /data/node_modules/{signal-exit → @tufjs/models/node_modules/minimatch}/dist/mjs/package.json +0 -0
  5590. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array → @tufjs/models}/node_modules/minimatch/node_modules/brace-expansion/LICENSE +0 -0
  5591. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → eslint-plugin-import}/node_modules/minimatch/README.md +0 -0
  5592. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → eslint-plugin-import}/node_modules/minimatch/minimatch.js +0 -0
  5593. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → eslint-plugin-import}/node_modules/minimatch/node_modules/brace-expansion/LICENSE +0 -0
  5594. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array → eslint-plugin-import}/node_modules/minimatch/node_modules/brace-expansion/README.md +0 -0
  5595. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array → eslint-plugin-import}/node_modules/minimatch/node_modules/brace-expansion/index.js +0 -0
  5596. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint/node_modules/@humanwhocodes/config-array → eslint-plugin-import}/node_modules/minimatch/node_modules/brace-expansion/package.json +0 -0
  5597. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → eslint-plugin-import}/node_modules/minimatch/package.json +0 -0
  5598. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/browser.d.ts +0 -0
  5599. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/browser.d.ts.map +0 -0
  5600. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/browser.js +0 -0
  5601. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/browser.js.map +0 -0
  5602. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/index.d.ts +0 -0
  5603. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/index.d.ts.map +0 -0
  5604. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/index.js +0 -0
  5605. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/index.js.map +0 -0
  5606. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/signals.d.ts +0 -0
  5607. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/signals.d.ts.map +0 -0
  5608. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/signals.js +0 -0
  5609. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/cjs/signals.js.map +0 -0
  5610. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/browser.d.ts +0 -0
  5611. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/browser.d.ts.map +0 -0
  5612. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/browser.js +0 -0
  5613. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/browser.js.map +0 -0
  5614. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/index.d.ts +0 -0
  5615. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/index.d.ts.map +0 -0
  5616. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/index.js +0 -0
  5617. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/index.js.map +0 -0
  5618. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/signals.d.ts +0 -0
  5619. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/signals.d.ts.map +0 -0
  5620. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/signals.js +0 -0
  5621. /data/node_modules/{signal-exit → foreground-child/node_modules/signal-exit}/dist/mjs/signals.js.map +0 -0
  5622. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/index.d.ts +0 -0
  5623. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/package.json +0 -0
  5624. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/readme.md +0 -0
  5625. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/source/index.js +0 -0
  5626. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/source/templates.js +0 -0
  5627. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → jscodeshift}/node_modules/chalk/source/util.js +0 -0
  5628. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → node-dir}/node_modules/minimatch/node_modules/brace-expansion/README.md +0 -0
  5629. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → node-dir}/node_modules/minimatch/node_modules/brace-expansion/index.js +0 -0
  5630. /data/node_modules/{@eslint-community/eslint-utils/node_modules/eslint → node-dir}/node_modules/minimatch/node_modules/brace-expansion/package.json +0 -0
  5631. /data/node_modules/{write-file-atomic/node_modules/signal-exit → signal-exit}/index.js +0 -0
  5632. /data/node_modules/{write-file-atomic/node_modules/signal-exit → signal-exit}/signals.js +0 -0
  5633. /data/node_modules/{@aashutoshrathi/word-wrap → word-wrap}/LICENSE +0 -0
@@ -0,0 +1,3269 @@
1
+ declare function isCompatTag(tagName?: string): boolean;
2
+
3
+ type ReturnedChild = JSXSpreadChild | JSXElement | JSXFragment | Expression;
4
+ declare function buildChildren(node: JSXElement | JSXFragment): ReturnedChild[];
5
+
6
+ declare function assertNode(node?: any): asserts node is Node;
7
+
8
+ declare function assertArrayExpression(node: object | null | undefined, opts?: object | null): asserts node is ArrayExpression;
9
+ declare function assertAssignmentExpression(node: object | null | undefined, opts?: object | null): asserts node is AssignmentExpression;
10
+ declare function assertBinaryExpression(node: object | null | undefined, opts?: object | null): asserts node is BinaryExpression;
11
+ declare function assertInterpreterDirective(node: object | null | undefined, opts?: object | null): asserts node is InterpreterDirective;
12
+ declare function assertDirective(node: object | null | undefined, opts?: object | null): asserts node is Directive;
13
+ declare function assertDirectiveLiteral(node: object | null | undefined, opts?: object | null): asserts node is DirectiveLiteral;
14
+ declare function assertBlockStatement(node: object | null | undefined, opts?: object | null): asserts node is BlockStatement;
15
+ declare function assertBreakStatement(node: object | null | undefined, opts?: object | null): asserts node is BreakStatement;
16
+ declare function assertCallExpression(node: object | null | undefined, opts?: object | null): asserts node is CallExpression;
17
+ declare function assertCatchClause(node: object | null | undefined, opts?: object | null): asserts node is CatchClause;
18
+ declare function assertConditionalExpression(node: object | null | undefined, opts?: object | null): asserts node is ConditionalExpression;
19
+ declare function assertContinueStatement(node: object | null | undefined, opts?: object | null): asserts node is ContinueStatement;
20
+ declare function assertDebuggerStatement(node: object | null | undefined, opts?: object | null): asserts node is DebuggerStatement;
21
+ declare function assertDoWhileStatement(node: object | null | undefined, opts?: object | null): asserts node is DoWhileStatement;
22
+ declare function assertEmptyStatement(node: object | null | undefined, opts?: object | null): asserts node is EmptyStatement;
23
+ declare function assertExpressionStatement(node: object | null | undefined, opts?: object | null): asserts node is ExpressionStatement;
24
+ declare function assertFile(node: object | null | undefined, opts?: object | null): asserts node is File;
25
+ declare function assertForInStatement(node: object | null | undefined, opts?: object | null): asserts node is ForInStatement;
26
+ declare function assertForStatement(node: object | null | undefined, opts?: object | null): asserts node is ForStatement;
27
+ declare function assertFunctionDeclaration(node: object | null | undefined, opts?: object | null): asserts node is FunctionDeclaration;
28
+ declare function assertFunctionExpression(node: object | null | undefined, opts?: object | null): asserts node is FunctionExpression;
29
+ declare function assertIdentifier(node: object | null | undefined, opts?: object | null): asserts node is Identifier;
30
+ declare function assertIfStatement(node: object | null | undefined, opts?: object | null): asserts node is IfStatement;
31
+ declare function assertLabeledStatement(node: object | null | undefined, opts?: object | null): asserts node is LabeledStatement;
32
+ declare function assertStringLiteral(node: object | null | undefined, opts?: object | null): asserts node is StringLiteral;
33
+ declare function assertNumericLiteral(node: object | null | undefined, opts?: object | null): asserts node is NumericLiteral;
34
+ declare function assertNullLiteral(node: object | null | undefined, opts?: object | null): asserts node is NullLiteral;
35
+ declare function assertBooleanLiteral(node: object | null | undefined, opts?: object | null): asserts node is BooleanLiteral;
36
+ declare function assertRegExpLiteral(node: object | null | undefined, opts?: object | null): asserts node is RegExpLiteral;
37
+ declare function assertLogicalExpression(node: object | null | undefined, opts?: object | null): asserts node is LogicalExpression;
38
+ declare function assertMemberExpression(node: object | null | undefined, opts?: object | null): asserts node is MemberExpression;
39
+ declare function assertNewExpression(node: object | null | undefined, opts?: object | null): asserts node is NewExpression;
40
+ declare function assertProgram(node: object | null | undefined, opts?: object | null): asserts node is Program;
41
+ declare function assertObjectExpression(node: object | null | undefined, opts?: object | null): asserts node is ObjectExpression;
42
+ declare function assertObjectMethod(node: object | null | undefined, opts?: object | null): asserts node is ObjectMethod;
43
+ declare function assertObjectProperty(node: object | null | undefined, opts?: object | null): asserts node is ObjectProperty;
44
+ declare function assertRestElement(node: object | null | undefined, opts?: object | null): asserts node is RestElement;
45
+ declare function assertReturnStatement(node: object | null | undefined, opts?: object | null): asserts node is ReturnStatement;
46
+ declare function assertSequenceExpression(node: object | null | undefined, opts?: object | null): asserts node is SequenceExpression;
47
+ declare function assertParenthesizedExpression(node: object | null | undefined, opts?: object | null): asserts node is ParenthesizedExpression;
48
+ declare function assertSwitchCase(node: object | null | undefined, opts?: object | null): asserts node is SwitchCase;
49
+ declare function assertSwitchStatement(node: object | null | undefined, opts?: object | null): asserts node is SwitchStatement;
50
+ declare function assertThisExpression(node: object | null | undefined, opts?: object | null): asserts node is ThisExpression;
51
+ declare function assertThrowStatement(node: object | null | undefined, opts?: object | null): asserts node is ThrowStatement;
52
+ declare function assertTryStatement(node: object | null | undefined, opts?: object | null): asserts node is TryStatement;
53
+ declare function assertUnaryExpression(node: object | null | undefined, opts?: object | null): asserts node is UnaryExpression;
54
+ declare function assertUpdateExpression(node: object | null | undefined, opts?: object | null): asserts node is UpdateExpression;
55
+ declare function assertVariableDeclaration(node: object | null | undefined, opts?: object | null): asserts node is VariableDeclaration;
56
+ declare function assertVariableDeclarator(node: object | null | undefined, opts?: object | null): asserts node is VariableDeclarator;
57
+ declare function assertWhileStatement(node: object | null | undefined, opts?: object | null): asserts node is WhileStatement;
58
+ declare function assertWithStatement(node: object | null | undefined, opts?: object | null): asserts node is WithStatement;
59
+ declare function assertAssignmentPattern(node: object | null | undefined, opts?: object | null): asserts node is AssignmentPattern;
60
+ declare function assertArrayPattern(node: object | null | undefined, opts?: object | null): asserts node is ArrayPattern;
61
+ declare function assertArrowFunctionExpression(node: object | null | undefined, opts?: object | null): asserts node is ArrowFunctionExpression;
62
+ declare function assertClassBody(node: object | null | undefined, opts?: object | null): asserts node is ClassBody;
63
+ declare function assertClassExpression(node: object | null | undefined, opts?: object | null): asserts node is ClassExpression;
64
+ declare function assertClassDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ClassDeclaration;
65
+ declare function assertExportAllDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ExportAllDeclaration;
66
+ declare function assertExportDefaultDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ExportDefaultDeclaration;
67
+ declare function assertExportNamedDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ExportNamedDeclaration;
68
+ declare function assertExportSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ExportSpecifier;
69
+ declare function assertForOfStatement(node: object | null | undefined, opts?: object | null): asserts node is ForOfStatement;
70
+ declare function assertImportDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ImportDeclaration;
71
+ declare function assertImportDefaultSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ImportDefaultSpecifier;
72
+ declare function assertImportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ImportNamespaceSpecifier;
73
+ declare function assertImportSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ImportSpecifier;
74
+ declare function assertImportExpression(node: object | null | undefined, opts?: object | null): asserts node is ImportExpression;
75
+ declare function assertMetaProperty(node: object | null | undefined, opts?: object | null): asserts node is MetaProperty;
76
+ declare function assertClassMethod(node: object | null | undefined, opts?: object | null): asserts node is ClassMethod;
77
+ declare function assertObjectPattern(node: object | null | undefined, opts?: object | null): asserts node is ObjectPattern;
78
+ declare function assertSpreadElement(node: object | null | undefined, opts?: object | null): asserts node is SpreadElement;
79
+ declare function assertSuper(node: object | null | undefined, opts?: object | null): asserts node is Super;
80
+ declare function assertTaggedTemplateExpression(node: object | null | undefined, opts?: object | null): asserts node is TaggedTemplateExpression;
81
+ declare function assertTemplateElement(node: object | null | undefined, opts?: object | null): asserts node is TemplateElement;
82
+ declare function assertTemplateLiteral(node: object | null | undefined, opts?: object | null): asserts node is TemplateLiteral;
83
+ declare function assertYieldExpression(node: object | null | undefined, opts?: object | null): asserts node is YieldExpression;
84
+ declare function assertAwaitExpression(node: object | null | undefined, opts?: object | null): asserts node is AwaitExpression;
85
+ declare function assertImport(node: object | null | undefined, opts?: object | null): asserts node is Import;
86
+ declare function assertBigIntLiteral(node: object | null | undefined, opts?: object | null): asserts node is BigIntLiteral;
87
+ declare function assertExportNamespaceSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ExportNamespaceSpecifier;
88
+ declare function assertOptionalMemberExpression(node: object | null | undefined, opts?: object | null): asserts node is OptionalMemberExpression;
89
+ declare function assertOptionalCallExpression(node: object | null | undefined, opts?: object | null): asserts node is OptionalCallExpression;
90
+ declare function assertClassProperty(node: object | null | undefined, opts?: object | null): asserts node is ClassProperty;
91
+ declare function assertClassAccessorProperty(node: object | null | undefined, opts?: object | null): asserts node is ClassAccessorProperty;
92
+ declare function assertClassPrivateProperty(node: object | null | undefined, opts?: object | null): asserts node is ClassPrivateProperty;
93
+ declare function assertClassPrivateMethod(node: object | null | undefined, opts?: object | null): asserts node is ClassPrivateMethod;
94
+ declare function assertPrivateName(node: object | null | undefined, opts?: object | null): asserts node is PrivateName;
95
+ declare function assertStaticBlock(node: object | null | undefined, opts?: object | null): asserts node is StaticBlock;
96
+ declare function assertAnyTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is AnyTypeAnnotation;
97
+ declare function assertArrayTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is ArrayTypeAnnotation;
98
+ declare function assertBooleanTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is BooleanTypeAnnotation;
99
+ declare function assertBooleanLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is BooleanLiteralTypeAnnotation;
100
+ declare function assertNullLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is NullLiteralTypeAnnotation;
101
+ declare function assertClassImplements(node: object | null | undefined, opts?: object | null): asserts node is ClassImplements;
102
+ declare function assertDeclareClass(node: object | null | undefined, opts?: object | null): asserts node is DeclareClass;
103
+ declare function assertDeclareFunction(node: object | null | undefined, opts?: object | null): asserts node is DeclareFunction;
104
+ declare function assertDeclareInterface(node: object | null | undefined, opts?: object | null): asserts node is DeclareInterface;
105
+ declare function assertDeclareModule(node: object | null | undefined, opts?: object | null): asserts node is DeclareModule;
106
+ declare function assertDeclareModuleExports(node: object | null | undefined, opts?: object | null): asserts node is DeclareModuleExports;
107
+ declare function assertDeclareTypeAlias(node: object | null | undefined, opts?: object | null): asserts node is DeclareTypeAlias;
108
+ declare function assertDeclareOpaqueType(node: object | null | undefined, opts?: object | null): asserts node is DeclareOpaqueType;
109
+ declare function assertDeclareVariable(node: object | null | undefined, opts?: object | null): asserts node is DeclareVariable;
110
+ declare function assertDeclareExportDeclaration(node: object | null | undefined, opts?: object | null): asserts node is DeclareExportDeclaration;
111
+ declare function assertDeclareExportAllDeclaration(node: object | null | undefined, opts?: object | null): asserts node is DeclareExportAllDeclaration;
112
+ declare function assertDeclaredPredicate(node: object | null | undefined, opts?: object | null): asserts node is DeclaredPredicate;
113
+ declare function assertExistsTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is ExistsTypeAnnotation;
114
+ declare function assertFunctionTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is FunctionTypeAnnotation;
115
+ declare function assertFunctionTypeParam(node: object | null | undefined, opts?: object | null): asserts node is FunctionTypeParam;
116
+ declare function assertGenericTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is GenericTypeAnnotation;
117
+ declare function assertInferredPredicate(node: object | null | undefined, opts?: object | null): asserts node is InferredPredicate;
118
+ declare function assertInterfaceExtends(node: object | null | undefined, opts?: object | null): asserts node is InterfaceExtends;
119
+ declare function assertInterfaceDeclaration(node: object | null | undefined, opts?: object | null): asserts node is InterfaceDeclaration;
120
+ declare function assertInterfaceTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is InterfaceTypeAnnotation;
121
+ declare function assertIntersectionTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is IntersectionTypeAnnotation;
122
+ declare function assertMixedTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is MixedTypeAnnotation;
123
+ declare function assertEmptyTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is EmptyTypeAnnotation;
124
+ declare function assertNullableTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is NullableTypeAnnotation;
125
+ declare function assertNumberLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is NumberLiteralTypeAnnotation;
126
+ declare function assertNumberTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is NumberTypeAnnotation;
127
+ declare function assertObjectTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeAnnotation;
128
+ declare function assertObjectTypeInternalSlot(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeInternalSlot;
129
+ declare function assertObjectTypeCallProperty(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeCallProperty;
130
+ declare function assertObjectTypeIndexer(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeIndexer;
131
+ declare function assertObjectTypeProperty(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeProperty;
132
+ declare function assertObjectTypeSpreadProperty(node: object | null | undefined, opts?: object | null): asserts node is ObjectTypeSpreadProperty;
133
+ declare function assertOpaqueType(node: object | null | undefined, opts?: object | null): asserts node is OpaqueType;
134
+ declare function assertQualifiedTypeIdentifier(node: object | null | undefined, opts?: object | null): asserts node is QualifiedTypeIdentifier;
135
+ declare function assertStringLiteralTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is StringLiteralTypeAnnotation;
136
+ declare function assertStringTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is StringTypeAnnotation;
137
+ declare function assertSymbolTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is SymbolTypeAnnotation;
138
+ declare function assertThisTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is ThisTypeAnnotation;
139
+ declare function assertTupleTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is TupleTypeAnnotation;
140
+ declare function assertTypeofTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is TypeofTypeAnnotation;
141
+ declare function assertTypeAlias(node: object | null | undefined, opts?: object | null): asserts node is TypeAlias;
142
+ declare function assertTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is TypeAnnotation;
143
+ declare function assertTypeCastExpression(node: object | null | undefined, opts?: object | null): asserts node is TypeCastExpression;
144
+ declare function assertTypeParameter(node: object | null | undefined, opts?: object | null): asserts node is TypeParameter;
145
+ declare function assertTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TypeParameterDeclaration;
146
+ declare function assertTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): asserts node is TypeParameterInstantiation;
147
+ declare function assertUnionTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is UnionTypeAnnotation;
148
+ declare function assertVariance(node: object | null | undefined, opts?: object | null): asserts node is Variance;
149
+ declare function assertVoidTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is VoidTypeAnnotation;
150
+ declare function assertEnumDeclaration(node: object | null | undefined, opts?: object | null): asserts node is EnumDeclaration;
151
+ declare function assertEnumBooleanBody(node: object | null | undefined, opts?: object | null): asserts node is EnumBooleanBody;
152
+ declare function assertEnumNumberBody(node: object | null | undefined, opts?: object | null): asserts node is EnumNumberBody;
153
+ declare function assertEnumStringBody(node: object | null | undefined, opts?: object | null): asserts node is EnumStringBody;
154
+ declare function assertEnumSymbolBody(node: object | null | undefined, opts?: object | null): asserts node is EnumSymbolBody;
155
+ declare function assertEnumBooleanMember(node: object | null | undefined, opts?: object | null): asserts node is EnumBooleanMember;
156
+ declare function assertEnumNumberMember(node: object | null | undefined, opts?: object | null): asserts node is EnumNumberMember;
157
+ declare function assertEnumStringMember(node: object | null | undefined, opts?: object | null): asserts node is EnumStringMember;
158
+ declare function assertEnumDefaultedMember(node: object | null | undefined, opts?: object | null): asserts node is EnumDefaultedMember;
159
+ declare function assertIndexedAccessType(node: object | null | undefined, opts?: object | null): asserts node is IndexedAccessType;
160
+ declare function assertOptionalIndexedAccessType(node: object | null | undefined, opts?: object | null): asserts node is OptionalIndexedAccessType;
161
+ declare function assertJSXAttribute(node: object | null | undefined, opts?: object | null): asserts node is JSXAttribute;
162
+ declare function assertJSXClosingElement(node: object | null | undefined, opts?: object | null): asserts node is JSXClosingElement;
163
+ declare function assertJSXElement(node: object | null | undefined, opts?: object | null): asserts node is JSXElement;
164
+ declare function assertJSXEmptyExpression(node: object | null | undefined, opts?: object | null): asserts node is JSXEmptyExpression;
165
+ declare function assertJSXExpressionContainer(node: object | null | undefined, opts?: object | null): asserts node is JSXExpressionContainer;
166
+ declare function assertJSXSpreadChild(node: object | null | undefined, opts?: object | null): asserts node is JSXSpreadChild;
167
+ declare function assertJSXIdentifier(node: object | null | undefined, opts?: object | null): asserts node is JSXIdentifier;
168
+ declare function assertJSXMemberExpression(node: object | null | undefined, opts?: object | null): asserts node is JSXMemberExpression;
169
+ declare function assertJSXNamespacedName(node: object | null | undefined, opts?: object | null): asserts node is JSXNamespacedName;
170
+ declare function assertJSXOpeningElement(node: object | null | undefined, opts?: object | null): asserts node is JSXOpeningElement;
171
+ declare function assertJSXSpreadAttribute(node: object | null | undefined, opts?: object | null): asserts node is JSXSpreadAttribute;
172
+ declare function assertJSXText(node: object | null | undefined, opts?: object | null): asserts node is JSXText;
173
+ declare function assertJSXFragment(node: object | null | undefined, opts?: object | null): asserts node is JSXFragment;
174
+ declare function assertJSXOpeningFragment(node: object | null | undefined, opts?: object | null): asserts node is JSXOpeningFragment;
175
+ declare function assertJSXClosingFragment(node: object | null | undefined, opts?: object | null): asserts node is JSXClosingFragment;
176
+ declare function assertNoop(node: object | null | undefined, opts?: object | null): asserts node is Noop;
177
+ declare function assertPlaceholder(node: object | null | undefined, opts?: object | null): asserts node is Placeholder;
178
+ declare function assertV8IntrinsicIdentifier(node: object | null | undefined, opts?: object | null): asserts node is V8IntrinsicIdentifier;
179
+ declare function assertArgumentPlaceholder(node: object | null | undefined, opts?: object | null): asserts node is ArgumentPlaceholder;
180
+ declare function assertBindExpression(node: object | null | undefined, opts?: object | null): asserts node is BindExpression;
181
+ declare function assertImportAttribute(node: object | null | undefined, opts?: object | null): asserts node is ImportAttribute;
182
+ declare function assertDecorator(node: object | null | undefined, opts?: object | null): asserts node is Decorator;
183
+ declare function assertDoExpression(node: object | null | undefined, opts?: object | null): asserts node is DoExpression;
184
+ declare function assertExportDefaultSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ExportDefaultSpecifier;
185
+ declare function assertRecordExpression(node: object | null | undefined, opts?: object | null): asserts node is RecordExpression;
186
+ declare function assertTupleExpression(node: object | null | undefined, opts?: object | null): asserts node is TupleExpression;
187
+ declare function assertDecimalLiteral(node: object | null | undefined, opts?: object | null): asserts node is DecimalLiteral;
188
+ declare function assertModuleExpression(node: object | null | undefined, opts?: object | null): asserts node is ModuleExpression;
189
+ declare function assertTopicReference(node: object | null | undefined, opts?: object | null): asserts node is TopicReference;
190
+ declare function assertPipelineTopicExpression(node: object | null | undefined, opts?: object | null): asserts node is PipelineTopicExpression;
191
+ declare function assertPipelineBareFunction(node: object | null | undefined, opts?: object | null): asserts node is PipelineBareFunction;
192
+ declare function assertPipelinePrimaryTopicReference(node: object | null | undefined, opts?: object | null): asserts node is PipelinePrimaryTopicReference;
193
+ declare function assertTSParameterProperty(node: object | null | undefined, opts?: object | null): asserts node is TSParameterProperty;
194
+ declare function assertTSDeclareFunction(node: object | null | undefined, opts?: object | null): asserts node is TSDeclareFunction;
195
+ declare function assertTSDeclareMethod(node: object | null | undefined, opts?: object | null): asserts node is TSDeclareMethod;
196
+ declare function assertTSQualifiedName(node: object | null | undefined, opts?: object | null): asserts node is TSQualifiedName;
197
+ declare function assertTSCallSignatureDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSCallSignatureDeclaration;
198
+ declare function assertTSConstructSignatureDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSConstructSignatureDeclaration;
199
+ declare function assertTSPropertySignature(node: object | null | undefined, opts?: object | null): asserts node is TSPropertySignature;
200
+ declare function assertTSMethodSignature(node: object | null | undefined, opts?: object | null): asserts node is TSMethodSignature;
201
+ declare function assertTSIndexSignature(node: object | null | undefined, opts?: object | null): asserts node is TSIndexSignature;
202
+ declare function assertTSAnyKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSAnyKeyword;
203
+ declare function assertTSBooleanKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSBooleanKeyword;
204
+ declare function assertTSBigIntKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSBigIntKeyword;
205
+ declare function assertTSIntrinsicKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSIntrinsicKeyword;
206
+ declare function assertTSNeverKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSNeverKeyword;
207
+ declare function assertTSNullKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSNullKeyword;
208
+ declare function assertTSNumberKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSNumberKeyword;
209
+ declare function assertTSObjectKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSObjectKeyword;
210
+ declare function assertTSStringKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSStringKeyword;
211
+ declare function assertTSSymbolKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSSymbolKeyword;
212
+ declare function assertTSUndefinedKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSUndefinedKeyword;
213
+ declare function assertTSUnknownKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSUnknownKeyword;
214
+ declare function assertTSVoidKeyword(node: object | null | undefined, opts?: object | null): asserts node is TSVoidKeyword;
215
+ declare function assertTSThisType(node: object | null | undefined, opts?: object | null): asserts node is TSThisType;
216
+ declare function assertTSFunctionType(node: object | null | undefined, opts?: object | null): asserts node is TSFunctionType;
217
+ declare function assertTSConstructorType(node: object | null | undefined, opts?: object | null): asserts node is TSConstructorType;
218
+ declare function assertTSTypeReference(node: object | null | undefined, opts?: object | null): asserts node is TSTypeReference;
219
+ declare function assertTSTypePredicate(node: object | null | undefined, opts?: object | null): asserts node is TSTypePredicate;
220
+ declare function assertTSTypeQuery(node: object | null | undefined, opts?: object | null): asserts node is TSTypeQuery;
221
+ declare function assertTSTypeLiteral(node: object | null | undefined, opts?: object | null): asserts node is TSTypeLiteral;
222
+ declare function assertTSArrayType(node: object | null | undefined, opts?: object | null): asserts node is TSArrayType;
223
+ declare function assertTSTupleType(node: object | null | undefined, opts?: object | null): asserts node is TSTupleType;
224
+ declare function assertTSOptionalType(node: object | null | undefined, opts?: object | null): asserts node is TSOptionalType;
225
+ declare function assertTSRestType(node: object | null | undefined, opts?: object | null): asserts node is TSRestType;
226
+ declare function assertTSNamedTupleMember(node: object | null | undefined, opts?: object | null): asserts node is TSNamedTupleMember;
227
+ declare function assertTSUnionType(node: object | null | undefined, opts?: object | null): asserts node is TSUnionType;
228
+ declare function assertTSIntersectionType(node: object | null | undefined, opts?: object | null): asserts node is TSIntersectionType;
229
+ declare function assertTSConditionalType(node: object | null | undefined, opts?: object | null): asserts node is TSConditionalType;
230
+ declare function assertTSInferType(node: object | null | undefined, opts?: object | null): asserts node is TSInferType;
231
+ declare function assertTSParenthesizedType(node: object | null | undefined, opts?: object | null): asserts node is TSParenthesizedType;
232
+ declare function assertTSTypeOperator(node: object | null | undefined, opts?: object | null): asserts node is TSTypeOperator;
233
+ declare function assertTSIndexedAccessType(node: object | null | undefined, opts?: object | null): asserts node is TSIndexedAccessType;
234
+ declare function assertTSMappedType(node: object | null | undefined, opts?: object | null): asserts node is TSMappedType;
235
+ declare function assertTSLiteralType(node: object | null | undefined, opts?: object | null): asserts node is TSLiteralType;
236
+ declare function assertTSExpressionWithTypeArguments(node: object | null | undefined, opts?: object | null): asserts node is TSExpressionWithTypeArguments;
237
+ declare function assertTSInterfaceDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSInterfaceDeclaration;
238
+ declare function assertTSInterfaceBody(node: object | null | undefined, opts?: object | null): asserts node is TSInterfaceBody;
239
+ declare function assertTSTypeAliasDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSTypeAliasDeclaration;
240
+ declare function assertTSInstantiationExpression(node: object | null | undefined, opts?: object | null): asserts node is TSInstantiationExpression;
241
+ declare function assertTSAsExpression(node: object | null | undefined, opts?: object | null): asserts node is TSAsExpression;
242
+ declare function assertTSSatisfiesExpression(node: object | null | undefined, opts?: object | null): asserts node is TSSatisfiesExpression;
243
+ declare function assertTSTypeAssertion(node: object | null | undefined, opts?: object | null): asserts node is TSTypeAssertion;
244
+ declare function assertTSEnumDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSEnumDeclaration;
245
+ declare function assertTSEnumMember(node: object | null | undefined, opts?: object | null): asserts node is TSEnumMember;
246
+ declare function assertTSModuleDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSModuleDeclaration;
247
+ declare function assertTSModuleBlock(node: object | null | undefined, opts?: object | null): asserts node is TSModuleBlock;
248
+ declare function assertTSImportType(node: object | null | undefined, opts?: object | null): asserts node is TSImportType;
249
+ declare function assertTSImportEqualsDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSImportEqualsDeclaration;
250
+ declare function assertTSExternalModuleReference(node: object | null | undefined, opts?: object | null): asserts node is TSExternalModuleReference;
251
+ declare function assertTSNonNullExpression(node: object | null | undefined, opts?: object | null): asserts node is TSNonNullExpression;
252
+ declare function assertTSExportAssignment(node: object | null | undefined, opts?: object | null): asserts node is TSExportAssignment;
253
+ declare function assertTSNamespaceExportDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSNamespaceExportDeclaration;
254
+ declare function assertTSTypeAnnotation(node: object | null | undefined, opts?: object | null): asserts node is TSTypeAnnotation;
255
+ declare function assertTSTypeParameterInstantiation(node: object | null | undefined, opts?: object | null): asserts node is TSTypeParameterInstantiation;
256
+ declare function assertTSTypeParameterDeclaration(node: object | null | undefined, opts?: object | null): asserts node is TSTypeParameterDeclaration;
257
+ declare function assertTSTypeParameter(node: object | null | undefined, opts?: object | null): asserts node is TSTypeParameter;
258
+ declare function assertStandardized(node: object | null | undefined, opts?: object | null): asserts node is Standardized;
259
+ declare function assertExpression(node: object | null | undefined, opts?: object | null): asserts node is Expression;
260
+ declare function assertBinary(node: object | null | undefined, opts?: object | null): asserts node is Binary;
261
+ declare function assertScopable(node: object | null | undefined, opts?: object | null): asserts node is Scopable;
262
+ declare function assertBlockParent(node: object | null | undefined, opts?: object | null): asserts node is BlockParent;
263
+ declare function assertBlock(node: object | null | undefined, opts?: object | null): asserts node is Block;
264
+ declare function assertStatement(node: object | null | undefined, opts?: object | null): asserts node is Statement;
265
+ declare function assertTerminatorless(node: object | null | undefined, opts?: object | null): asserts node is Terminatorless;
266
+ declare function assertCompletionStatement(node: object | null | undefined, opts?: object | null): asserts node is CompletionStatement;
267
+ declare function assertConditional(node: object | null | undefined, opts?: object | null): asserts node is Conditional;
268
+ declare function assertLoop(node: object | null | undefined, opts?: object | null): asserts node is Loop;
269
+ declare function assertWhile(node: object | null | undefined, opts?: object | null): asserts node is While;
270
+ declare function assertExpressionWrapper(node: object | null | undefined, opts?: object | null): asserts node is ExpressionWrapper;
271
+ declare function assertFor(node: object | null | undefined, opts?: object | null): asserts node is For;
272
+ declare function assertForXStatement(node: object | null | undefined, opts?: object | null): asserts node is ForXStatement;
273
+ declare function assertFunction(node: object | null | undefined, opts?: object | null): asserts node is Function;
274
+ declare function assertFunctionParent(node: object | null | undefined, opts?: object | null): asserts node is FunctionParent;
275
+ declare function assertPureish(node: object | null | undefined, opts?: object | null): asserts node is Pureish;
276
+ declare function assertDeclaration(node: object | null | undefined, opts?: object | null): asserts node is Declaration;
277
+ declare function assertPatternLike(node: object | null | undefined, opts?: object | null): asserts node is PatternLike;
278
+ declare function assertLVal(node: object | null | undefined, opts?: object | null): asserts node is LVal;
279
+ declare function assertTSEntityName(node: object | null | undefined, opts?: object | null): asserts node is TSEntityName;
280
+ declare function assertLiteral(node: object | null | undefined, opts?: object | null): asserts node is Literal;
281
+ declare function assertImmutable(node: object | null | undefined, opts?: object | null): asserts node is Immutable;
282
+ declare function assertUserWhitespacable(node: object | null | undefined, opts?: object | null): asserts node is UserWhitespacable;
283
+ declare function assertMethod(node: object | null | undefined, opts?: object | null): asserts node is Method;
284
+ declare function assertObjectMember(node: object | null | undefined, opts?: object | null): asserts node is ObjectMember;
285
+ declare function assertProperty(node: object | null | undefined, opts?: object | null): asserts node is Property;
286
+ declare function assertUnaryLike(node: object | null | undefined, opts?: object | null): asserts node is UnaryLike;
287
+ declare function assertPattern(node: object | null | undefined, opts?: object | null): asserts node is Pattern;
288
+ declare function assertClass(node: object | null | undefined, opts?: object | null): asserts node is Class;
289
+ declare function assertImportOrExportDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ImportOrExportDeclaration;
290
+ declare function assertExportDeclaration(node: object | null | undefined, opts?: object | null): asserts node is ExportDeclaration;
291
+ declare function assertModuleSpecifier(node: object | null | undefined, opts?: object | null): asserts node is ModuleSpecifier;
292
+ declare function assertAccessor(node: object | null | undefined, opts?: object | null): asserts node is Accessor;
293
+ declare function assertPrivate(node: object | null | undefined, opts?: object | null): asserts node is Private;
294
+ declare function assertFlow(node: object | null | undefined, opts?: object | null): asserts node is Flow;
295
+ declare function assertFlowType(node: object | null | undefined, opts?: object | null): asserts node is FlowType;
296
+ declare function assertFlowBaseAnnotation(node: object | null | undefined, opts?: object | null): asserts node is FlowBaseAnnotation;
297
+ declare function assertFlowDeclaration(node: object | null | undefined, opts?: object | null): asserts node is FlowDeclaration;
298
+ declare function assertFlowPredicate(node: object | null | undefined, opts?: object | null): asserts node is FlowPredicate;
299
+ declare function assertEnumBody(node: object | null | undefined, opts?: object | null): asserts node is EnumBody;
300
+ declare function assertEnumMember(node: object | null | undefined, opts?: object | null): asserts node is EnumMember;
301
+ declare function assertJSX(node: object | null | undefined, opts?: object | null): asserts node is JSX;
302
+ declare function assertMiscellaneous(node: object | null | undefined, opts?: object | null): asserts node is Miscellaneous;
303
+ declare function assertTypeScript(node: object | null | undefined, opts?: object | null): asserts node is TypeScript;
304
+ declare function assertTSTypeElement(node: object | null | undefined, opts?: object | null): asserts node is TSTypeElement;
305
+ declare function assertTSType(node: object | null | undefined, opts?: object | null): asserts node is TSType;
306
+ declare function assertTSBaseType(node: object | null | undefined, opts?: object | null): asserts node is TSBaseType;
307
+ declare function assertNumberLiteral(node: any, opts: any): void;
308
+ declare function assertRegexLiteral(node: any, opts: any): void;
309
+ declare function assertRestProperty(node: any, opts: any): void;
310
+ declare function assertSpreadProperty(node: any, opts: any): void;
311
+ declare function assertModuleDeclaration(node: any, opts: any): void;
312
+
313
+ declare const _default$4: {
314
+ (type: "string"): StringTypeAnnotation;
315
+ (type: "number"): NumberTypeAnnotation;
316
+ (type: "undefined"): VoidTypeAnnotation;
317
+ (type: "boolean"): BooleanTypeAnnotation;
318
+ (type: "function"): GenericTypeAnnotation;
319
+ (type: "object"): GenericTypeAnnotation;
320
+ (type: "symbol"): GenericTypeAnnotation;
321
+ (type: "bigint"): AnyTypeAnnotation;
322
+ };
323
+ //# sourceMappingURL=createTypeAnnotationBasedOnTypeof.d.ts.map
324
+
325
+ /**
326
+ * Takes an array of `types` and flattens them, removing duplicates and
327
+ * returns a `UnionTypeAnnotation` node containing them.
328
+ */
329
+ declare function createFlowUnionType<T extends FlowType>(types: [T] | Array<T>): T | UnionTypeAnnotation;
330
+
331
+ /**
332
+ * Takes an array of `types` and flattens them, removing duplicates and
333
+ * returns a `UnionTypeAnnotation` node containing them.
334
+ */
335
+ declare function createTSUnionType(typeAnnotations: Array<TSTypeAnnotation | TSType>): TSType;
336
+
337
+ declare function arrayExpression(elements?: Array<null | Expression | SpreadElement>): ArrayExpression;
338
+ declare function assignmentExpression(operator: string, left: LVal | OptionalMemberExpression, right: Expression): AssignmentExpression;
339
+ declare function binaryExpression(operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>", left: Expression | PrivateName, right: Expression): BinaryExpression;
340
+ declare function interpreterDirective(value: string): InterpreterDirective;
341
+ declare function directive(value: DirectiveLiteral): Directive;
342
+ declare function directiveLiteral(value: string): DirectiveLiteral;
343
+ declare function blockStatement(body: Array<Statement>, directives?: Array<Directive>): BlockStatement;
344
+ declare function breakStatement(label?: Identifier | null): BreakStatement;
345
+ declare function callExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>): CallExpression;
346
+ declare function catchClause(param: Identifier | ArrayPattern | ObjectPattern | null | undefined, body: BlockStatement): CatchClause;
347
+ declare function conditionalExpression(test: Expression, consequent: Expression, alternate: Expression): ConditionalExpression;
348
+ declare function continueStatement(label?: Identifier | null): ContinueStatement;
349
+ declare function debuggerStatement(): DebuggerStatement;
350
+ declare function doWhileStatement(test: Expression, body: Statement): DoWhileStatement;
351
+ declare function emptyStatement(): EmptyStatement;
352
+ declare function expressionStatement(expression: Expression): ExpressionStatement;
353
+ declare function file(program: Program, comments?: Array<CommentBlock | CommentLine> | null, tokens?: Array<any> | null): File;
354
+ declare function forInStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement): ForInStatement;
355
+ declare function forStatement(init: VariableDeclaration | Expression | null | undefined, test: Expression | null | undefined, update: Expression | null | undefined, body: Statement): ForStatement;
356
+ declare function functionDeclaration(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionDeclaration;
357
+ declare function functionExpression(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionExpression;
358
+ declare function identifier(name: string): Identifier;
359
+ declare function ifStatement(test: Expression, consequent: Statement, alternate?: Statement | null): IfStatement;
360
+ declare function labeledStatement(label: Identifier, body: Statement): LabeledStatement;
361
+ declare function stringLiteral(value: string): StringLiteral;
362
+ declare function numericLiteral(value: number): NumericLiteral;
363
+ declare function nullLiteral(): NullLiteral;
364
+ declare function booleanLiteral(value: boolean): BooleanLiteral;
365
+ declare function regExpLiteral(pattern: string, flags?: string): RegExpLiteral;
366
+ declare function logicalExpression(operator: "||" | "&&" | "??", left: Expression, right: Expression): LogicalExpression;
367
+ declare function memberExpression(object: Expression | Super, property: Expression | Identifier | PrivateName, computed?: boolean, optional?: true | false | null): MemberExpression;
368
+ declare function newExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>): NewExpression;
369
+ declare function program(body: Array<Statement>, directives?: Array<Directive>, sourceType?: "script" | "module", interpreter?: InterpreterDirective | null): Program;
370
+ declare function objectExpression(properties: Array<ObjectMethod | ObjectProperty | SpreadElement>): ObjectExpression;
371
+ declare function objectMethod(kind: "method" | "get" | "set" | undefined, key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, computed?: boolean, generator?: boolean, async?: boolean): ObjectMethod;
372
+ declare function objectProperty(key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName, value: Expression | PatternLike, computed?: boolean, shorthand?: boolean, decorators?: Array<Decorator> | null): ObjectProperty;
373
+ declare function restElement(argument: LVal): RestElement;
374
+ declare function returnStatement(argument?: Expression | null): ReturnStatement;
375
+ declare function sequenceExpression(expressions: Array<Expression>): SequenceExpression;
376
+ declare function parenthesizedExpression(expression: Expression): ParenthesizedExpression;
377
+ declare function switchCase(test: Expression | null | undefined, consequent: Array<Statement>): SwitchCase;
378
+ declare function switchStatement(discriminant: Expression, cases: Array<SwitchCase>): SwitchStatement;
379
+ declare function thisExpression(): ThisExpression;
380
+ declare function throwStatement(argument: Expression): ThrowStatement;
381
+ declare function tryStatement(block: BlockStatement, handler?: CatchClause | null, finalizer?: BlockStatement | null): TryStatement;
382
+ declare function unaryExpression(operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof", argument: Expression, prefix?: boolean): UnaryExpression;
383
+ declare function updateExpression(operator: "++" | "--", argument: Expression, prefix?: boolean): UpdateExpression;
384
+ declare function variableDeclaration(kind: "var" | "let" | "const" | "using" | "await using", declarations: Array<VariableDeclarator>): VariableDeclaration;
385
+ declare function variableDeclarator(id: LVal, init?: Expression | null): VariableDeclarator;
386
+ declare function whileStatement(test: Expression, body: Statement): WhileStatement;
387
+ declare function withStatement(object: Expression, body: Statement): WithStatement;
388
+ declare function assignmentPattern(left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression, right: Expression): AssignmentPattern;
389
+ declare function arrayPattern(elements: Array<null | PatternLike | LVal>): ArrayPattern;
390
+ declare function arrowFunctionExpression(params: Array<Identifier | Pattern | RestElement>, body: BlockStatement | Expression, async?: boolean): ArrowFunctionExpression;
391
+ declare function classBody(body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>): ClassBody;
392
+ declare function classExpression(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassExpression;
393
+ declare function classDeclaration(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassDeclaration;
394
+ declare function exportAllDeclaration(source: StringLiteral): ExportAllDeclaration;
395
+ declare function exportDefaultDeclaration(declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression): ExportDefaultDeclaration;
396
+ declare function exportNamedDeclaration(declaration?: Declaration | null, specifiers?: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>, source?: StringLiteral | null): ExportNamedDeclaration;
397
+ declare function exportSpecifier(local: Identifier, exported: Identifier | StringLiteral): ExportSpecifier;
398
+ declare function forOfStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement, _await?: boolean): ForOfStatement;
399
+ declare function importDeclaration(specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>, source: StringLiteral): ImportDeclaration;
400
+ declare function importDefaultSpecifier(local: Identifier): ImportDefaultSpecifier;
401
+ declare function importNamespaceSpecifier(local: Identifier): ImportNamespaceSpecifier;
402
+ declare function importSpecifier(local: Identifier, imported: Identifier | StringLiteral): ImportSpecifier;
403
+ declare function importExpression(source: Expression, options?: Expression | null): ImportExpression;
404
+ declare function metaProperty(meta: Identifier, property: Identifier): MetaProperty;
405
+ declare function classMethod(kind: "get" | "set" | "method" | "constructor" | undefined, key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, computed?: boolean, _static?: boolean, generator?: boolean, async?: boolean): ClassMethod;
406
+ declare function objectPattern(properties: Array<RestElement | ObjectProperty>): ObjectPattern;
407
+ declare function spreadElement(argument: Expression): SpreadElement;
408
+ declare function _super(): Super;
409
+
410
+ declare function taggedTemplateExpression(tag: Expression, quasi: TemplateLiteral): TaggedTemplateExpression;
411
+ declare function templateElement(value: {
412
+ raw: string;
413
+ cooked?: string;
414
+ }, tail?: boolean): TemplateElement;
415
+ declare function templateLiteral(quasis: Array<TemplateElement>, expressions: Array<Expression | TSType>): TemplateLiteral;
416
+ declare function yieldExpression(argument?: Expression | null, delegate?: boolean): YieldExpression;
417
+ declare function awaitExpression(argument: Expression): AwaitExpression;
418
+ declare function _import(): Import;
419
+
420
+ declare function bigIntLiteral(value: string): BigIntLiteral;
421
+ declare function exportNamespaceSpecifier(exported: Identifier): ExportNamespaceSpecifier;
422
+ declare function optionalMemberExpression(object: Expression, property: Expression | Identifier, computed: boolean | undefined, optional: boolean): OptionalMemberExpression;
423
+ declare function optionalCallExpression(callee: Expression, _arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>, optional: boolean): OptionalCallExpression;
424
+ declare function classProperty(key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, value?: Expression | null, typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null, decorators?: Array<Decorator> | null, computed?: boolean, _static?: boolean): ClassProperty;
425
+ declare function classAccessorProperty(key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression | PrivateName, value?: Expression | null, typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null, decorators?: Array<Decorator> | null, computed?: boolean, _static?: boolean): ClassAccessorProperty;
426
+ declare function classPrivateProperty(key: PrivateName, value?: Expression | null, decorators?: Array<Decorator> | null, _static?: boolean): ClassPrivateProperty;
427
+ declare function classPrivateMethod(kind: "get" | "set" | "method" | undefined, key: PrivateName, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, _static?: boolean): ClassPrivateMethod;
428
+ declare function privateName(id: Identifier): PrivateName;
429
+ declare function staticBlock(body: Array<Statement>): StaticBlock;
430
+ declare function anyTypeAnnotation(): AnyTypeAnnotation;
431
+ declare function arrayTypeAnnotation(elementType: FlowType): ArrayTypeAnnotation;
432
+ declare function booleanTypeAnnotation(): BooleanTypeAnnotation;
433
+ declare function booleanLiteralTypeAnnotation(value: boolean): BooleanLiteralTypeAnnotation;
434
+ declare function nullLiteralTypeAnnotation(): NullLiteralTypeAnnotation;
435
+ declare function classImplements(id: Identifier, typeParameters?: TypeParameterInstantiation | null): ClassImplements;
436
+ declare function declareClass(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareClass;
437
+ declare function declareFunction(id: Identifier): DeclareFunction;
438
+ declare function declareInterface(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareInterface;
439
+ declare function declareModule(id: Identifier | StringLiteral, body: BlockStatement, kind?: "CommonJS" | "ES" | null): DeclareModule;
440
+ declare function declareModuleExports(typeAnnotation: TypeAnnotation): DeclareModuleExports;
441
+ declare function declareTypeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): DeclareTypeAlias;
442
+ declare function declareOpaqueType(id: Identifier, typeParameters?: TypeParameterDeclaration | null, supertype?: FlowType | null): DeclareOpaqueType;
443
+ declare function declareVariable(id: Identifier): DeclareVariable;
444
+ declare function declareExportDeclaration(declaration?: Flow | null, specifiers?: Array<ExportSpecifier | ExportNamespaceSpecifier> | null, source?: StringLiteral | null): DeclareExportDeclaration;
445
+ declare function declareExportAllDeclaration(source: StringLiteral): DeclareExportAllDeclaration;
446
+ declare function declaredPredicate(value: Flow): DeclaredPredicate;
447
+ declare function existsTypeAnnotation(): ExistsTypeAnnotation;
448
+ declare function functionTypeAnnotation(typeParameters: TypeParameterDeclaration | null | undefined, params: Array<FunctionTypeParam>, rest: FunctionTypeParam | null | undefined, returnType: FlowType): FunctionTypeAnnotation;
449
+ declare function functionTypeParam(name: Identifier | null | undefined, typeAnnotation: FlowType): FunctionTypeParam;
450
+ declare function genericTypeAnnotation(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): GenericTypeAnnotation;
451
+ declare function inferredPredicate(): InferredPredicate;
452
+ declare function interfaceExtends(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): InterfaceExtends;
453
+ declare function interfaceDeclaration(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceDeclaration;
454
+ declare function interfaceTypeAnnotation(_extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceTypeAnnotation;
455
+ declare function intersectionTypeAnnotation(types: Array<FlowType>): IntersectionTypeAnnotation;
456
+ declare function mixedTypeAnnotation(): MixedTypeAnnotation;
457
+ declare function emptyTypeAnnotation(): EmptyTypeAnnotation;
458
+ declare function nullableTypeAnnotation(typeAnnotation: FlowType): NullableTypeAnnotation;
459
+ declare function numberLiteralTypeAnnotation(value: number): NumberLiteralTypeAnnotation;
460
+ declare function numberTypeAnnotation(): NumberTypeAnnotation;
461
+ declare function objectTypeAnnotation(properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>, indexers?: Array<ObjectTypeIndexer>, callProperties?: Array<ObjectTypeCallProperty>, internalSlots?: Array<ObjectTypeInternalSlot>, exact?: boolean): ObjectTypeAnnotation;
462
+ declare function objectTypeInternalSlot(id: Identifier, value: FlowType, optional: boolean, _static: boolean, method: boolean): ObjectTypeInternalSlot;
463
+ declare function objectTypeCallProperty(value: FlowType): ObjectTypeCallProperty;
464
+ declare function objectTypeIndexer(id: Identifier | null | undefined, key: FlowType, value: FlowType, variance?: Variance | null): ObjectTypeIndexer;
465
+ declare function objectTypeProperty(key: Identifier | StringLiteral, value: FlowType, variance?: Variance | null): ObjectTypeProperty;
466
+ declare function objectTypeSpreadProperty(argument: FlowType): ObjectTypeSpreadProperty;
467
+ declare function opaqueType(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, supertype: FlowType | null | undefined, impltype: FlowType): OpaqueType;
468
+ declare function qualifiedTypeIdentifier(id: Identifier, qualification: Identifier | QualifiedTypeIdentifier): QualifiedTypeIdentifier;
469
+ declare function stringLiteralTypeAnnotation(value: string): StringLiteralTypeAnnotation;
470
+ declare function stringTypeAnnotation(): StringTypeAnnotation;
471
+ declare function symbolTypeAnnotation(): SymbolTypeAnnotation;
472
+ declare function thisTypeAnnotation(): ThisTypeAnnotation;
473
+ declare function tupleTypeAnnotation(types: Array<FlowType>): TupleTypeAnnotation;
474
+ declare function typeofTypeAnnotation(argument: FlowType): TypeofTypeAnnotation;
475
+ declare function typeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): TypeAlias;
476
+ declare function typeAnnotation(typeAnnotation: FlowType): TypeAnnotation;
477
+ declare function typeCastExpression(expression: Expression, typeAnnotation: TypeAnnotation): TypeCastExpression;
478
+ declare function typeParameter(bound?: TypeAnnotation | null, _default?: FlowType | null, variance?: Variance | null): TypeParameter;
479
+ declare function typeParameterDeclaration(params: Array<TypeParameter>): TypeParameterDeclaration;
480
+ declare function typeParameterInstantiation(params: Array<FlowType>): TypeParameterInstantiation;
481
+ declare function unionTypeAnnotation(types: Array<FlowType>): UnionTypeAnnotation;
482
+ declare function variance(kind: "minus" | "plus"): Variance;
483
+ declare function voidTypeAnnotation(): VoidTypeAnnotation;
484
+ declare function enumDeclaration(id: Identifier, body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody): EnumDeclaration;
485
+ declare function enumBooleanBody(members: Array<EnumBooleanMember>): EnumBooleanBody;
486
+ declare function enumNumberBody(members: Array<EnumNumberMember>): EnumNumberBody;
487
+ declare function enumStringBody(members: Array<EnumStringMember | EnumDefaultedMember>): EnumStringBody;
488
+ declare function enumSymbolBody(members: Array<EnumDefaultedMember>): EnumSymbolBody;
489
+ declare function enumBooleanMember(id: Identifier): EnumBooleanMember;
490
+ declare function enumNumberMember(id: Identifier, init: NumericLiteral): EnumNumberMember;
491
+ declare function enumStringMember(id: Identifier, init: StringLiteral): EnumStringMember;
492
+ declare function enumDefaultedMember(id: Identifier): EnumDefaultedMember;
493
+ declare function indexedAccessType(objectType: FlowType, indexType: FlowType): IndexedAccessType;
494
+ declare function optionalIndexedAccessType(objectType: FlowType, indexType: FlowType): OptionalIndexedAccessType;
495
+ declare function jsxAttribute(name: JSXIdentifier | JSXNamespacedName, value?: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null): JSXAttribute;
496
+
497
+ declare function jsxClosingElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName): JSXClosingElement;
498
+
499
+ declare function jsxElement(openingElement: JSXOpeningElement, closingElement: JSXClosingElement | null | undefined, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>, selfClosing?: boolean | null): JSXElement;
500
+
501
+ declare function jsxEmptyExpression(): JSXEmptyExpression;
502
+
503
+ declare function jsxExpressionContainer(expression: Expression | JSXEmptyExpression): JSXExpressionContainer;
504
+
505
+ declare function jsxSpreadChild(expression: Expression): JSXSpreadChild;
506
+
507
+ declare function jsxIdentifier(name: string): JSXIdentifier;
508
+
509
+ declare function jsxMemberExpression(object: JSXMemberExpression | JSXIdentifier, property: JSXIdentifier): JSXMemberExpression;
510
+
511
+ declare function jsxNamespacedName(namespace: JSXIdentifier, name: JSXIdentifier): JSXNamespacedName;
512
+
513
+ declare function jsxOpeningElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName, attributes: Array<JSXAttribute | JSXSpreadAttribute>, selfClosing?: boolean): JSXOpeningElement;
514
+
515
+ declare function jsxSpreadAttribute(argument: Expression): JSXSpreadAttribute;
516
+
517
+ declare function jsxText(value: string): JSXText;
518
+
519
+ declare function jsxFragment(openingFragment: JSXOpeningFragment, closingFragment: JSXClosingFragment, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>): JSXFragment;
520
+
521
+ declare function jsxOpeningFragment(): JSXOpeningFragment;
522
+
523
+ declare function jsxClosingFragment(): JSXClosingFragment;
524
+
525
+ declare function noop(): Noop;
526
+ declare function placeholder(expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern", name: Identifier): Placeholder;
527
+ declare function v8IntrinsicIdentifier(name: string): V8IntrinsicIdentifier;
528
+ declare function argumentPlaceholder(): ArgumentPlaceholder;
529
+ declare function bindExpression(object: Expression, callee: Expression): BindExpression;
530
+ declare function importAttribute(key: Identifier | StringLiteral, value: StringLiteral): ImportAttribute;
531
+ declare function decorator(expression: Expression): Decorator;
532
+ declare function doExpression(body: BlockStatement, async?: boolean): DoExpression;
533
+ declare function exportDefaultSpecifier(exported: Identifier): ExportDefaultSpecifier;
534
+ declare function recordExpression(properties: Array<ObjectProperty | SpreadElement>): RecordExpression;
535
+ declare function tupleExpression(elements?: Array<Expression | SpreadElement>): TupleExpression;
536
+ declare function decimalLiteral(value: string): DecimalLiteral;
537
+ declare function moduleExpression(body: Program): ModuleExpression;
538
+ declare function topicReference(): TopicReference;
539
+ declare function pipelineTopicExpression(expression: Expression): PipelineTopicExpression;
540
+ declare function pipelineBareFunction(callee: Expression): PipelineBareFunction;
541
+ declare function pipelinePrimaryTopicReference(): PipelinePrimaryTopicReference;
542
+ declare function tsParameterProperty(parameter: Identifier | AssignmentPattern): TSParameterProperty;
543
+
544
+ declare function tsDeclareFunction(id: Identifier | null | undefined, typeParameters: TSTypeParameterDeclaration | Noop | null | undefined, params: Array<Identifier | Pattern | RestElement>, returnType?: TSTypeAnnotation | Noop | null): TSDeclareFunction;
545
+
546
+ declare function tsDeclareMethod(decorators: Array<Decorator> | null | undefined, key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression, typeParameters: TSTypeParameterDeclaration | Noop | null | undefined, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, returnType?: TSTypeAnnotation | Noop | null): TSDeclareMethod;
547
+
548
+ declare function tsQualifiedName(left: TSEntityName, right: Identifier): TSQualifiedName;
549
+
550
+ declare function tsCallSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSCallSignatureDeclaration;
551
+
552
+ declare function tsConstructSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructSignatureDeclaration;
553
+
554
+ declare function tsPropertySignature(key: Expression, typeAnnotation?: TSTypeAnnotation | null): TSPropertySignature;
555
+
556
+ declare function tsMethodSignature(key: Expression, typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSMethodSignature;
557
+
558
+ declare function tsIndexSignature(parameters: Array<Identifier>, typeAnnotation?: TSTypeAnnotation | null): TSIndexSignature;
559
+
560
+ declare function tsAnyKeyword(): TSAnyKeyword;
561
+
562
+ declare function tsBooleanKeyword(): TSBooleanKeyword;
563
+
564
+ declare function tsBigIntKeyword(): TSBigIntKeyword;
565
+
566
+ declare function tsIntrinsicKeyword(): TSIntrinsicKeyword;
567
+
568
+ declare function tsNeverKeyword(): TSNeverKeyword;
569
+
570
+ declare function tsNullKeyword(): TSNullKeyword;
571
+
572
+ declare function tsNumberKeyword(): TSNumberKeyword;
573
+
574
+ declare function tsObjectKeyword(): TSObjectKeyword;
575
+
576
+ declare function tsStringKeyword(): TSStringKeyword;
577
+
578
+ declare function tsSymbolKeyword(): TSSymbolKeyword;
579
+
580
+ declare function tsUndefinedKeyword(): TSUndefinedKeyword;
581
+
582
+ declare function tsUnknownKeyword(): TSUnknownKeyword;
583
+
584
+ declare function tsVoidKeyword(): TSVoidKeyword;
585
+
586
+ declare function tsThisType(): TSThisType;
587
+
588
+ declare function tsFunctionType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSFunctionType;
589
+
590
+ declare function tsConstructorType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructorType;
591
+
592
+ declare function tsTypeReference(typeName: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSTypeReference;
593
+
594
+ declare function tsTypePredicate(parameterName: Identifier | TSThisType, typeAnnotation?: TSTypeAnnotation | null, asserts?: boolean | null): TSTypePredicate;
595
+
596
+ declare function tsTypeQuery(exprName: TSEntityName | TSImportType, typeParameters?: TSTypeParameterInstantiation | null): TSTypeQuery;
597
+
598
+ declare function tsTypeLiteral(members: Array<TSTypeElement>): TSTypeLiteral;
599
+
600
+ declare function tsArrayType(elementType: TSType): TSArrayType;
601
+
602
+ declare function tsTupleType(elementTypes: Array<TSType | TSNamedTupleMember>): TSTupleType;
603
+
604
+ declare function tsOptionalType(typeAnnotation: TSType): TSOptionalType;
605
+
606
+ declare function tsRestType(typeAnnotation: TSType): TSRestType;
607
+
608
+ declare function tsNamedTupleMember(label: Identifier, elementType: TSType, optional?: boolean): TSNamedTupleMember;
609
+
610
+ declare function tsUnionType(types: Array<TSType>): TSUnionType;
611
+
612
+ declare function tsIntersectionType(types: Array<TSType>): TSIntersectionType;
613
+
614
+ declare function tsConditionalType(checkType: TSType, extendsType: TSType, trueType: TSType, falseType: TSType): TSConditionalType;
615
+
616
+ declare function tsInferType(typeParameter: TSTypeParameter): TSInferType;
617
+
618
+ declare function tsParenthesizedType(typeAnnotation: TSType): TSParenthesizedType;
619
+
620
+ declare function tsTypeOperator(typeAnnotation: TSType): TSTypeOperator;
621
+
622
+ declare function tsIndexedAccessType(objectType: TSType, indexType: TSType): TSIndexedAccessType;
623
+
624
+ declare function tsMappedType(typeParameter: TSTypeParameter, typeAnnotation?: TSType | null, nameType?: TSType | null): TSMappedType;
625
+
626
+ declare function tsLiteralType(literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression): TSLiteralType;
627
+
628
+ declare function tsExpressionWithTypeArguments(expression: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSExpressionWithTypeArguments;
629
+
630
+ declare function tsInterfaceDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, _extends: Array<TSExpressionWithTypeArguments> | null | undefined, body: TSInterfaceBody): TSInterfaceDeclaration;
631
+
632
+ declare function tsInterfaceBody(body: Array<TSTypeElement>): TSInterfaceBody;
633
+
634
+ declare function tsTypeAliasDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, typeAnnotation: TSType): TSTypeAliasDeclaration;
635
+
636
+ declare function tsInstantiationExpression(expression: Expression, typeParameters?: TSTypeParameterInstantiation | null): TSInstantiationExpression;
637
+
638
+ declare function tsAsExpression(expression: Expression, typeAnnotation: TSType): TSAsExpression;
639
+
640
+ declare function tsSatisfiesExpression(expression: Expression, typeAnnotation: TSType): TSSatisfiesExpression;
641
+
642
+ declare function tsTypeAssertion(typeAnnotation: TSType, expression: Expression): TSTypeAssertion;
643
+
644
+ declare function tsEnumDeclaration(id: Identifier, members: Array<TSEnumMember>): TSEnumDeclaration;
645
+
646
+ declare function tsEnumMember(id: Identifier | StringLiteral, initializer?: Expression | null): TSEnumMember;
647
+
648
+ declare function tsModuleDeclaration(id: Identifier | StringLiteral, body: TSModuleBlock | TSModuleDeclaration): TSModuleDeclaration;
649
+
650
+ declare function tsModuleBlock(body: Array<Statement>): TSModuleBlock;
651
+
652
+ declare function tsImportType(argument: StringLiteral, qualifier?: TSEntityName | null, typeParameters?: TSTypeParameterInstantiation | null): TSImportType;
653
+
654
+ declare function tsImportEqualsDeclaration(id: Identifier, moduleReference: TSEntityName | TSExternalModuleReference): TSImportEqualsDeclaration;
655
+
656
+ declare function tsExternalModuleReference(expression: StringLiteral): TSExternalModuleReference;
657
+
658
+ declare function tsNonNullExpression(expression: Expression): TSNonNullExpression;
659
+
660
+ declare function tsExportAssignment(expression: Expression): TSExportAssignment;
661
+
662
+ declare function tsNamespaceExportDeclaration(id: Identifier): TSNamespaceExportDeclaration;
663
+
664
+ declare function tsTypeAnnotation(typeAnnotation: TSType): TSTypeAnnotation;
665
+
666
+ declare function tsTypeParameterInstantiation(params: Array<TSType>): TSTypeParameterInstantiation;
667
+
668
+ declare function tsTypeParameterDeclaration(params: Array<TSTypeParameter>): TSTypeParameterDeclaration;
669
+
670
+ declare function tsTypeParameter(constraint: TSType | null | undefined, _default: TSType | null | undefined, name: string): TSTypeParameter;
671
+
672
+ /** @deprecated */
673
+ declare function NumberLiteral$1(value: number): NumericLiteral;
674
+
675
+ /** @deprecated */
676
+ declare function RegexLiteral$1(pattern: string, flags?: string): RegExpLiteral;
677
+
678
+ /** @deprecated */
679
+ declare function RestProperty$1(argument: LVal): RestElement;
680
+
681
+ /** @deprecated */
682
+ declare function SpreadProperty$1(argument: Expression): SpreadElement;
683
+
684
+ declare function buildUndefinedNode(): UnaryExpression;
685
+
686
+ /**
687
+ * Create a clone of a `node` including only properties belonging to the node.
688
+ * If the second parameter is `false`, cloneNode performs a shallow clone.
689
+ * If the third parameter is true, the cloned nodes exclude location properties.
690
+ */
691
+ declare function cloneNode<T extends Node>(node: T, deep?: boolean, withoutLoc?: boolean): T;
692
+
693
+ /**
694
+ * Create a shallow clone of a `node`, including only
695
+ * properties belonging to the node.
696
+ * @deprecated Use t.cloneNode instead.
697
+ */
698
+ declare function clone<T extends Node>(node: T): T;
699
+
700
+ /**
701
+ * Create a deep clone of a `node` and all of it's child nodes
702
+ * including only properties belonging to the node.
703
+ * @deprecated Use t.cloneNode instead.
704
+ */
705
+ declare function cloneDeep<T extends Node>(node: T): T;
706
+
707
+ /**
708
+ * Create a deep clone of a `node` and all of it's child nodes
709
+ * including only properties belonging to the node.
710
+ * excluding `_private` and location properties.
711
+ */
712
+ declare function cloneDeepWithoutLoc<T extends Node>(node: T): T;
713
+
714
+ /**
715
+ * Create a shallow clone of a `node` excluding `_private` and location properties.
716
+ */
717
+ declare function cloneWithoutLoc<T extends Node>(node: T): T;
718
+
719
+ /**
720
+ * Add comment of certain type to a node.
721
+ */
722
+ declare function addComment<T extends Node>(node: T, type: CommentTypeShorthand, content: string, line?: boolean): T;
723
+
724
+ /**
725
+ * Add comments of certain type to a node.
726
+ */
727
+ declare function addComments<T extends Node>(node: T, type: CommentTypeShorthand, comments: Array<Comment>): T;
728
+
729
+ declare function inheritInnerComments(child: Node, parent: Node): void;
730
+
731
+ declare function inheritLeadingComments(child: Node, parent: Node): void;
732
+
733
+ /**
734
+ * Inherit all unique comments from `parent` node to `child` node.
735
+ */
736
+ declare function inheritsComments<T extends Node>(child: T, parent: Node): T;
737
+
738
+ declare function inheritTrailingComments(child: Node, parent: Node): void;
739
+
740
+ /**
741
+ * Remove comment properties from a node.
742
+ */
743
+ declare function removeComments<T extends Node>(node: T): T;
744
+
745
+ declare const STANDARDIZED_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
746
+ declare const EXPRESSION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
747
+ declare const BINARY_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
748
+ declare const SCOPABLE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
749
+ declare const BLOCKPARENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
750
+ declare const BLOCK_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
751
+ declare const STATEMENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
752
+ declare const TERMINATORLESS_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
753
+ declare const COMPLETIONSTATEMENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
754
+ declare const CONDITIONAL_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
755
+ declare const LOOP_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
756
+ declare const WHILE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
757
+ declare const EXPRESSIONWRAPPER_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
758
+ declare const FOR_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
759
+ declare const FORXSTATEMENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
760
+ declare const FUNCTION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
761
+ declare const FUNCTIONPARENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
762
+ declare const PUREISH_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
763
+ declare const DECLARATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
764
+ declare const PATTERNLIKE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
765
+ declare const LVAL_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
766
+ declare const TSENTITYNAME_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
767
+ declare const LITERAL_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
768
+ declare const IMMUTABLE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
769
+ declare const USERWHITESPACABLE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
770
+ declare const METHOD_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
771
+ declare const OBJECTMEMBER_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
772
+ declare const PROPERTY_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
773
+ declare const UNARYLIKE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
774
+ declare const PATTERN_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
775
+ declare const CLASS_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
776
+ declare const IMPORTOREXPORTDECLARATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
777
+ declare const EXPORTDECLARATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
778
+ declare const MODULESPECIFIER_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
779
+ declare const ACCESSOR_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
780
+ declare const PRIVATE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
781
+ declare const FLOW_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
782
+ declare const FLOWTYPE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
783
+ declare const FLOWBASEANNOTATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
784
+ declare const FLOWDECLARATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
785
+ declare const FLOWPREDICATE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
786
+ declare const ENUMBODY_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
787
+ declare const ENUMMEMBER_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
788
+ declare const JSX_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
789
+ declare const MISCELLANEOUS_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
790
+ declare const TYPESCRIPT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
791
+ declare const TSTYPEELEMENT_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
792
+ declare const TSTYPE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
793
+ declare const TSBASETYPE_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
794
+ /**
795
+ * @deprecated migrate to IMPORTOREXPORTDECLARATION_TYPES.
796
+ */
797
+ declare const MODULEDECLARATION_TYPES: ("StringLiteral" | "NumericLiteral" | "JSXText" | "JSXIdentifier" | "AnyTypeAnnotation" | "ArgumentPlaceholder" | "ArrayExpression" | "ArrayPattern" | "ArrayTypeAnnotation" | "ArrowFunctionExpression" | "AssignmentExpression" | "AssignmentPattern" | "AwaitExpression" | "BigIntLiteral" | "BinaryExpression" | "BindExpression" | "BlockStatement" | "BooleanLiteral" | "BooleanLiteralTypeAnnotation" | "BooleanTypeAnnotation" | "BreakStatement" | "CallExpression" | "CatchClause" | "ClassAccessorProperty" | "ClassBody" | "ClassDeclaration" | "ClassExpression" | "ClassImplements" | "ClassMethod" | "ClassPrivateMethod" | "ClassPrivateProperty" | "ClassProperty" | "ConditionalExpression" | "ContinueStatement" | "DebuggerStatement" | "DecimalLiteral" | "DeclareClass" | "DeclareExportAllDeclaration" | "DeclareExportDeclaration" | "DeclareFunction" | "DeclareInterface" | "DeclareModule" | "DeclareModuleExports" | "DeclareOpaqueType" | "DeclareTypeAlias" | "DeclareVariable" | "DeclaredPredicate" | "Decorator" | "Directive" | "DirectiveLiteral" | "DoExpression" | "DoWhileStatement" | "EmptyStatement" | "EmptyTypeAnnotation" | "EnumBooleanBody" | "EnumBooleanMember" | "EnumDeclaration" | "EnumDefaultedMember" | "EnumNumberBody" | "EnumNumberMember" | "EnumStringBody" | "EnumStringMember" | "EnumSymbolBody" | "ExistsTypeAnnotation" | "ExportAllDeclaration" | "ExportDefaultDeclaration" | "ExportDefaultSpecifier" | "ExportNamedDeclaration" | "ExportNamespaceSpecifier" | "ExportSpecifier" | "ExpressionStatement" | "File" | "ForInStatement" | "ForOfStatement" | "ForStatement" | "FunctionDeclaration" | "FunctionExpression" | "FunctionTypeAnnotation" | "FunctionTypeParam" | "GenericTypeAnnotation" | "Identifier" | "IfStatement" | "Import" | "ImportAttribute" | "ImportDeclaration" | "ImportDefaultSpecifier" | "ImportExpression" | "ImportNamespaceSpecifier" | "ImportSpecifier" | "IndexedAccessType" | "InferredPredicate" | "InterfaceDeclaration" | "InterfaceExtends" | "InterfaceTypeAnnotation" | "InterpreterDirective" | "IntersectionTypeAnnotation" | "JSXAttribute" | "JSXClosingElement" | "JSXClosingFragment" | "JSXElement" | "JSXEmptyExpression" | "JSXExpressionContainer" | "JSXFragment" | "JSXMemberExpression" | "JSXNamespacedName" | "JSXOpeningElement" | "JSXOpeningFragment" | "JSXSpreadAttribute" | "JSXSpreadChild" | "LabeledStatement" | "LogicalExpression" | "MemberExpression" | "MetaProperty" | "MixedTypeAnnotation" | "ModuleExpression" | "NewExpression" | "Noop" | "NullLiteral" | "NullLiteralTypeAnnotation" | "NullableTypeAnnotation" | "NumberLiteral" | "NumberLiteralTypeAnnotation" | "NumberTypeAnnotation" | "ObjectExpression" | "ObjectMethod" | "ObjectPattern" | "ObjectProperty" | "ObjectTypeAnnotation" | "ObjectTypeCallProperty" | "ObjectTypeIndexer" | "ObjectTypeInternalSlot" | "ObjectTypeProperty" | "ObjectTypeSpreadProperty" | "OpaqueType" | "OptionalCallExpression" | "OptionalIndexedAccessType" | "OptionalMemberExpression" | "ParenthesizedExpression" | "PipelineBareFunction" | "PipelinePrimaryTopicReference" | "PipelineTopicExpression" | "Placeholder" | "PrivateName" | "Program" | "QualifiedTypeIdentifier" | "RecordExpression" | "RegExpLiteral" | "RegexLiteral" | "RestElement" | "RestProperty" | "ReturnStatement" | "SequenceExpression" | "SpreadElement" | "SpreadProperty" | "StaticBlock" | "StringLiteralTypeAnnotation" | "StringTypeAnnotation" | "Super" | "SwitchCase" | "SwitchStatement" | "SymbolTypeAnnotation" | "TSAnyKeyword" | "TSArrayType" | "TSAsExpression" | "TSBigIntKeyword" | "TSBooleanKeyword" | "TSCallSignatureDeclaration" | "TSConditionalType" | "TSConstructSignatureDeclaration" | "TSConstructorType" | "TSDeclareFunction" | "TSDeclareMethod" | "TSEnumDeclaration" | "TSEnumMember" | "TSExportAssignment" | "TSExpressionWithTypeArguments" | "TSExternalModuleReference" | "TSFunctionType" | "TSImportEqualsDeclaration" | "TSImportType" | "TSIndexSignature" | "TSIndexedAccessType" | "TSInferType" | "TSInstantiationExpression" | "TSInterfaceBody" | "TSInterfaceDeclaration" | "TSIntersectionType" | "TSIntrinsicKeyword" | "TSLiteralType" | "TSMappedType" | "TSMethodSignature" | "TSModuleBlock" | "TSModuleDeclaration" | "TSNamedTupleMember" | "TSNamespaceExportDeclaration" | "TSNeverKeyword" | "TSNonNullExpression" | "TSNullKeyword" | "TSNumberKeyword" | "TSObjectKeyword" | "TSOptionalType" | "TSParameterProperty" | "TSParenthesizedType" | "TSPropertySignature" | "TSQualifiedName" | "TSRestType" | "TSSatisfiesExpression" | "TSStringKeyword" | "TSSymbolKeyword" | "TSThisType" | "TSTupleType" | "TSTypeAliasDeclaration" | "TSTypeAnnotation" | "TSTypeAssertion" | "TSTypeLiteral" | "TSTypeOperator" | "TSTypeParameter" | "TSTypeParameterDeclaration" | "TSTypeParameterInstantiation" | "TSTypePredicate" | "TSTypeQuery" | "TSTypeReference" | "TSUndefinedKeyword" | "TSUnionType" | "TSUnknownKeyword" | "TSVoidKeyword" | "TaggedTemplateExpression" | "TemplateElement" | "TemplateLiteral" | "ThisExpression" | "ThisTypeAnnotation" | "ThrowStatement" | "TopicReference" | "TryStatement" | "TupleExpression" | "TupleTypeAnnotation" | "TypeAlias" | "TypeAnnotation" | "TypeCastExpression" | "TypeParameter" | "TypeParameterDeclaration" | "TypeParameterInstantiation" | "TypeofTypeAnnotation" | "UnaryExpression" | "UnionTypeAnnotation" | "UpdateExpression" | "V8IntrinsicIdentifier" | "VariableDeclaration" | "VariableDeclarator" | "Variance" | "VoidTypeAnnotation" | "WhileStatement" | "WithStatement" | "YieldExpression" | keyof Aliases)[];
798
+
799
+ declare const STATEMENT_OR_BLOCK_KEYS: string[];
800
+ declare const FLATTENABLE_KEYS: string[];
801
+ declare const FOR_INIT_KEYS: string[];
802
+ declare const COMMENT_KEYS: readonly ["leadingComments", "trailingComments", "innerComments"];
803
+ declare const LOGICAL_OPERATORS: string[];
804
+ declare const UPDATE_OPERATORS: string[];
805
+ declare const BOOLEAN_NUMBER_BINARY_OPERATORS: string[];
806
+ declare const EQUALITY_BINARY_OPERATORS: string[];
807
+ declare const COMPARISON_BINARY_OPERATORS: string[];
808
+ declare const BOOLEAN_BINARY_OPERATORS: string[];
809
+ declare const NUMBER_BINARY_OPERATORS: string[];
810
+ declare const BINARY_OPERATORS: string[];
811
+ declare const ASSIGNMENT_OPERATORS: string[];
812
+ declare const BOOLEAN_UNARY_OPERATORS: string[];
813
+ declare const NUMBER_UNARY_OPERATORS: string[];
814
+ declare const STRING_UNARY_OPERATORS: string[];
815
+ declare const UNARY_OPERATORS: string[];
816
+ declare const INHERIT_KEYS: {
817
+ readonly optional: readonly ["typeAnnotation", "typeParameters", "returnType"];
818
+ readonly force: readonly ["start", "loc", "end"];
819
+ };
820
+ declare const BLOCK_SCOPED_SYMBOL: unique symbol;
821
+ declare const NOT_LOCAL_BINDING: unique symbol;
822
+
823
+ /**
824
+ * Ensure the `key` (defaults to "body") of a `node` is a block.
825
+ * Casting it to a block if it is not.
826
+ *
827
+ * Returns the BlockStatement
828
+ */
829
+ declare function ensureBlock(node: Node, key?: string): BlockStatement;
830
+
831
+ declare function toBindingIdentifierName(name: string): string;
832
+
833
+ declare function toBlock(node: Statement | Expression, parent?: Node): BlockStatement;
834
+
835
+ declare function toComputedKey(node: ObjectMember | ObjectProperty | ClassMethod | ClassProperty | ClassAccessorProperty | MemberExpression | OptionalMemberExpression, key?: Expression | PrivateName): PrivateName | Expression;
836
+
837
+ declare const _default$3: {
838
+ (node: Function): FunctionExpression;
839
+ (node: Class): ClassExpression;
840
+ (node: ExpressionStatement | Expression | Class | Function): Expression;
841
+ };
842
+ //# sourceMappingURL=toExpression.d.ts.map
843
+
844
+ declare function toIdentifier(input: string): string;
845
+
846
+ declare function toKeyAlias(node: Method | Property, key?: Node): string;
847
+ declare namespace toKeyAlias {
848
+ var uid: number;
849
+ var increment: () => number;
850
+ }
851
+ //# sourceMappingURL=toKeyAlias.d.ts.map
852
+
853
+ declare const _default$2: {
854
+ (node: AssignmentExpression, ignore?: boolean): ExpressionStatement;
855
+ <T extends Statement>(node: T, ignore: false): T;
856
+ <T_1 extends Statement>(node: T_1, ignore?: boolean): false | T_1;
857
+ (node: Class, ignore: false): ClassDeclaration;
858
+ (node: Class, ignore?: boolean): ClassDeclaration | false;
859
+ (node: Function, ignore: false): FunctionDeclaration;
860
+ (node: Function, ignore?: boolean): FunctionDeclaration | false;
861
+ (node: Node, ignore: false): Statement;
862
+ (node: Node, ignore?: boolean): Statement | false;
863
+ };
864
+ //# sourceMappingURL=toStatement.d.ts.map
865
+
866
+ declare const _default$1: {
867
+ (value: undefined): Identifier;
868
+ (value: boolean): BooleanLiteral;
869
+ (value: null): NullLiteral;
870
+ (value: string): StringLiteral;
871
+ (value: number): NumericLiteral | BinaryExpression | UnaryExpression;
872
+ (value: RegExp): RegExpLiteral;
873
+ (value: ReadonlyArray<unknown>): ArrayExpression;
874
+ (value: object): ObjectExpression;
875
+ (value: unknown): Expression;
876
+ };
877
+ //# sourceMappingURL=valueToNode.d.ts.map
878
+
879
+ declare const VISITOR_KEYS: Record<string, string[]>;
880
+ declare const ALIAS_KEYS: Partial<Record<NodeTypesWithoutComment, string[]>>;
881
+ declare const FLIPPED_ALIAS_KEYS: Record<string, NodeTypesWithoutComment[]>;
882
+ declare const NODE_FIELDS: Record<string, FieldDefinitions>;
883
+ declare const BUILDER_KEYS: Record<string, string[]>;
884
+ declare const DEPRECATED_KEYS: Record<string, NodeTypesWithoutComment>;
885
+ declare const NODE_PARENT_VALIDATIONS: Record<string, Validator>;
886
+ declare function getType(val: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null" | "array";
887
+ type NodeTypesWithoutComment = Node["type"] | keyof Aliases;
888
+ type NodeTypes = NodeTypesWithoutComment | Comment["type"];
889
+ type PrimitiveTypes = ReturnType<typeof getType>;
890
+ type FieldDefinitions = {
891
+ [x: string]: FieldOptions;
892
+ };
893
+ type Validator = ({
894
+ type: PrimitiveTypes;
895
+ } | {
896
+ each: Validator;
897
+ } | {
898
+ chainOf: Validator[];
899
+ } | {
900
+ oneOf: any[];
901
+ } | {
902
+ oneOfNodeTypes: NodeTypes[];
903
+ } | {
904
+ oneOfNodeOrValueTypes: (NodeTypes | PrimitiveTypes)[];
905
+ } | {
906
+ shapeOf: {
907
+ [x: string]: FieldOptions;
908
+ };
909
+ } | {}) & ((node: Node, key: string, val: any) => void);
910
+ type FieldOptions = {
911
+ default?: string | number | boolean | [];
912
+ optional?: boolean;
913
+ deprecated?: boolean;
914
+ validate?: Validator;
915
+ };
916
+
917
+ declare const PLACEHOLDERS: readonly ["Identifier", "StringLiteral", "Expression", "Statement", "Declaration", "BlockStatement", "ClassBody", "Pattern"];
918
+ declare const PLACEHOLDERS_ALIAS: Record<string, string[]>;
919
+ declare const PLACEHOLDERS_FLIPPED_ALIAS: Record<string, string[]>;
920
+
921
+ declare const DEPRECATED_ALIASES: {
922
+ ModuleDeclaration: string;
923
+ };
924
+
925
+ declare const TYPES: Array<string>;
926
+ //# sourceMappingURL=index.d.ts.map
927
+
928
+ /**
929
+ * Append a node to a member expression.
930
+ */
931
+ declare function appendToMemberExpression(member: MemberExpression, append: MemberExpression["property"], computed?: boolean): MemberExpression;
932
+
933
+ /**
934
+ * Inherit all contextual properties from `parent` node to `child` node.
935
+ */
936
+ declare function inherits<T extends Node | null | undefined>(child: T, parent: Node | null | undefined): T;
937
+
938
+ /**
939
+ * Prepend a node to a member expression.
940
+ */
941
+ declare function prependToMemberExpression<T extends Pick<MemberExpression, "object" | "property">>(member: T, prepend: MemberExpression["object"]): T;
942
+
943
+ type Options = {
944
+ preserveComments?: boolean;
945
+ };
946
+ /**
947
+ * Remove all of the _* properties from a node along with the additional metadata
948
+ * properties like location data and raw token data.
949
+ */
950
+ declare function removeProperties(node: Node, opts?: Options): void;
951
+
952
+ declare function removePropertiesDeep<T extends Node>(tree: T, opts?: {
953
+ preserveComments: boolean;
954
+ } | null): T;
955
+
956
+ /**
957
+ * Dedupe type annotations.
958
+ */
959
+ declare function removeTypeDuplicates(nodesIn: ReadonlyArray<FlowType | false | null | undefined>): FlowType[];
960
+
961
+ declare function getBindingIdentifiers(node: Node, duplicates: true, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Array<Identifier>>;
962
+ declare function getBindingIdentifiers(node: Node, duplicates?: false, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Identifier>;
963
+ declare function getBindingIdentifiers(node: Node, duplicates?: boolean, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Identifier> | Record<string, Array<Identifier>>;
964
+ declare namespace getBindingIdentifiers {
965
+ var keys: {
966
+ DeclareClass: string[];
967
+ DeclareFunction: string[];
968
+ DeclareModule: string[];
969
+ DeclareVariable: string[];
970
+ DeclareInterface: string[];
971
+ DeclareTypeAlias: string[];
972
+ DeclareOpaqueType: string[];
973
+ InterfaceDeclaration: string[];
974
+ TypeAlias: string[];
975
+ OpaqueType: string[];
976
+ CatchClause: string[];
977
+ LabeledStatement: string[];
978
+ UnaryExpression: string[];
979
+ AssignmentExpression: string[];
980
+ ImportSpecifier: string[];
981
+ ImportNamespaceSpecifier: string[];
982
+ ImportDefaultSpecifier: string[];
983
+ ImportDeclaration: string[];
984
+ ExportSpecifier: string[];
985
+ ExportNamespaceSpecifier: string[];
986
+ ExportDefaultSpecifier: string[];
987
+ FunctionDeclaration: string[];
988
+ FunctionExpression: string[];
989
+ ArrowFunctionExpression: string[];
990
+ ObjectMethod: string[];
991
+ ClassMethod: string[];
992
+ ClassPrivateMethod: string[];
993
+ ForInStatement: string[];
994
+ ForOfStatement: string[];
995
+ ClassDeclaration: string[];
996
+ ClassExpression: string[];
997
+ RestElement: string[];
998
+ UpdateExpression: string[];
999
+ ObjectProperty: string[];
1000
+ AssignmentPattern: string[];
1001
+ ArrayPattern: string[];
1002
+ ObjectPattern: string[];
1003
+ VariableDeclaration: string[];
1004
+ VariableDeclarator: string[];
1005
+ };
1006
+ }
1007
+ //# sourceMappingURL=getBindingIdentifiers.d.ts.map
1008
+
1009
+ declare const _default: {
1010
+ (node: Node, duplicates: true): Record<string, Array<Identifier>>;
1011
+ (node: Node, duplicates?: false): Record<string, Identifier>;
1012
+ (node: Node, duplicates?: boolean): Record<string, Identifier> | Record<string, Array<Identifier>>;
1013
+ };
1014
+ //# sourceMappingURL=getOuterBindingIdentifiers.d.ts.map
1015
+
1016
+ type TraversalAncestors = Array<{
1017
+ node: Node;
1018
+ key: string;
1019
+ index?: number;
1020
+ }>;
1021
+ type TraversalHandler<T> = (this: undefined, node: Node, parent: TraversalAncestors, state: T) => void;
1022
+ type TraversalHandlers<T> = {
1023
+ enter?: TraversalHandler<T>;
1024
+ exit?: TraversalHandler<T>;
1025
+ };
1026
+ /**
1027
+ * A general AST traversal with both prefix and postfix handlers, and a
1028
+ * state object. Exposes ancestry data to each handler so that more complex
1029
+ * AST data can be taken into account.
1030
+ */
1031
+ declare function traverse<T>(node: Node, handlers: TraversalHandler<T> | TraversalHandlers<T>, state?: T): void;
1032
+
1033
+ /**
1034
+ * A prefix AST traversal implementation meant for simple searching
1035
+ * and processing.
1036
+ */
1037
+ declare function traverseFast<Options = {}>(node: Node | null | undefined, enter: (node: Node, opts?: Options) => void, opts?: Options): void;
1038
+
1039
+ declare function shallowEqual<T extends object>(actual: object, expected: T): actual is T;
1040
+
1041
+ declare function is<T extends Node["type"]>(type: T, node: Node | null | undefined, opts?: undefined): node is Extract<Node, {
1042
+ type: T;
1043
+ }>;
1044
+ declare function is<T extends Node["type"], P extends Extract<Node, {
1045
+ type: T;
1046
+ }>>(type: T, n: Node | null | undefined, required: Partial<P>): n is P;
1047
+ declare function is<P extends Node>(type: string, node: Node | null | undefined, opts: Partial<P>): node is P;
1048
+ declare function is(type: string, node: Node | null | undefined, opts?: Partial<Node>): node is Node;
1049
+
1050
+ /**
1051
+ * Check if the input `node` is a binding identifier.
1052
+ */
1053
+ declare function isBinding(node: Node, parent: Node, grandparent?: Node): boolean;
1054
+
1055
+ /**
1056
+ * Check if the input `node` is block scoped.
1057
+ */
1058
+ declare function isBlockScoped(node: Node): boolean;
1059
+
1060
+ /**
1061
+ * Check if the input `node` is definitely immutable.
1062
+ */
1063
+ declare function isImmutable(node: Node): boolean;
1064
+
1065
+ /**
1066
+ * Check if the input `node` is a `let` variable declaration.
1067
+ */
1068
+ declare function isLet(node: Node): boolean;
1069
+
1070
+ declare function isNode(node: any): node is Node;
1071
+
1072
+ /**
1073
+ * Check if two nodes are equivalent
1074
+ */
1075
+ declare function isNodesEquivalent<T extends Partial<Node>>(a: T, b: any): b is T;
1076
+
1077
+ /**
1078
+ * Test if a `placeholderType` is a `targetType` or if `targetType` is an alias of `placeholderType`.
1079
+ */
1080
+ declare function isPlaceholderType(placeholderType: string, targetType: string): boolean;
1081
+
1082
+ /**
1083
+ * Check if the input `node` is a reference to a bound variable.
1084
+ */
1085
+ declare function isReferenced(node: Node, parent: Node, grandparent?: Node): boolean;
1086
+
1087
+ /**
1088
+ * Check if the input `node` is a scope.
1089
+ */
1090
+ declare function isScope(node: Node, parent: Node): boolean;
1091
+
1092
+ /**
1093
+ * Check if the input `specifier` is a `default` import or export.
1094
+ */
1095
+ declare function isSpecifierDefault(specifier: ModuleSpecifier): boolean;
1096
+
1097
+ declare function isType<T extends Node["type"]>(nodeType: string, targetType: T): nodeType is T;
1098
+ declare function isType(nodeType: string | null | undefined, targetType: string): boolean;
1099
+
1100
+ /**
1101
+ * Check if the input `name` is a valid identifier name according to the ES3 specification.
1102
+ *
1103
+ * Additional ES3 reserved words are
1104
+ */
1105
+ declare function isValidES3Identifier(name: string): boolean;
1106
+
1107
+ /**
1108
+ * Check if the input `name` is a valid identifier name
1109
+ * and isn't a reserved word.
1110
+ */
1111
+ declare function isValidIdentifier(name: string, reserved?: boolean): boolean;
1112
+
1113
+ /**
1114
+ * Check if the input `node` is a variable declaration.
1115
+ */
1116
+ declare function isVar(node: Node): boolean;
1117
+
1118
+ /**
1119
+ * Determines whether or not the input node `member` matches the
1120
+ * input `match`.
1121
+ *
1122
+ * For example, given the match `React.createClass` it would match the
1123
+ * parsed nodes of `React.createClass` and `React["createClass"]`.
1124
+ */
1125
+ declare function matchesPattern(member: Node | null | undefined, match: string | string[], allowPartial?: boolean): boolean;
1126
+
1127
+ declare function validate(node: Node | undefined | null, key: string, val: any): void;
1128
+
1129
+ /**
1130
+ * Build a function that when called will return whether or not the
1131
+ * input `node` `MemberExpression` matches the input `match`.
1132
+ *
1133
+ * For example, given the match `React.createClass` it would match the
1134
+ * parsed nodes of `React.createClass` and `React["createClass"]`.
1135
+ */
1136
+ declare function buildMatchMemberExpression(match: string, allowPartial?: boolean): (member: Node) => boolean;
1137
+
1138
+ type Opts<Obj> = Partial<{
1139
+ [Prop in keyof Obj]: Obj[Prop] extends Node ? Node : Obj[Prop] extends Node[] ? Node[] : Obj[Prop];
1140
+ }>;
1141
+ declare function isArrayExpression(node: Node | null | undefined, opts?: Opts<ArrayExpression> | null): node is ArrayExpression;
1142
+ declare function isAssignmentExpression(node: Node | null | undefined, opts?: Opts<AssignmentExpression> | null): node is AssignmentExpression;
1143
+ declare function isBinaryExpression(node: Node | null | undefined, opts?: Opts<BinaryExpression> | null): node is BinaryExpression;
1144
+ declare function isInterpreterDirective(node: Node | null | undefined, opts?: Opts<InterpreterDirective> | null): node is InterpreterDirective;
1145
+ declare function isDirective(node: Node | null | undefined, opts?: Opts<Directive> | null): node is Directive;
1146
+ declare function isDirectiveLiteral(node: Node | null | undefined, opts?: Opts<DirectiveLiteral> | null): node is DirectiveLiteral;
1147
+ declare function isBlockStatement(node: Node | null | undefined, opts?: Opts<BlockStatement> | null): node is BlockStatement;
1148
+ declare function isBreakStatement(node: Node | null | undefined, opts?: Opts<BreakStatement> | null): node is BreakStatement;
1149
+ declare function isCallExpression(node: Node | null | undefined, opts?: Opts<CallExpression> | null): node is CallExpression;
1150
+ declare function isCatchClause(node: Node | null | undefined, opts?: Opts<CatchClause> | null): node is CatchClause;
1151
+ declare function isConditionalExpression(node: Node | null | undefined, opts?: Opts<ConditionalExpression> | null): node is ConditionalExpression;
1152
+ declare function isContinueStatement(node: Node | null | undefined, opts?: Opts<ContinueStatement> | null): node is ContinueStatement;
1153
+ declare function isDebuggerStatement(node: Node | null | undefined, opts?: Opts<DebuggerStatement> | null): node is DebuggerStatement;
1154
+ declare function isDoWhileStatement(node: Node | null | undefined, opts?: Opts<DoWhileStatement> | null): node is DoWhileStatement;
1155
+ declare function isEmptyStatement(node: Node | null | undefined, opts?: Opts<EmptyStatement> | null): node is EmptyStatement;
1156
+ declare function isExpressionStatement(node: Node | null | undefined, opts?: Opts<ExpressionStatement> | null): node is ExpressionStatement;
1157
+ declare function isFile(node: Node | null | undefined, opts?: Opts<File> | null): node is File;
1158
+ declare function isForInStatement(node: Node | null | undefined, opts?: Opts<ForInStatement> | null): node is ForInStatement;
1159
+ declare function isForStatement(node: Node | null | undefined, opts?: Opts<ForStatement> | null): node is ForStatement;
1160
+ declare function isFunctionDeclaration(node: Node | null | undefined, opts?: Opts<FunctionDeclaration> | null): node is FunctionDeclaration;
1161
+ declare function isFunctionExpression(node: Node | null | undefined, opts?: Opts<FunctionExpression> | null): node is FunctionExpression;
1162
+ declare function isIdentifier(node: Node | null | undefined, opts?: Opts<Identifier> | null): node is Identifier;
1163
+ declare function isIfStatement(node: Node | null | undefined, opts?: Opts<IfStatement> | null): node is IfStatement;
1164
+ declare function isLabeledStatement(node: Node | null | undefined, opts?: Opts<LabeledStatement> | null): node is LabeledStatement;
1165
+ declare function isStringLiteral(node: Node | null | undefined, opts?: Opts<StringLiteral> | null): node is StringLiteral;
1166
+ declare function isNumericLiteral(node: Node | null | undefined, opts?: Opts<NumericLiteral> | null): node is NumericLiteral;
1167
+ declare function isNullLiteral(node: Node | null | undefined, opts?: Opts<NullLiteral> | null): node is NullLiteral;
1168
+ declare function isBooleanLiteral(node: Node | null | undefined, opts?: Opts<BooleanLiteral> | null): node is BooleanLiteral;
1169
+ declare function isRegExpLiteral(node: Node | null | undefined, opts?: Opts<RegExpLiteral> | null): node is RegExpLiteral;
1170
+ declare function isLogicalExpression(node: Node | null | undefined, opts?: Opts<LogicalExpression> | null): node is LogicalExpression;
1171
+ declare function isMemberExpression(node: Node | null | undefined, opts?: Opts<MemberExpression> | null): node is MemberExpression;
1172
+ declare function isNewExpression(node: Node | null | undefined, opts?: Opts<NewExpression> | null): node is NewExpression;
1173
+ declare function isProgram(node: Node | null | undefined, opts?: Opts<Program> | null): node is Program;
1174
+ declare function isObjectExpression(node: Node | null | undefined, opts?: Opts<ObjectExpression> | null): node is ObjectExpression;
1175
+ declare function isObjectMethod(node: Node | null | undefined, opts?: Opts<ObjectMethod> | null): node is ObjectMethod;
1176
+ declare function isObjectProperty(node: Node | null | undefined, opts?: Opts<ObjectProperty> | null): node is ObjectProperty;
1177
+ declare function isRestElement(node: Node | null | undefined, opts?: Opts<RestElement> | null): node is RestElement;
1178
+ declare function isReturnStatement(node: Node | null | undefined, opts?: Opts<ReturnStatement> | null): node is ReturnStatement;
1179
+ declare function isSequenceExpression(node: Node | null | undefined, opts?: Opts<SequenceExpression> | null): node is SequenceExpression;
1180
+ declare function isParenthesizedExpression(node: Node | null | undefined, opts?: Opts<ParenthesizedExpression> | null): node is ParenthesizedExpression;
1181
+ declare function isSwitchCase(node: Node | null | undefined, opts?: Opts<SwitchCase> | null): node is SwitchCase;
1182
+ declare function isSwitchStatement(node: Node | null | undefined, opts?: Opts<SwitchStatement> | null): node is SwitchStatement;
1183
+ declare function isThisExpression(node: Node | null | undefined, opts?: Opts<ThisExpression> | null): node is ThisExpression;
1184
+ declare function isThrowStatement(node: Node | null | undefined, opts?: Opts<ThrowStatement> | null): node is ThrowStatement;
1185
+ declare function isTryStatement(node: Node | null | undefined, opts?: Opts<TryStatement> | null): node is TryStatement;
1186
+ declare function isUnaryExpression(node: Node | null | undefined, opts?: Opts<UnaryExpression> | null): node is UnaryExpression;
1187
+ declare function isUpdateExpression(node: Node | null | undefined, opts?: Opts<UpdateExpression> | null): node is UpdateExpression;
1188
+ declare function isVariableDeclaration(node: Node | null | undefined, opts?: Opts<VariableDeclaration> | null): node is VariableDeclaration;
1189
+ declare function isVariableDeclarator(node: Node | null | undefined, opts?: Opts<VariableDeclarator> | null): node is VariableDeclarator;
1190
+ declare function isWhileStatement(node: Node | null | undefined, opts?: Opts<WhileStatement> | null): node is WhileStatement;
1191
+ declare function isWithStatement(node: Node | null | undefined, opts?: Opts<WithStatement> | null): node is WithStatement;
1192
+ declare function isAssignmentPattern(node: Node | null | undefined, opts?: Opts<AssignmentPattern> | null): node is AssignmentPattern;
1193
+ declare function isArrayPattern(node: Node | null | undefined, opts?: Opts<ArrayPattern> | null): node is ArrayPattern;
1194
+ declare function isArrowFunctionExpression(node: Node | null | undefined, opts?: Opts<ArrowFunctionExpression> | null): node is ArrowFunctionExpression;
1195
+ declare function isClassBody(node: Node | null | undefined, opts?: Opts<ClassBody> | null): node is ClassBody;
1196
+ declare function isClassExpression(node: Node | null | undefined, opts?: Opts<ClassExpression> | null): node is ClassExpression;
1197
+ declare function isClassDeclaration(node: Node | null | undefined, opts?: Opts<ClassDeclaration> | null): node is ClassDeclaration;
1198
+ declare function isExportAllDeclaration(node: Node | null | undefined, opts?: Opts<ExportAllDeclaration> | null): node is ExportAllDeclaration;
1199
+ declare function isExportDefaultDeclaration(node: Node | null | undefined, opts?: Opts<ExportDefaultDeclaration> | null): node is ExportDefaultDeclaration;
1200
+ declare function isExportNamedDeclaration(node: Node | null | undefined, opts?: Opts<ExportNamedDeclaration> | null): node is ExportNamedDeclaration;
1201
+ declare function isExportSpecifier(node: Node | null | undefined, opts?: Opts<ExportSpecifier> | null): node is ExportSpecifier;
1202
+ declare function isForOfStatement(node: Node | null | undefined, opts?: Opts<ForOfStatement> | null): node is ForOfStatement;
1203
+ declare function isImportDeclaration(node: Node | null | undefined, opts?: Opts<ImportDeclaration> | null): node is ImportDeclaration;
1204
+ declare function isImportDefaultSpecifier(node: Node | null | undefined, opts?: Opts<ImportDefaultSpecifier> | null): node is ImportDefaultSpecifier;
1205
+ declare function isImportNamespaceSpecifier(node: Node | null | undefined, opts?: Opts<ImportNamespaceSpecifier> | null): node is ImportNamespaceSpecifier;
1206
+ declare function isImportSpecifier(node: Node | null | undefined, opts?: Opts<ImportSpecifier> | null): node is ImportSpecifier;
1207
+ declare function isImportExpression(node: Node | null | undefined, opts?: Opts<ImportExpression> | null): node is ImportExpression;
1208
+ declare function isMetaProperty(node: Node | null | undefined, opts?: Opts<MetaProperty> | null): node is MetaProperty;
1209
+ declare function isClassMethod(node: Node | null | undefined, opts?: Opts<ClassMethod> | null): node is ClassMethod;
1210
+ declare function isObjectPattern(node: Node | null | undefined, opts?: Opts<ObjectPattern> | null): node is ObjectPattern;
1211
+ declare function isSpreadElement(node: Node | null | undefined, opts?: Opts<SpreadElement> | null): node is SpreadElement;
1212
+ declare function isSuper(node: Node | null | undefined, opts?: Opts<Super> | null): node is Super;
1213
+ declare function isTaggedTemplateExpression(node: Node | null | undefined, opts?: Opts<TaggedTemplateExpression> | null): node is TaggedTemplateExpression;
1214
+ declare function isTemplateElement(node: Node | null | undefined, opts?: Opts<TemplateElement> | null): node is TemplateElement;
1215
+ declare function isTemplateLiteral(node: Node | null | undefined, opts?: Opts<TemplateLiteral> | null): node is TemplateLiteral;
1216
+ declare function isYieldExpression(node: Node | null | undefined, opts?: Opts<YieldExpression> | null): node is YieldExpression;
1217
+ declare function isAwaitExpression(node: Node | null | undefined, opts?: Opts<AwaitExpression> | null): node is AwaitExpression;
1218
+ declare function isImport(node: Node | null | undefined, opts?: Opts<Import> | null): node is Import;
1219
+ declare function isBigIntLiteral(node: Node | null | undefined, opts?: Opts<BigIntLiteral> | null): node is BigIntLiteral;
1220
+ declare function isExportNamespaceSpecifier(node: Node | null | undefined, opts?: Opts<ExportNamespaceSpecifier> | null): node is ExportNamespaceSpecifier;
1221
+ declare function isOptionalMemberExpression(node: Node | null | undefined, opts?: Opts<OptionalMemberExpression> | null): node is OptionalMemberExpression;
1222
+ declare function isOptionalCallExpression(node: Node | null | undefined, opts?: Opts<OptionalCallExpression> | null): node is OptionalCallExpression;
1223
+ declare function isClassProperty(node: Node | null | undefined, opts?: Opts<ClassProperty> | null): node is ClassProperty;
1224
+ declare function isClassAccessorProperty(node: Node | null | undefined, opts?: Opts<ClassAccessorProperty> | null): node is ClassAccessorProperty;
1225
+ declare function isClassPrivateProperty(node: Node | null | undefined, opts?: Opts<ClassPrivateProperty> | null): node is ClassPrivateProperty;
1226
+ declare function isClassPrivateMethod(node: Node | null | undefined, opts?: Opts<ClassPrivateMethod> | null): node is ClassPrivateMethod;
1227
+ declare function isPrivateName(node: Node | null | undefined, opts?: Opts<PrivateName> | null): node is PrivateName;
1228
+ declare function isStaticBlock(node: Node | null | undefined, opts?: Opts<StaticBlock> | null): node is StaticBlock;
1229
+ declare function isAnyTypeAnnotation(node: Node | null | undefined, opts?: Opts<AnyTypeAnnotation> | null): node is AnyTypeAnnotation;
1230
+ declare function isArrayTypeAnnotation(node: Node | null | undefined, opts?: Opts<ArrayTypeAnnotation> | null): node is ArrayTypeAnnotation;
1231
+ declare function isBooleanTypeAnnotation(node: Node | null | undefined, opts?: Opts<BooleanTypeAnnotation> | null): node is BooleanTypeAnnotation;
1232
+ declare function isBooleanLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<BooleanLiteralTypeAnnotation> | null): node is BooleanLiteralTypeAnnotation;
1233
+ declare function isNullLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<NullLiteralTypeAnnotation> | null): node is NullLiteralTypeAnnotation;
1234
+ declare function isClassImplements(node: Node | null | undefined, opts?: Opts<ClassImplements> | null): node is ClassImplements;
1235
+ declare function isDeclareClass(node: Node | null | undefined, opts?: Opts<DeclareClass> | null): node is DeclareClass;
1236
+ declare function isDeclareFunction(node: Node | null | undefined, opts?: Opts<DeclareFunction> | null): node is DeclareFunction;
1237
+ declare function isDeclareInterface(node: Node | null | undefined, opts?: Opts<DeclareInterface> | null): node is DeclareInterface;
1238
+ declare function isDeclareModule(node: Node | null | undefined, opts?: Opts<DeclareModule> | null): node is DeclareModule;
1239
+ declare function isDeclareModuleExports(node: Node | null | undefined, opts?: Opts<DeclareModuleExports> | null): node is DeclareModuleExports;
1240
+ declare function isDeclareTypeAlias(node: Node | null | undefined, opts?: Opts<DeclareTypeAlias> | null): node is DeclareTypeAlias;
1241
+ declare function isDeclareOpaqueType(node: Node | null | undefined, opts?: Opts<DeclareOpaqueType> | null): node is DeclareOpaqueType;
1242
+ declare function isDeclareVariable(node: Node | null | undefined, opts?: Opts<DeclareVariable> | null): node is DeclareVariable;
1243
+ declare function isDeclareExportDeclaration(node: Node | null | undefined, opts?: Opts<DeclareExportDeclaration> | null): node is DeclareExportDeclaration;
1244
+ declare function isDeclareExportAllDeclaration(node: Node | null | undefined, opts?: Opts<DeclareExportAllDeclaration> | null): node is DeclareExportAllDeclaration;
1245
+ declare function isDeclaredPredicate(node: Node | null | undefined, opts?: Opts<DeclaredPredicate> | null): node is DeclaredPredicate;
1246
+ declare function isExistsTypeAnnotation(node: Node | null | undefined, opts?: Opts<ExistsTypeAnnotation> | null): node is ExistsTypeAnnotation;
1247
+ declare function isFunctionTypeAnnotation(node: Node | null | undefined, opts?: Opts<FunctionTypeAnnotation> | null): node is FunctionTypeAnnotation;
1248
+ declare function isFunctionTypeParam(node: Node | null | undefined, opts?: Opts<FunctionTypeParam> | null): node is FunctionTypeParam;
1249
+ declare function isGenericTypeAnnotation(node: Node | null | undefined, opts?: Opts<GenericTypeAnnotation> | null): node is GenericTypeAnnotation;
1250
+ declare function isInferredPredicate(node: Node | null | undefined, opts?: Opts<InferredPredicate> | null): node is InferredPredicate;
1251
+ declare function isInterfaceExtends(node: Node | null | undefined, opts?: Opts<InterfaceExtends> | null): node is InterfaceExtends;
1252
+ declare function isInterfaceDeclaration(node: Node | null | undefined, opts?: Opts<InterfaceDeclaration> | null): node is InterfaceDeclaration;
1253
+ declare function isInterfaceTypeAnnotation(node: Node | null | undefined, opts?: Opts<InterfaceTypeAnnotation> | null): node is InterfaceTypeAnnotation;
1254
+ declare function isIntersectionTypeAnnotation(node: Node | null | undefined, opts?: Opts<IntersectionTypeAnnotation> | null): node is IntersectionTypeAnnotation;
1255
+ declare function isMixedTypeAnnotation(node: Node | null | undefined, opts?: Opts<MixedTypeAnnotation> | null): node is MixedTypeAnnotation;
1256
+ declare function isEmptyTypeAnnotation(node: Node | null | undefined, opts?: Opts<EmptyTypeAnnotation> | null): node is EmptyTypeAnnotation;
1257
+ declare function isNullableTypeAnnotation(node: Node | null | undefined, opts?: Opts<NullableTypeAnnotation> | null): node is NullableTypeAnnotation;
1258
+ declare function isNumberLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<NumberLiteralTypeAnnotation> | null): node is NumberLiteralTypeAnnotation;
1259
+ declare function isNumberTypeAnnotation(node: Node | null | undefined, opts?: Opts<NumberTypeAnnotation> | null): node is NumberTypeAnnotation;
1260
+ declare function isObjectTypeAnnotation(node: Node | null | undefined, opts?: Opts<ObjectTypeAnnotation> | null): node is ObjectTypeAnnotation;
1261
+ declare function isObjectTypeInternalSlot(node: Node | null | undefined, opts?: Opts<ObjectTypeInternalSlot> | null): node is ObjectTypeInternalSlot;
1262
+ declare function isObjectTypeCallProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeCallProperty> | null): node is ObjectTypeCallProperty;
1263
+ declare function isObjectTypeIndexer(node: Node | null | undefined, opts?: Opts<ObjectTypeIndexer> | null): node is ObjectTypeIndexer;
1264
+ declare function isObjectTypeProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeProperty> | null): node is ObjectTypeProperty;
1265
+ declare function isObjectTypeSpreadProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeSpreadProperty> | null): node is ObjectTypeSpreadProperty;
1266
+ declare function isOpaqueType(node: Node | null | undefined, opts?: Opts<OpaqueType> | null): node is OpaqueType;
1267
+ declare function isQualifiedTypeIdentifier(node: Node | null | undefined, opts?: Opts<QualifiedTypeIdentifier> | null): node is QualifiedTypeIdentifier;
1268
+ declare function isStringLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<StringLiteralTypeAnnotation> | null): node is StringLiteralTypeAnnotation;
1269
+ declare function isStringTypeAnnotation(node: Node | null | undefined, opts?: Opts<StringTypeAnnotation> | null): node is StringTypeAnnotation;
1270
+ declare function isSymbolTypeAnnotation(node: Node | null | undefined, opts?: Opts<SymbolTypeAnnotation> | null): node is SymbolTypeAnnotation;
1271
+ declare function isThisTypeAnnotation(node: Node | null | undefined, opts?: Opts<ThisTypeAnnotation> | null): node is ThisTypeAnnotation;
1272
+ declare function isTupleTypeAnnotation(node: Node | null | undefined, opts?: Opts<TupleTypeAnnotation> | null): node is TupleTypeAnnotation;
1273
+ declare function isTypeofTypeAnnotation(node: Node | null | undefined, opts?: Opts<TypeofTypeAnnotation> | null): node is TypeofTypeAnnotation;
1274
+ declare function isTypeAlias(node: Node | null | undefined, opts?: Opts<TypeAlias> | null): node is TypeAlias;
1275
+ declare function isTypeAnnotation(node: Node | null | undefined, opts?: Opts<TypeAnnotation> | null): node is TypeAnnotation;
1276
+ declare function isTypeCastExpression(node: Node | null | undefined, opts?: Opts<TypeCastExpression> | null): node is TypeCastExpression;
1277
+ declare function isTypeParameter(node: Node | null | undefined, opts?: Opts<TypeParameter> | null): node is TypeParameter;
1278
+ declare function isTypeParameterDeclaration(node: Node | null | undefined, opts?: Opts<TypeParameterDeclaration> | null): node is TypeParameterDeclaration;
1279
+ declare function isTypeParameterInstantiation(node: Node | null | undefined, opts?: Opts<TypeParameterInstantiation> | null): node is TypeParameterInstantiation;
1280
+ declare function isUnionTypeAnnotation(node: Node | null | undefined, opts?: Opts<UnionTypeAnnotation> | null): node is UnionTypeAnnotation;
1281
+ declare function isVariance(node: Node | null | undefined, opts?: Opts<Variance> | null): node is Variance;
1282
+ declare function isVoidTypeAnnotation(node: Node | null | undefined, opts?: Opts<VoidTypeAnnotation> | null): node is VoidTypeAnnotation;
1283
+ declare function isEnumDeclaration(node: Node | null | undefined, opts?: Opts<EnumDeclaration> | null): node is EnumDeclaration;
1284
+ declare function isEnumBooleanBody(node: Node | null | undefined, opts?: Opts<EnumBooleanBody> | null): node is EnumBooleanBody;
1285
+ declare function isEnumNumberBody(node: Node | null | undefined, opts?: Opts<EnumNumberBody> | null): node is EnumNumberBody;
1286
+ declare function isEnumStringBody(node: Node | null | undefined, opts?: Opts<EnumStringBody> | null): node is EnumStringBody;
1287
+ declare function isEnumSymbolBody(node: Node | null | undefined, opts?: Opts<EnumSymbolBody> | null): node is EnumSymbolBody;
1288
+ declare function isEnumBooleanMember(node: Node | null | undefined, opts?: Opts<EnumBooleanMember> | null): node is EnumBooleanMember;
1289
+ declare function isEnumNumberMember(node: Node | null | undefined, opts?: Opts<EnumNumberMember> | null): node is EnumNumberMember;
1290
+ declare function isEnumStringMember(node: Node | null | undefined, opts?: Opts<EnumStringMember> | null): node is EnumStringMember;
1291
+ declare function isEnumDefaultedMember(node: Node | null | undefined, opts?: Opts<EnumDefaultedMember> | null): node is EnumDefaultedMember;
1292
+ declare function isIndexedAccessType(node: Node | null | undefined, opts?: Opts<IndexedAccessType> | null): node is IndexedAccessType;
1293
+ declare function isOptionalIndexedAccessType(node: Node | null | undefined, opts?: Opts<OptionalIndexedAccessType> | null): node is OptionalIndexedAccessType;
1294
+ declare function isJSXAttribute(node: Node | null | undefined, opts?: Opts<JSXAttribute> | null): node is JSXAttribute;
1295
+ declare function isJSXClosingElement(node: Node | null | undefined, opts?: Opts<JSXClosingElement> | null): node is JSXClosingElement;
1296
+ declare function isJSXElement(node: Node | null | undefined, opts?: Opts<JSXElement> | null): node is JSXElement;
1297
+ declare function isJSXEmptyExpression(node: Node | null | undefined, opts?: Opts<JSXEmptyExpression> | null): node is JSXEmptyExpression;
1298
+ declare function isJSXExpressionContainer(node: Node | null | undefined, opts?: Opts<JSXExpressionContainer> | null): node is JSXExpressionContainer;
1299
+ declare function isJSXSpreadChild(node: Node | null | undefined, opts?: Opts<JSXSpreadChild> | null): node is JSXSpreadChild;
1300
+ declare function isJSXIdentifier(node: Node | null | undefined, opts?: Opts<JSXIdentifier> | null): node is JSXIdentifier;
1301
+ declare function isJSXMemberExpression(node: Node | null | undefined, opts?: Opts<JSXMemberExpression> | null): node is JSXMemberExpression;
1302
+ declare function isJSXNamespacedName(node: Node | null | undefined, opts?: Opts<JSXNamespacedName> | null): node is JSXNamespacedName;
1303
+ declare function isJSXOpeningElement(node: Node | null | undefined, opts?: Opts<JSXOpeningElement> | null): node is JSXOpeningElement;
1304
+ declare function isJSXSpreadAttribute(node: Node | null | undefined, opts?: Opts<JSXSpreadAttribute> | null): node is JSXSpreadAttribute;
1305
+ declare function isJSXText(node: Node | null | undefined, opts?: Opts<JSXText> | null): node is JSXText;
1306
+ declare function isJSXFragment(node: Node | null | undefined, opts?: Opts<JSXFragment> | null): node is JSXFragment;
1307
+ declare function isJSXOpeningFragment(node: Node | null | undefined, opts?: Opts<JSXOpeningFragment> | null): node is JSXOpeningFragment;
1308
+ declare function isJSXClosingFragment(node: Node | null | undefined, opts?: Opts<JSXClosingFragment> | null): node is JSXClosingFragment;
1309
+ declare function isNoop(node: Node | null | undefined, opts?: Opts<Noop> | null): node is Noop;
1310
+ declare function isPlaceholder(node: Node | null | undefined, opts?: Opts<Placeholder> | null): node is Placeholder;
1311
+ declare function isV8IntrinsicIdentifier(node: Node | null | undefined, opts?: Opts<V8IntrinsicIdentifier> | null): node is V8IntrinsicIdentifier;
1312
+ declare function isArgumentPlaceholder(node: Node | null | undefined, opts?: Opts<ArgumentPlaceholder> | null): node is ArgumentPlaceholder;
1313
+ declare function isBindExpression(node: Node | null | undefined, opts?: Opts<BindExpression> | null): node is BindExpression;
1314
+ declare function isImportAttribute(node: Node | null | undefined, opts?: Opts<ImportAttribute> | null): node is ImportAttribute;
1315
+ declare function isDecorator(node: Node | null | undefined, opts?: Opts<Decorator> | null): node is Decorator;
1316
+ declare function isDoExpression(node: Node | null | undefined, opts?: Opts<DoExpression> | null): node is DoExpression;
1317
+ declare function isExportDefaultSpecifier(node: Node | null | undefined, opts?: Opts<ExportDefaultSpecifier> | null): node is ExportDefaultSpecifier;
1318
+ declare function isRecordExpression(node: Node | null | undefined, opts?: Opts<RecordExpression> | null): node is RecordExpression;
1319
+ declare function isTupleExpression(node: Node | null | undefined, opts?: Opts<TupleExpression> | null): node is TupleExpression;
1320
+ declare function isDecimalLiteral(node: Node | null | undefined, opts?: Opts<DecimalLiteral> | null): node is DecimalLiteral;
1321
+ declare function isModuleExpression(node: Node | null | undefined, opts?: Opts<ModuleExpression> | null): node is ModuleExpression;
1322
+ declare function isTopicReference(node: Node | null | undefined, opts?: Opts<TopicReference> | null): node is TopicReference;
1323
+ declare function isPipelineTopicExpression(node: Node | null | undefined, opts?: Opts<PipelineTopicExpression> | null): node is PipelineTopicExpression;
1324
+ declare function isPipelineBareFunction(node: Node | null | undefined, opts?: Opts<PipelineBareFunction> | null): node is PipelineBareFunction;
1325
+ declare function isPipelinePrimaryTopicReference(node: Node | null | undefined, opts?: Opts<PipelinePrimaryTopicReference> | null): node is PipelinePrimaryTopicReference;
1326
+ declare function isTSParameterProperty(node: Node | null | undefined, opts?: Opts<TSParameterProperty> | null): node is TSParameterProperty;
1327
+ declare function isTSDeclareFunction(node: Node | null | undefined, opts?: Opts<TSDeclareFunction> | null): node is TSDeclareFunction;
1328
+ declare function isTSDeclareMethod(node: Node | null | undefined, opts?: Opts<TSDeclareMethod> | null): node is TSDeclareMethod;
1329
+ declare function isTSQualifiedName(node: Node | null | undefined, opts?: Opts<TSQualifiedName> | null): node is TSQualifiedName;
1330
+ declare function isTSCallSignatureDeclaration(node: Node | null | undefined, opts?: Opts<TSCallSignatureDeclaration> | null): node is TSCallSignatureDeclaration;
1331
+ declare function isTSConstructSignatureDeclaration(node: Node | null | undefined, opts?: Opts<TSConstructSignatureDeclaration> | null): node is TSConstructSignatureDeclaration;
1332
+ declare function isTSPropertySignature(node: Node | null | undefined, opts?: Opts<TSPropertySignature> | null): node is TSPropertySignature;
1333
+ declare function isTSMethodSignature(node: Node | null | undefined, opts?: Opts<TSMethodSignature> | null): node is TSMethodSignature;
1334
+ declare function isTSIndexSignature(node: Node | null | undefined, opts?: Opts<TSIndexSignature> | null): node is TSIndexSignature;
1335
+ declare function isTSAnyKeyword(node: Node | null | undefined, opts?: Opts<TSAnyKeyword> | null): node is TSAnyKeyword;
1336
+ declare function isTSBooleanKeyword(node: Node | null | undefined, opts?: Opts<TSBooleanKeyword> | null): node is TSBooleanKeyword;
1337
+ declare function isTSBigIntKeyword(node: Node | null | undefined, opts?: Opts<TSBigIntKeyword> | null): node is TSBigIntKeyword;
1338
+ declare function isTSIntrinsicKeyword(node: Node | null | undefined, opts?: Opts<TSIntrinsicKeyword> | null): node is TSIntrinsicKeyword;
1339
+ declare function isTSNeverKeyword(node: Node | null | undefined, opts?: Opts<TSNeverKeyword> | null): node is TSNeverKeyword;
1340
+ declare function isTSNullKeyword(node: Node | null | undefined, opts?: Opts<TSNullKeyword> | null): node is TSNullKeyword;
1341
+ declare function isTSNumberKeyword(node: Node | null | undefined, opts?: Opts<TSNumberKeyword> | null): node is TSNumberKeyword;
1342
+ declare function isTSObjectKeyword(node: Node | null | undefined, opts?: Opts<TSObjectKeyword> | null): node is TSObjectKeyword;
1343
+ declare function isTSStringKeyword(node: Node | null | undefined, opts?: Opts<TSStringKeyword> | null): node is TSStringKeyword;
1344
+ declare function isTSSymbolKeyword(node: Node | null | undefined, opts?: Opts<TSSymbolKeyword> | null): node is TSSymbolKeyword;
1345
+ declare function isTSUndefinedKeyword(node: Node | null | undefined, opts?: Opts<TSUndefinedKeyword> | null): node is TSUndefinedKeyword;
1346
+ declare function isTSUnknownKeyword(node: Node | null | undefined, opts?: Opts<TSUnknownKeyword> | null): node is TSUnknownKeyword;
1347
+ declare function isTSVoidKeyword(node: Node | null | undefined, opts?: Opts<TSVoidKeyword> | null): node is TSVoidKeyword;
1348
+ declare function isTSThisType(node: Node | null | undefined, opts?: Opts<TSThisType> | null): node is TSThisType;
1349
+ declare function isTSFunctionType(node: Node | null | undefined, opts?: Opts<TSFunctionType> | null): node is TSFunctionType;
1350
+ declare function isTSConstructorType(node: Node | null | undefined, opts?: Opts<TSConstructorType> | null): node is TSConstructorType;
1351
+ declare function isTSTypeReference(node: Node | null | undefined, opts?: Opts<TSTypeReference> | null): node is TSTypeReference;
1352
+ declare function isTSTypePredicate(node: Node | null | undefined, opts?: Opts<TSTypePredicate> | null): node is TSTypePredicate;
1353
+ declare function isTSTypeQuery(node: Node | null | undefined, opts?: Opts<TSTypeQuery> | null): node is TSTypeQuery;
1354
+ declare function isTSTypeLiteral(node: Node | null | undefined, opts?: Opts<TSTypeLiteral> | null): node is TSTypeLiteral;
1355
+ declare function isTSArrayType(node: Node | null | undefined, opts?: Opts<TSArrayType> | null): node is TSArrayType;
1356
+ declare function isTSTupleType(node: Node | null | undefined, opts?: Opts<TSTupleType> | null): node is TSTupleType;
1357
+ declare function isTSOptionalType(node: Node | null | undefined, opts?: Opts<TSOptionalType> | null): node is TSOptionalType;
1358
+ declare function isTSRestType(node: Node | null | undefined, opts?: Opts<TSRestType> | null): node is TSRestType;
1359
+ declare function isTSNamedTupleMember(node: Node | null | undefined, opts?: Opts<TSNamedTupleMember> | null): node is TSNamedTupleMember;
1360
+ declare function isTSUnionType(node: Node | null | undefined, opts?: Opts<TSUnionType> | null): node is TSUnionType;
1361
+ declare function isTSIntersectionType(node: Node | null | undefined, opts?: Opts<TSIntersectionType> | null): node is TSIntersectionType;
1362
+ declare function isTSConditionalType(node: Node | null | undefined, opts?: Opts<TSConditionalType> | null): node is TSConditionalType;
1363
+ declare function isTSInferType(node: Node | null | undefined, opts?: Opts<TSInferType> | null): node is TSInferType;
1364
+ declare function isTSParenthesizedType(node: Node | null | undefined, opts?: Opts<TSParenthesizedType> | null): node is TSParenthesizedType;
1365
+ declare function isTSTypeOperator(node: Node | null | undefined, opts?: Opts<TSTypeOperator> | null): node is TSTypeOperator;
1366
+ declare function isTSIndexedAccessType(node: Node | null | undefined, opts?: Opts<TSIndexedAccessType> | null): node is TSIndexedAccessType;
1367
+ declare function isTSMappedType(node: Node | null | undefined, opts?: Opts<TSMappedType> | null): node is TSMappedType;
1368
+ declare function isTSLiteralType(node: Node | null | undefined, opts?: Opts<TSLiteralType> | null): node is TSLiteralType;
1369
+ declare function isTSExpressionWithTypeArguments(node: Node | null | undefined, opts?: Opts<TSExpressionWithTypeArguments> | null): node is TSExpressionWithTypeArguments;
1370
+ declare function isTSInterfaceDeclaration(node: Node | null | undefined, opts?: Opts<TSInterfaceDeclaration> | null): node is TSInterfaceDeclaration;
1371
+ declare function isTSInterfaceBody(node: Node | null | undefined, opts?: Opts<TSInterfaceBody> | null): node is TSInterfaceBody;
1372
+ declare function isTSTypeAliasDeclaration(node: Node | null | undefined, opts?: Opts<TSTypeAliasDeclaration> | null): node is TSTypeAliasDeclaration;
1373
+ declare function isTSInstantiationExpression(node: Node | null | undefined, opts?: Opts<TSInstantiationExpression> | null): node is TSInstantiationExpression;
1374
+ declare function isTSAsExpression(node: Node | null | undefined, opts?: Opts<TSAsExpression> | null): node is TSAsExpression;
1375
+ declare function isTSSatisfiesExpression(node: Node | null | undefined, opts?: Opts<TSSatisfiesExpression> | null): node is TSSatisfiesExpression;
1376
+ declare function isTSTypeAssertion(node: Node | null | undefined, opts?: Opts<TSTypeAssertion> | null): node is TSTypeAssertion;
1377
+ declare function isTSEnumDeclaration(node: Node | null | undefined, opts?: Opts<TSEnumDeclaration> | null): node is TSEnumDeclaration;
1378
+ declare function isTSEnumMember(node: Node | null | undefined, opts?: Opts<TSEnumMember> | null): node is TSEnumMember;
1379
+ declare function isTSModuleDeclaration(node: Node | null | undefined, opts?: Opts<TSModuleDeclaration> | null): node is TSModuleDeclaration;
1380
+ declare function isTSModuleBlock(node: Node | null | undefined, opts?: Opts<TSModuleBlock> | null): node is TSModuleBlock;
1381
+ declare function isTSImportType(node: Node | null | undefined, opts?: Opts<TSImportType> | null): node is TSImportType;
1382
+ declare function isTSImportEqualsDeclaration(node: Node | null | undefined, opts?: Opts<TSImportEqualsDeclaration> | null): node is TSImportEqualsDeclaration;
1383
+ declare function isTSExternalModuleReference(node: Node | null | undefined, opts?: Opts<TSExternalModuleReference> | null): node is TSExternalModuleReference;
1384
+ declare function isTSNonNullExpression(node: Node | null | undefined, opts?: Opts<TSNonNullExpression> | null): node is TSNonNullExpression;
1385
+ declare function isTSExportAssignment(node: Node | null | undefined, opts?: Opts<TSExportAssignment> | null): node is TSExportAssignment;
1386
+ declare function isTSNamespaceExportDeclaration(node: Node | null | undefined, opts?: Opts<TSNamespaceExportDeclaration> | null): node is TSNamespaceExportDeclaration;
1387
+ declare function isTSTypeAnnotation(node: Node | null | undefined, opts?: Opts<TSTypeAnnotation> | null): node is TSTypeAnnotation;
1388
+ declare function isTSTypeParameterInstantiation(node: Node | null | undefined, opts?: Opts<TSTypeParameterInstantiation> | null): node is TSTypeParameterInstantiation;
1389
+ declare function isTSTypeParameterDeclaration(node: Node | null | undefined, opts?: Opts<TSTypeParameterDeclaration> | null): node is TSTypeParameterDeclaration;
1390
+ declare function isTSTypeParameter(node: Node | null | undefined, opts?: Opts<TSTypeParameter> | null): node is TSTypeParameter;
1391
+ declare function isStandardized(node: Node | null | undefined, opts?: Opts<Standardized> | null): node is Standardized;
1392
+ declare function isExpression(node: Node | null | undefined, opts?: Opts<Expression> | null): node is Expression;
1393
+ declare function isBinary(node: Node | null | undefined, opts?: Opts<Binary> | null): node is Binary;
1394
+ declare function isScopable(node: Node | null | undefined, opts?: Opts<Scopable> | null): node is Scopable;
1395
+ declare function isBlockParent(node: Node | null | undefined, opts?: Opts<BlockParent> | null): node is BlockParent;
1396
+ declare function isBlock(node: Node | null | undefined, opts?: Opts<Block> | null): node is Block;
1397
+ declare function isStatement(node: Node | null | undefined, opts?: Opts<Statement> | null): node is Statement;
1398
+ declare function isTerminatorless(node: Node | null | undefined, opts?: Opts<Terminatorless> | null): node is Terminatorless;
1399
+ declare function isCompletionStatement(node: Node | null | undefined, opts?: Opts<CompletionStatement> | null): node is CompletionStatement;
1400
+ declare function isConditional(node: Node | null | undefined, opts?: Opts<Conditional> | null): node is Conditional;
1401
+ declare function isLoop(node: Node | null | undefined, opts?: Opts<Loop> | null): node is Loop;
1402
+ declare function isWhile(node: Node | null | undefined, opts?: Opts<While> | null): node is While;
1403
+ declare function isExpressionWrapper(node: Node | null | undefined, opts?: Opts<ExpressionWrapper> | null): node is ExpressionWrapper;
1404
+ declare function isFor(node: Node | null | undefined, opts?: Opts<For> | null): node is For;
1405
+ declare function isForXStatement(node: Node | null | undefined, opts?: Opts<ForXStatement> | null): node is ForXStatement;
1406
+ declare function isFunction(node: Node | null | undefined, opts?: Opts<Function> | null): node is Function;
1407
+ declare function isFunctionParent(node: Node | null | undefined, opts?: Opts<FunctionParent> | null): node is FunctionParent;
1408
+ declare function isPureish(node: Node | null | undefined, opts?: Opts<Pureish> | null): node is Pureish;
1409
+ declare function isDeclaration(node: Node | null | undefined, opts?: Opts<Declaration> | null): node is Declaration;
1410
+ declare function isPatternLike(node: Node | null | undefined, opts?: Opts<PatternLike> | null): node is PatternLike;
1411
+ declare function isLVal(node: Node | null | undefined, opts?: Opts<LVal> | null): node is LVal;
1412
+ declare function isTSEntityName(node: Node | null | undefined, opts?: Opts<TSEntityName> | null): node is TSEntityName;
1413
+ declare function isLiteral(node: Node | null | undefined, opts?: Opts<Literal> | null): node is Literal;
1414
+ declare function isUserWhitespacable(node: Node | null | undefined, opts?: Opts<UserWhitespacable> | null): node is UserWhitespacable;
1415
+ declare function isMethod(node: Node | null | undefined, opts?: Opts<Method> | null): node is Method;
1416
+ declare function isObjectMember(node: Node | null | undefined, opts?: Opts<ObjectMember> | null): node is ObjectMember;
1417
+ declare function isProperty(node: Node | null | undefined, opts?: Opts<Property> | null): node is Property;
1418
+ declare function isUnaryLike(node: Node | null | undefined, opts?: Opts<UnaryLike> | null): node is UnaryLike;
1419
+ declare function isPattern(node: Node | null | undefined, opts?: Opts<Pattern> | null): node is Pattern;
1420
+ declare function isClass(node: Node | null | undefined, opts?: Opts<Class> | null): node is Class;
1421
+ declare function isImportOrExportDeclaration(node: Node | null | undefined, opts?: Opts<ImportOrExportDeclaration> | null): node is ImportOrExportDeclaration;
1422
+ declare function isExportDeclaration(node: Node | null | undefined, opts?: Opts<ExportDeclaration> | null): node is ExportDeclaration;
1423
+ declare function isModuleSpecifier(node: Node | null | undefined, opts?: Opts<ModuleSpecifier> | null): node is ModuleSpecifier;
1424
+ declare function isAccessor(node: Node | null | undefined, opts?: Opts<Accessor> | null): node is Accessor;
1425
+ declare function isPrivate(node: Node | null | undefined, opts?: Opts<Private> | null): node is Private;
1426
+ declare function isFlow(node: Node | null | undefined, opts?: Opts<Flow> | null): node is Flow;
1427
+ declare function isFlowType(node: Node | null | undefined, opts?: Opts<FlowType> | null): node is FlowType;
1428
+ declare function isFlowBaseAnnotation(node: Node | null | undefined, opts?: Opts<FlowBaseAnnotation> | null): node is FlowBaseAnnotation;
1429
+ declare function isFlowDeclaration(node: Node | null | undefined, opts?: Opts<FlowDeclaration> | null): node is FlowDeclaration;
1430
+ declare function isFlowPredicate(node: Node | null | undefined, opts?: Opts<FlowPredicate> | null): node is FlowPredicate;
1431
+ declare function isEnumBody(node: Node | null | undefined, opts?: Opts<EnumBody> | null): node is EnumBody;
1432
+ declare function isEnumMember(node: Node | null | undefined, opts?: Opts<EnumMember> | null): node is EnumMember;
1433
+ declare function isJSX(node: Node | null | undefined, opts?: Opts<JSX> | null): node is JSX;
1434
+ declare function isMiscellaneous(node: Node | null | undefined, opts?: Opts<Miscellaneous> | null): node is Miscellaneous;
1435
+ declare function isTypeScript(node: Node | null | undefined, opts?: Opts<TypeScript> | null): node is TypeScript;
1436
+ declare function isTSTypeElement(node: Node | null | undefined, opts?: Opts<TSTypeElement> | null): node is TSTypeElement;
1437
+ declare function isTSType(node: Node | null | undefined, opts?: Opts<TSType> | null): node is TSType;
1438
+ declare function isTSBaseType(node: Node | null | undefined, opts?: Opts<TSBaseType> | null): node is TSBaseType;
1439
+ /**
1440
+ * @deprecated Use `isNumericLiteral`
1441
+ */
1442
+ declare function isNumberLiteral(node: Node | null | undefined, opts?: Opts<NumberLiteral> | null): boolean;
1443
+ /**
1444
+ * @deprecated Use `isRegExpLiteral`
1445
+ */
1446
+ declare function isRegexLiteral(node: Node | null | undefined, opts?: Opts<RegexLiteral> | null): boolean;
1447
+ /**
1448
+ * @deprecated Use `isRestElement`
1449
+ */
1450
+ declare function isRestProperty(node: Node | null | undefined, opts?: Opts<RestProperty> | null): boolean;
1451
+ /**
1452
+ * @deprecated Use `isSpreadElement`
1453
+ */
1454
+ declare function isSpreadProperty(node: Node | null | undefined, opts?: Opts<SpreadProperty> | null): boolean;
1455
+ /**
1456
+ * @deprecated Use `isImportOrExportDeclaration`
1457
+ */
1458
+ declare function isModuleDeclaration(node: Node | null | undefined, opts?: Opts<ModuleDeclaration> | null): node is ImportOrExportDeclaration;
1459
+
1460
+ interface BaseComment {
1461
+ value: string;
1462
+ start?: number;
1463
+ end?: number;
1464
+ loc?: SourceLocation;
1465
+ ignore?: boolean;
1466
+ type: "CommentBlock" | "CommentLine";
1467
+ }
1468
+ interface Position {
1469
+ line: number;
1470
+ column: number;
1471
+ index: number;
1472
+ }
1473
+ interface CommentBlock extends BaseComment {
1474
+ type: "CommentBlock";
1475
+ }
1476
+ interface CommentLine extends BaseComment {
1477
+ type: "CommentLine";
1478
+ }
1479
+ type Comment = CommentBlock | CommentLine;
1480
+ interface SourceLocation {
1481
+ start: Position;
1482
+ end: Position;
1483
+ filename: string;
1484
+ identifierName: string | undefined | null;
1485
+ }
1486
+ interface BaseNode {
1487
+ type: Node["type"];
1488
+ leadingComments?: Comment[] | null;
1489
+ innerComments?: Comment[] | null;
1490
+ trailingComments?: Comment[] | null;
1491
+ start?: number | null;
1492
+ end?: number | null;
1493
+ loc?: SourceLocation | null;
1494
+ range?: [number, number];
1495
+ extra?: Record<string, unknown>;
1496
+ }
1497
+ type CommentTypeShorthand = "leading" | "inner" | "trailing";
1498
+ type Node = AnyTypeAnnotation | ArgumentPlaceholder | ArrayExpression | ArrayPattern | ArrayTypeAnnotation | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BigIntLiteral | BinaryExpression | BindExpression | BlockStatement | BooleanLiteral | BooleanLiteralTypeAnnotation | BooleanTypeAnnotation | BreakStatement | CallExpression | CatchClause | ClassAccessorProperty | ClassBody | ClassDeclaration | ClassExpression | ClassImplements | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | ContinueStatement | DebuggerStatement | DecimalLiteral | DeclareClass | DeclareExportAllDeclaration | DeclareExportDeclaration | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareOpaqueType | DeclareTypeAlias | DeclareVariable | DeclaredPredicate | Decorator | Directive | DirectiveLiteral | DoExpression | DoWhileStatement | EmptyStatement | EmptyTypeAnnotation | EnumBooleanBody | EnumBooleanMember | EnumDeclaration | EnumDefaultedMember | EnumNumberBody | EnumNumberMember | EnumStringBody | EnumStringMember | EnumSymbolBody | ExistsTypeAnnotation | ExportAllDeclaration | ExportDefaultDeclaration | ExportDefaultSpecifier | ExportNamedDeclaration | ExportNamespaceSpecifier | ExportSpecifier | ExpressionStatement | File | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | FunctionExpression | FunctionTypeAnnotation | FunctionTypeParam | GenericTypeAnnotation | Identifier | IfStatement | Import | ImportAttribute | ImportDeclaration | ImportDefaultSpecifier | ImportExpression | ImportNamespaceSpecifier | ImportSpecifier | IndexedAccessType | InferredPredicate | InterfaceDeclaration | InterfaceExtends | InterfaceTypeAnnotation | InterpreterDirective | IntersectionTypeAnnotation | JSXAttribute | JSXClosingElement | JSXClosingFragment | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXFragment | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXOpeningFragment | JSXSpreadAttribute | JSXSpreadChild | JSXText | LabeledStatement | LogicalExpression | MemberExpression | MetaProperty | MixedTypeAnnotation | ModuleExpression | NewExpression | Noop | NullLiteral | NullLiteralTypeAnnotation | NullableTypeAnnotation | NumberLiteral | NumberLiteralTypeAnnotation | NumberTypeAnnotation | NumericLiteral | ObjectExpression | ObjectMethod | ObjectPattern | ObjectProperty | ObjectTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalCallExpression | OptionalIndexedAccessType | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelinePrimaryTopicReference | PipelineTopicExpression | Placeholder | PrivateName | Program | QualifiedTypeIdentifier | RecordExpression | RegExpLiteral | RegexLiteral | RestElement | RestProperty | ReturnStatement | SequenceExpression | SpreadElement | SpreadProperty | StaticBlock | StringLiteral | StringLiteralTypeAnnotation | StringTypeAnnotation | Super | SwitchCase | SwitchStatement | SymbolTypeAnnotation | TSAnyKeyword | TSArrayType | TSAsExpression | TSBigIntKeyword | TSBooleanKeyword | TSCallSignatureDeclaration | TSConditionalType | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSExpressionWithTypeArguments | TSExternalModuleReference | TSFunctionType | TSImportEqualsDeclaration | TSImportType | TSIndexSignature | TSIndexedAccessType | TSInferType | TSInstantiationExpression | TSInterfaceBody | TSInterfaceDeclaration | TSIntersectionType | TSIntrinsicKeyword | TSLiteralType | TSMappedType | TSMethodSignature | TSModuleBlock | TSModuleDeclaration | TSNamedTupleMember | TSNamespaceExportDeclaration | TSNeverKeyword | TSNonNullExpression | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSOptionalType | TSParameterProperty | TSParenthesizedType | TSPropertySignature | TSQualifiedName | TSRestType | TSSatisfiesExpression | TSStringKeyword | TSSymbolKeyword | TSThisType | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeLiteral | TSTypeOperator | TSTypeParameter | TSTypeParameterDeclaration | TSTypeParameterInstantiation | TSTypePredicate | TSTypeQuery | TSTypeReference | TSUndefinedKeyword | TSUnionType | TSUnknownKeyword | TSVoidKeyword | TaggedTemplateExpression | TemplateElement | TemplateLiteral | ThisExpression | ThisTypeAnnotation | ThrowStatement | TopicReference | TryStatement | TupleExpression | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeCastExpression | TypeParameter | TypeParameterDeclaration | TypeParameterInstantiation | TypeofTypeAnnotation | UnaryExpression | UnionTypeAnnotation | UpdateExpression | V8IntrinsicIdentifier | VariableDeclaration | VariableDeclarator | Variance | VoidTypeAnnotation | WhileStatement | WithStatement | YieldExpression;
1499
+ interface ArrayExpression extends BaseNode {
1500
+ type: "ArrayExpression";
1501
+ elements: Array<null | Expression | SpreadElement>;
1502
+ }
1503
+ interface AssignmentExpression extends BaseNode {
1504
+ type: "AssignmentExpression";
1505
+ operator: string;
1506
+ left: LVal | OptionalMemberExpression;
1507
+ right: Expression;
1508
+ }
1509
+ interface BinaryExpression extends BaseNode {
1510
+ type: "BinaryExpression";
1511
+ operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>";
1512
+ left: Expression | PrivateName;
1513
+ right: Expression;
1514
+ }
1515
+ interface InterpreterDirective extends BaseNode {
1516
+ type: "InterpreterDirective";
1517
+ value: string;
1518
+ }
1519
+ interface Directive extends BaseNode {
1520
+ type: "Directive";
1521
+ value: DirectiveLiteral;
1522
+ }
1523
+ interface DirectiveLiteral extends BaseNode {
1524
+ type: "DirectiveLiteral";
1525
+ value: string;
1526
+ }
1527
+ interface BlockStatement extends BaseNode {
1528
+ type: "BlockStatement";
1529
+ body: Array<Statement>;
1530
+ directives: Array<Directive>;
1531
+ }
1532
+ interface BreakStatement extends BaseNode {
1533
+ type: "BreakStatement";
1534
+ label?: Identifier | null;
1535
+ }
1536
+ interface CallExpression extends BaseNode {
1537
+ type: "CallExpression";
1538
+ callee: Expression | Super | V8IntrinsicIdentifier;
1539
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
1540
+ optional?: true | false | null;
1541
+ typeArguments?: TypeParameterInstantiation | null;
1542
+ typeParameters?: TSTypeParameterInstantiation | null;
1543
+ }
1544
+ interface CatchClause extends BaseNode {
1545
+ type: "CatchClause";
1546
+ param?: Identifier | ArrayPattern | ObjectPattern | null;
1547
+ body: BlockStatement;
1548
+ }
1549
+ interface ConditionalExpression extends BaseNode {
1550
+ type: "ConditionalExpression";
1551
+ test: Expression;
1552
+ consequent: Expression;
1553
+ alternate: Expression;
1554
+ }
1555
+ interface ContinueStatement extends BaseNode {
1556
+ type: "ContinueStatement";
1557
+ label?: Identifier | null;
1558
+ }
1559
+ interface DebuggerStatement extends BaseNode {
1560
+ type: "DebuggerStatement";
1561
+ }
1562
+ interface DoWhileStatement extends BaseNode {
1563
+ type: "DoWhileStatement";
1564
+ test: Expression;
1565
+ body: Statement;
1566
+ }
1567
+ interface EmptyStatement extends BaseNode {
1568
+ type: "EmptyStatement";
1569
+ }
1570
+ interface ExpressionStatement extends BaseNode {
1571
+ type: "ExpressionStatement";
1572
+ expression: Expression;
1573
+ }
1574
+ interface File extends BaseNode {
1575
+ type: "File";
1576
+ program: Program;
1577
+ comments?: Array<CommentBlock | CommentLine> | null;
1578
+ tokens?: Array<any> | null;
1579
+ }
1580
+ interface ForInStatement extends BaseNode {
1581
+ type: "ForInStatement";
1582
+ left: VariableDeclaration | LVal;
1583
+ right: Expression;
1584
+ body: Statement;
1585
+ }
1586
+ interface ForStatement extends BaseNode {
1587
+ type: "ForStatement";
1588
+ init?: VariableDeclaration | Expression | null;
1589
+ test?: Expression | null;
1590
+ update?: Expression | null;
1591
+ body: Statement;
1592
+ }
1593
+ interface FunctionDeclaration extends BaseNode {
1594
+ type: "FunctionDeclaration";
1595
+ id?: Identifier | null;
1596
+ params: Array<Identifier | Pattern | RestElement>;
1597
+ body: BlockStatement;
1598
+ generator: boolean;
1599
+ async: boolean;
1600
+ declare?: boolean | null;
1601
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1602
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1603
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1604
+ }
1605
+ interface FunctionExpression extends BaseNode {
1606
+ type: "FunctionExpression";
1607
+ id?: Identifier | null;
1608
+ params: Array<Identifier | Pattern | RestElement>;
1609
+ body: BlockStatement;
1610
+ generator: boolean;
1611
+ async: boolean;
1612
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1613
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1614
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1615
+ }
1616
+ interface Identifier extends BaseNode {
1617
+ type: "Identifier";
1618
+ name: string;
1619
+ decorators?: Array<Decorator> | null;
1620
+ optional?: boolean | null;
1621
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1622
+ }
1623
+ interface IfStatement extends BaseNode {
1624
+ type: "IfStatement";
1625
+ test: Expression;
1626
+ consequent: Statement;
1627
+ alternate?: Statement | null;
1628
+ }
1629
+ interface LabeledStatement extends BaseNode {
1630
+ type: "LabeledStatement";
1631
+ label: Identifier;
1632
+ body: Statement;
1633
+ }
1634
+ interface StringLiteral extends BaseNode {
1635
+ type: "StringLiteral";
1636
+ value: string;
1637
+ }
1638
+ interface NumericLiteral extends BaseNode {
1639
+ type: "NumericLiteral";
1640
+ value: number;
1641
+ }
1642
+ /**
1643
+ * @deprecated Use `NumericLiteral`
1644
+ */
1645
+ interface NumberLiteral extends BaseNode {
1646
+ type: "NumberLiteral";
1647
+ value: number;
1648
+ }
1649
+ interface NullLiteral extends BaseNode {
1650
+ type: "NullLiteral";
1651
+ }
1652
+ interface BooleanLiteral extends BaseNode {
1653
+ type: "BooleanLiteral";
1654
+ value: boolean;
1655
+ }
1656
+ interface RegExpLiteral extends BaseNode {
1657
+ type: "RegExpLiteral";
1658
+ pattern: string;
1659
+ flags: string;
1660
+ }
1661
+ /**
1662
+ * @deprecated Use `RegExpLiteral`
1663
+ */
1664
+ interface RegexLiteral extends BaseNode {
1665
+ type: "RegexLiteral";
1666
+ pattern: string;
1667
+ flags: string;
1668
+ }
1669
+ interface LogicalExpression extends BaseNode {
1670
+ type: "LogicalExpression";
1671
+ operator: "||" | "&&" | "??";
1672
+ left: Expression;
1673
+ right: Expression;
1674
+ }
1675
+ interface MemberExpression extends BaseNode {
1676
+ type: "MemberExpression";
1677
+ object: Expression | Super;
1678
+ property: Expression | Identifier | PrivateName;
1679
+ computed: boolean;
1680
+ optional?: true | false | null;
1681
+ }
1682
+ interface NewExpression extends BaseNode {
1683
+ type: "NewExpression";
1684
+ callee: Expression | Super | V8IntrinsicIdentifier;
1685
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
1686
+ optional?: true | false | null;
1687
+ typeArguments?: TypeParameterInstantiation | null;
1688
+ typeParameters?: TSTypeParameterInstantiation | null;
1689
+ }
1690
+ interface Program extends BaseNode {
1691
+ type: "Program";
1692
+ body: Array<Statement>;
1693
+ directives: Array<Directive>;
1694
+ sourceType: "script" | "module";
1695
+ interpreter?: InterpreterDirective | null;
1696
+ }
1697
+ interface ObjectExpression extends BaseNode {
1698
+ type: "ObjectExpression";
1699
+ properties: Array<ObjectMethod | ObjectProperty | SpreadElement>;
1700
+ }
1701
+ interface ObjectMethod extends BaseNode {
1702
+ type: "ObjectMethod";
1703
+ kind: "method" | "get" | "set";
1704
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral;
1705
+ params: Array<Identifier | Pattern | RestElement>;
1706
+ body: BlockStatement;
1707
+ computed: boolean;
1708
+ generator: boolean;
1709
+ async: boolean;
1710
+ decorators?: Array<Decorator> | null;
1711
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1712
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1713
+ }
1714
+ interface ObjectProperty extends BaseNode {
1715
+ type: "ObjectProperty";
1716
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName;
1717
+ value: Expression | PatternLike;
1718
+ computed: boolean;
1719
+ shorthand: boolean;
1720
+ decorators?: Array<Decorator> | null;
1721
+ }
1722
+ interface RestElement extends BaseNode {
1723
+ type: "RestElement";
1724
+ argument: LVal;
1725
+ decorators?: Array<Decorator> | null;
1726
+ optional?: boolean | null;
1727
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1728
+ }
1729
+ /**
1730
+ * @deprecated Use `RestElement`
1731
+ */
1732
+ interface RestProperty extends BaseNode {
1733
+ type: "RestProperty";
1734
+ argument: LVal;
1735
+ decorators?: Array<Decorator> | null;
1736
+ optional?: boolean | null;
1737
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1738
+ }
1739
+ interface ReturnStatement extends BaseNode {
1740
+ type: "ReturnStatement";
1741
+ argument?: Expression | null;
1742
+ }
1743
+ interface SequenceExpression extends BaseNode {
1744
+ type: "SequenceExpression";
1745
+ expressions: Array<Expression>;
1746
+ }
1747
+ interface ParenthesizedExpression extends BaseNode {
1748
+ type: "ParenthesizedExpression";
1749
+ expression: Expression;
1750
+ }
1751
+ interface SwitchCase extends BaseNode {
1752
+ type: "SwitchCase";
1753
+ test?: Expression | null;
1754
+ consequent: Array<Statement>;
1755
+ }
1756
+ interface SwitchStatement extends BaseNode {
1757
+ type: "SwitchStatement";
1758
+ discriminant: Expression;
1759
+ cases: Array<SwitchCase>;
1760
+ }
1761
+ interface ThisExpression extends BaseNode {
1762
+ type: "ThisExpression";
1763
+ }
1764
+ interface ThrowStatement extends BaseNode {
1765
+ type: "ThrowStatement";
1766
+ argument: Expression;
1767
+ }
1768
+ interface TryStatement extends BaseNode {
1769
+ type: "TryStatement";
1770
+ block: BlockStatement;
1771
+ handler?: CatchClause | null;
1772
+ finalizer?: BlockStatement | null;
1773
+ }
1774
+ interface UnaryExpression extends BaseNode {
1775
+ type: "UnaryExpression";
1776
+ operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof";
1777
+ argument: Expression;
1778
+ prefix: boolean;
1779
+ }
1780
+ interface UpdateExpression extends BaseNode {
1781
+ type: "UpdateExpression";
1782
+ operator: "++" | "--";
1783
+ argument: Expression;
1784
+ prefix: boolean;
1785
+ }
1786
+ interface VariableDeclaration extends BaseNode {
1787
+ type: "VariableDeclaration";
1788
+ kind: "var" | "let" | "const" | "using" | "await using";
1789
+ declarations: Array<VariableDeclarator>;
1790
+ declare?: boolean | null;
1791
+ }
1792
+ interface VariableDeclarator extends BaseNode {
1793
+ type: "VariableDeclarator";
1794
+ id: LVal;
1795
+ init?: Expression | null;
1796
+ definite?: boolean | null;
1797
+ }
1798
+ interface WhileStatement extends BaseNode {
1799
+ type: "WhileStatement";
1800
+ test: Expression;
1801
+ body: Statement;
1802
+ }
1803
+ interface WithStatement extends BaseNode {
1804
+ type: "WithStatement";
1805
+ object: Expression;
1806
+ body: Statement;
1807
+ }
1808
+ interface AssignmentPattern extends BaseNode {
1809
+ type: "AssignmentPattern";
1810
+ left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
1811
+ right: Expression;
1812
+ decorators?: Array<Decorator> | null;
1813
+ optional?: boolean | null;
1814
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1815
+ }
1816
+ interface ArrayPattern extends BaseNode {
1817
+ type: "ArrayPattern";
1818
+ elements: Array<null | PatternLike | LVal>;
1819
+ decorators?: Array<Decorator> | null;
1820
+ optional?: boolean | null;
1821
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1822
+ }
1823
+ interface ArrowFunctionExpression extends BaseNode {
1824
+ type: "ArrowFunctionExpression";
1825
+ params: Array<Identifier | Pattern | RestElement>;
1826
+ body: BlockStatement | Expression;
1827
+ async: boolean;
1828
+ expression: boolean;
1829
+ generator?: boolean;
1830
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1831
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1832
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1833
+ }
1834
+ interface ClassBody extends BaseNode {
1835
+ type: "ClassBody";
1836
+ body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>;
1837
+ }
1838
+ interface ClassExpression extends BaseNode {
1839
+ type: "ClassExpression";
1840
+ id?: Identifier | null;
1841
+ superClass?: Expression | null;
1842
+ body: ClassBody;
1843
+ decorators?: Array<Decorator> | null;
1844
+ implements?: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
1845
+ mixins?: InterfaceExtends | null;
1846
+ superTypeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1847
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1848
+ }
1849
+ interface ClassDeclaration extends BaseNode {
1850
+ type: "ClassDeclaration";
1851
+ id?: Identifier | null;
1852
+ superClass?: Expression | null;
1853
+ body: ClassBody;
1854
+ decorators?: Array<Decorator> | null;
1855
+ abstract?: boolean | null;
1856
+ declare?: boolean | null;
1857
+ implements?: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
1858
+ mixins?: InterfaceExtends | null;
1859
+ superTypeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1860
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1861
+ }
1862
+ interface ExportAllDeclaration extends BaseNode {
1863
+ type: "ExportAllDeclaration";
1864
+ source: StringLiteral;
1865
+ assertions?: Array<ImportAttribute> | null;
1866
+ attributes?: Array<ImportAttribute> | null;
1867
+ exportKind?: "type" | "value" | null;
1868
+ }
1869
+ interface ExportDefaultDeclaration extends BaseNode {
1870
+ type: "ExportDefaultDeclaration";
1871
+ declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression;
1872
+ exportKind?: "value" | null;
1873
+ }
1874
+ interface ExportNamedDeclaration extends BaseNode {
1875
+ type: "ExportNamedDeclaration";
1876
+ declaration?: Declaration | null;
1877
+ specifiers: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>;
1878
+ source?: StringLiteral | null;
1879
+ assertions?: Array<ImportAttribute> | null;
1880
+ attributes?: Array<ImportAttribute> | null;
1881
+ exportKind?: "type" | "value" | null;
1882
+ }
1883
+ interface ExportSpecifier extends BaseNode {
1884
+ type: "ExportSpecifier";
1885
+ local: Identifier;
1886
+ exported: Identifier | StringLiteral;
1887
+ exportKind?: "type" | "value" | null;
1888
+ }
1889
+ interface ForOfStatement extends BaseNode {
1890
+ type: "ForOfStatement";
1891
+ left: VariableDeclaration | LVal;
1892
+ right: Expression;
1893
+ body: Statement;
1894
+ await: boolean;
1895
+ }
1896
+ interface ImportDeclaration extends BaseNode {
1897
+ type: "ImportDeclaration";
1898
+ specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>;
1899
+ source: StringLiteral;
1900
+ assertions?: Array<ImportAttribute> | null;
1901
+ attributes?: Array<ImportAttribute> | null;
1902
+ importKind?: "type" | "typeof" | "value" | null;
1903
+ module?: boolean | null;
1904
+ phase?: "source" | "defer" | null;
1905
+ }
1906
+ interface ImportDefaultSpecifier extends BaseNode {
1907
+ type: "ImportDefaultSpecifier";
1908
+ local: Identifier;
1909
+ }
1910
+ interface ImportNamespaceSpecifier extends BaseNode {
1911
+ type: "ImportNamespaceSpecifier";
1912
+ local: Identifier;
1913
+ }
1914
+ interface ImportSpecifier extends BaseNode {
1915
+ type: "ImportSpecifier";
1916
+ local: Identifier;
1917
+ imported: Identifier | StringLiteral;
1918
+ importKind?: "type" | "typeof" | "value" | null;
1919
+ }
1920
+ interface ImportExpression extends BaseNode {
1921
+ type: "ImportExpression";
1922
+ source: Expression;
1923
+ options?: Expression | null;
1924
+ phase?: "source" | "defer" | null;
1925
+ }
1926
+ interface MetaProperty extends BaseNode {
1927
+ type: "MetaProperty";
1928
+ meta: Identifier;
1929
+ property: Identifier;
1930
+ }
1931
+ interface ClassMethod extends BaseNode {
1932
+ type: "ClassMethod";
1933
+ kind: "get" | "set" | "method" | "constructor";
1934
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
1935
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
1936
+ body: BlockStatement;
1937
+ computed: boolean;
1938
+ static: boolean;
1939
+ generator: boolean;
1940
+ async: boolean;
1941
+ abstract?: boolean | null;
1942
+ access?: "public" | "private" | "protected" | null;
1943
+ accessibility?: "public" | "private" | "protected" | null;
1944
+ decorators?: Array<Decorator> | null;
1945
+ optional?: boolean | null;
1946
+ override?: boolean;
1947
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1948
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1949
+ }
1950
+ interface ObjectPattern extends BaseNode {
1951
+ type: "ObjectPattern";
1952
+ properties: Array<RestElement | ObjectProperty>;
1953
+ decorators?: Array<Decorator> | null;
1954
+ optional?: boolean | null;
1955
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1956
+ }
1957
+ interface SpreadElement extends BaseNode {
1958
+ type: "SpreadElement";
1959
+ argument: Expression;
1960
+ }
1961
+ /**
1962
+ * @deprecated Use `SpreadElement`
1963
+ */
1964
+ interface SpreadProperty extends BaseNode {
1965
+ type: "SpreadProperty";
1966
+ argument: Expression;
1967
+ }
1968
+ interface Super extends BaseNode {
1969
+ type: "Super";
1970
+ }
1971
+ interface TaggedTemplateExpression extends BaseNode {
1972
+ type: "TaggedTemplateExpression";
1973
+ tag: Expression;
1974
+ quasi: TemplateLiteral;
1975
+ typeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1976
+ }
1977
+ interface TemplateElement extends BaseNode {
1978
+ type: "TemplateElement";
1979
+ value: {
1980
+ raw: string;
1981
+ cooked?: string;
1982
+ };
1983
+ tail: boolean;
1984
+ }
1985
+ interface TemplateLiteral extends BaseNode {
1986
+ type: "TemplateLiteral";
1987
+ quasis: Array<TemplateElement>;
1988
+ expressions: Array<Expression | TSType>;
1989
+ }
1990
+ interface YieldExpression extends BaseNode {
1991
+ type: "YieldExpression";
1992
+ argument?: Expression | null;
1993
+ delegate: boolean;
1994
+ }
1995
+ interface AwaitExpression extends BaseNode {
1996
+ type: "AwaitExpression";
1997
+ argument: Expression;
1998
+ }
1999
+ interface Import extends BaseNode {
2000
+ type: "Import";
2001
+ }
2002
+ interface BigIntLiteral extends BaseNode {
2003
+ type: "BigIntLiteral";
2004
+ value: string;
2005
+ }
2006
+ interface ExportNamespaceSpecifier extends BaseNode {
2007
+ type: "ExportNamespaceSpecifier";
2008
+ exported: Identifier;
2009
+ }
2010
+ interface OptionalMemberExpression extends BaseNode {
2011
+ type: "OptionalMemberExpression";
2012
+ object: Expression;
2013
+ property: Expression | Identifier;
2014
+ computed: boolean;
2015
+ optional: boolean;
2016
+ }
2017
+ interface OptionalCallExpression extends BaseNode {
2018
+ type: "OptionalCallExpression";
2019
+ callee: Expression;
2020
+ arguments: Array<Expression | SpreadElement | ArgumentPlaceholder>;
2021
+ optional: boolean;
2022
+ typeArguments?: TypeParameterInstantiation | null;
2023
+ typeParameters?: TSTypeParameterInstantiation | null;
2024
+ }
2025
+ interface ClassProperty extends BaseNode {
2026
+ type: "ClassProperty";
2027
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
2028
+ value?: Expression | null;
2029
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2030
+ decorators?: Array<Decorator> | null;
2031
+ computed: boolean;
2032
+ static: boolean;
2033
+ abstract?: boolean | null;
2034
+ accessibility?: "public" | "private" | "protected" | null;
2035
+ declare?: boolean | null;
2036
+ definite?: boolean | null;
2037
+ optional?: boolean | null;
2038
+ override?: boolean;
2039
+ readonly?: boolean | null;
2040
+ variance?: Variance | null;
2041
+ }
2042
+ interface ClassAccessorProperty extends BaseNode {
2043
+ type: "ClassAccessorProperty";
2044
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression | PrivateName;
2045
+ value?: Expression | null;
2046
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2047
+ decorators?: Array<Decorator> | null;
2048
+ computed: boolean;
2049
+ static: boolean;
2050
+ abstract?: boolean | null;
2051
+ accessibility?: "public" | "private" | "protected" | null;
2052
+ declare?: boolean | null;
2053
+ definite?: boolean | null;
2054
+ optional?: boolean | null;
2055
+ override?: boolean;
2056
+ readonly?: boolean | null;
2057
+ variance?: Variance | null;
2058
+ }
2059
+ interface ClassPrivateProperty extends BaseNode {
2060
+ type: "ClassPrivateProperty";
2061
+ key: PrivateName;
2062
+ value?: Expression | null;
2063
+ decorators?: Array<Decorator> | null;
2064
+ static: boolean;
2065
+ definite?: boolean | null;
2066
+ readonly?: boolean | null;
2067
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2068
+ variance?: Variance | null;
2069
+ }
2070
+ interface ClassPrivateMethod extends BaseNode {
2071
+ type: "ClassPrivateMethod";
2072
+ kind: "get" | "set" | "method";
2073
+ key: PrivateName;
2074
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
2075
+ body: BlockStatement;
2076
+ static: boolean;
2077
+ abstract?: boolean | null;
2078
+ access?: "public" | "private" | "protected" | null;
2079
+ accessibility?: "public" | "private" | "protected" | null;
2080
+ async?: boolean;
2081
+ computed?: boolean;
2082
+ decorators?: Array<Decorator> | null;
2083
+ generator?: boolean;
2084
+ optional?: boolean | null;
2085
+ override?: boolean;
2086
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2087
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
2088
+ }
2089
+ interface PrivateName extends BaseNode {
2090
+ type: "PrivateName";
2091
+ id: Identifier;
2092
+ }
2093
+ interface StaticBlock extends BaseNode {
2094
+ type: "StaticBlock";
2095
+ body: Array<Statement>;
2096
+ }
2097
+ interface AnyTypeAnnotation extends BaseNode {
2098
+ type: "AnyTypeAnnotation";
2099
+ }
2100
+ interface ArrayTypeAnnotation extends BaseNode {
2101
+ type: "ArrayTypeAnnotation";
2102
+ elementType: FlowType;
2103
+ }
2104
+ interface BooleanTypeAnnotation extends BaseNode {
2105
+ type: "BooleanTypeAnnotation";
2106
+ }
2107
+ interface BooleanLiteralTypeAnnotation extends BaseNode {
2108
+ type: "BooleanLiteralTypeAnnotation";
2109
+ value: boolean;
2110
+ }
2111
+ interface NullLiteralTypeAnnotation extends BaseNode {
2112
+ type: "NullLiteralTypeAnnotation";
2113
+ }
2114
+ interface ClassImplements extends BaseNode {
2115
+ type: "ClassImplements";
2116
+ id: Identifier;
2117
+ typeParameters?: TypeParameterInstantiation | null;
2118
+ }
2119
+ interface DeclareClass extends BaseNode {
2120
+ type: "DeclareClass";
2121
+ id: Identifier;
2122
+ typeParameters?: TypeParameterDeclaration | null;
2123
+ extends?: Array<InterfaceExtends> | null;
2124
+ body: ObjectTypeAnnotation;
2125
+ implements?: Array<ClassImplements> | null;
2126
+ mixins?: Array<InterfaceExtends> | null;
2127
+ }
2128
+ interface DeclareFunction extends BaseNode {
2129
+ type: "DeclareFunction";
2130
+ id: Identifier;
2131
+ predicate?: DeclaredPredicate | null;
2132
+ }
2133
+ interface DeclareInterface extends BaseNode {
2134
+ type: "DeclareInterface";
2135
+ id: Identifier;
2136
+ typeParameters?: TypeParameterDeclaration | null;
2137
+ extends?: Array<InterfaceExtends> | null;
2138
+ body: ObjectTypeAnnotation;
2139
+ }
2140
+ interface DeclareModule extends BaseNode {
2141
+ type: "DeclareModule";
2142
+ id: Identifier | StringLiteral;
2143
+ body: BlockStatement;
2144
+ kind?: "CommonJS" | "ES" | null;
2145
+ }
2146
+ interface DeclareModuleExports extends BaseNode {
2147
+ type: "DeclareModuleExports";
2148
+ typeAnnotation: TypeAnnotation;
2149
+ }
2150
+ interface DeclareTypeAlias extends BaseNode {
2151
+ type: "DeclareTypeAlias";
2152
+ id: Identifier;
2153
+ typeParameters?: TypeParameterDeclaration | null;
2154
+ right: FlowType;
2155
+ }
2156
+ interface DeclareOpaqueType extends BaseNode {
2157
+ type: "DeclareOpaqueType";
2158
+ id: Identifier;
2159
+ typeParameters?: TypeParameterDeclaration | null;
2160
+ supertype?: FlowType | null;
2161
+ impltype?: FlowType | null;
2162
+ }
2163
+ interface DeclareVariable extends BaseNode {
2164
+ type: "DeclareVariable";
2165
+ id: Identifier;
2166
+ }
2167
+ interface DeclareExportDeclaration extends BaseNode {
2168
+ type: "DeclareExportDeclaration";
2169
+ declaration?: Flow | null;
2170
+ specifiers?: Array<ExportSpecifier | ExportNamespaceSpecifier> | null;
2171
+ source?: StringLiteral | null;
2172
+ default?: boolean | null;
2173
+ }
2174
+ interface DeclareExportAllDeclaration extends BaseNode {
2175
+ type: "DeclareExportAllDeclaration";
2176
+ source: StringLiteral;
2177
+ exportKind?: "type" | "value" | null;
2178
+ }
2179
+ interface DeclaredPredicate extends BaseNode {
2180
+ type: "DeclaredPredicate";
2181
+ value: Flow;
2182
+ }
2183
+ interface ExistsTypeAnnotation extends BaseNode {
2184
+ type: "ExistsTypeAnnotation";
2185
+ }
2186
+ interface FunctionTypeAnnotation extends BaseNode {
2187
+ type: "FunctionTypeAnnotation";
2188
+ typeParameters?: TypeParameterDeclaration | null;
2189
+ params: Array<FunctionTypeParam>;
2190
+ rest?: FunctionTypeParam | null;
2191
+ returnType: FlowType;
2192
+ this?: FunctionTypeParam | null;
2193
+ }
2194
+ interface FunctionTypeParam extends BaseNode {
2195
+ type: "FunctionTypeParam";
2196
+ name?: Identifier | null;
2197
+ typeAnnotation: FlowType;
2198
+ optional?: boolean | null;
2199
+ }
2200
+ interface GenericTypeAnnotation extends BaseNode {
2201
+ type: "GenericTypeAnnotation";
2202
+ id: Identifier | QualifiedTypeIdentifier;
2203
+ typeParameters?: TypeParameterInstantiation | null;
2204
+ }
2205
+ interface InferredPredicate extends BaseNode {
2206
+ type: "InferredPredicate";
2207
+ }
2208
+ interface InterfaceExtends extends BaseNode {
2209
+ type: "InterfaceExtends";
2210
+ id: Identifier | QualifiedTypeIdentifier;
2211
+ typeParameters?: TypeParameterInstantiation | null;
2212
+ }
2213
+ interface InterfaceDeclaration extends BaseNode {
2214
+ type: "InterfaceDeclaration";
2215
+ id: Identifier;
2216
+ typeParameters?: TypeParameterDeclaration | null;
2217
+ extends?: Array<InterfaceExtends> | null;
2218
+ body: ObjectTypeAnnotation;
2219
+ }
2220
+ interface InterfaceTypeAnnotation extends BaseNode {
2221
+ type: "InterfaceTypeAnnotation";
2222
+ extends?: Array<InterfaceExtends> | null;
2223
+ body: ObjectTypeAnnotation;
2224
+ }
2225
+ interface IntersectionTypeAnnotation extends BaseNode {
2226
+ type: "IntersectionTypeAnnotation";
2227
+ types: Array<FlowType>;
2228
+ }
2229
+ interface MixedTypeAnnotation extends BaseNode {
2230
+ type: "MixedTypeAnnotation";
2231
+ }
2232
+ interface EmptyTypeAnnotation extends BaseNode {
2233
+ type: "EmptyTypeAnnotation";
2234
+ }
2235
+ interface NullableTypeAnnotation extends BaseNode {
2236
+ type: "NullableTypeAnnotation";
2237
+ typeAnnotation: FlowType;
2238
+ }
2239
+ interface NumberLiteralTypeAnnotation extends BaseNode {
2240
+ type: "NumberLiteralTypeAnnotation";
2241
+ value: number;
2242
+ }
2243
+ interface NumberTypeAnnotation extends BaseNode {
2244
+ type: "NumberTypeAnnotation";
2245
+ }
2246
+ interface ObjectTypeAnnotation extends BaseNode {
2247
+ type: "ObjectTypeAnnotation";
2248
+ properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>;
2249
+ indexers?: Array<ObjectTypeIndexer>;
2250
+ callProperties?: Array<ObjectTypeCallProperty>;
2251
+ internalSlots?: Array<ObjectTypeInternalSlot>;
2252
+ exact: boolean;
2253
+ inexact?: boolean | null;
2254
+ }
2255
+ interface ObjectTypeInternalSlot extends BaseNode {
2256
+ type: "ObjectTypeInternalSlot";
2257
+ id: Identifier;
2258
+ value: FlowType;
2259
+ optional: boolean;
2260
+ static: boolean;
2261
+ method: boolean;
2262
+ }
2263
+ interface ObjectTypeCallProperty extends BaseNode {
2264
+ type: "ObjectTypeCallProperty";
2265
+ value: FlowType;
2266
+ static: boolean;
2267
+ }
2268
+ interface ObjectTypeIndexer extends BaseNode {
2269
+ type: "ObjectTypeIndexer";
2270
+ id?: Identifier | null;
2271
+ key: FlowType;
2272
+ value: FlowType;
2273
+ variance?: Variance | null;
2274
+ static: boolean;
2275
+ }
2276
+ interface ObjectTypeProperty extends BaseNode {
2277
+ type: "ObjectTypeProperty";
2278
+ key: Identifier | StringLiteral;
2279
+ value: FlowType;
2280
+ variance?: Variance | null;
2281
+ kind: "init" | "get" | "set";
2282
+ method: boolean;
2283
+ optional: boolean;
2284
+ proto: boolean;
2285
+ static: boolean;
2286
+ }
2287
+ interface ObjectTypeSpreadProperty extends BaseNode {
2288
+ type: "ObjectTypeSpreadProperty";
2289
+ argument: FlowType;
2290
+ }
2291
+ interface OpaqueType extends BaseNode {
2292
+ type: "OpaqueType";
2293
+ id: Identifier;
2294
+ typeParameters?: TypeParameterDeclaration | null;
2295
+ supertype?: FlowType | null;
2296
+ impltype: FlowType;
2297
+ }
2298
+ interface QualifiedTypeIdentifier extends BaseNode {
2299
+ type: "QualifiedTypeIdentifier";
2300
+ id: Identifier;
2301
+ qualification: Identifier | QualifiedTypeIdentifier;
2302
+ }
2303
+ interface StringLiteralTypeAnnotation extends BaseNode {
2304
+ type: "StringLiteralTypeAnnotation";
2305
+ value: string;
2306
+ }
2307
+ interface StringTypeAnnotation extends BaseNode {
2308
+ type: "StringTypeAnnotation";
2309
+ }
2310
+ interface SymbolTypeAnnotation extends BaseNode {
2311
+ type: "SymbolTypeAnnotation";
2312
+ }
2313
+ interface ThisTypeAnnotation extends BaseNode {
2314
+ type: "ThisTypeAnnotation";
2315
+ }
2316
+ interface TupleTypeAnnotation extends BaseNode {
2317
+ type: "TupleTypeAnnotation";
2318
+ types: Array<FlowType>;
2319
+ }
2320
+ interface TypeofTypeAnnotation extends BaseNode {
2321
+ type: "TypeofTypeAnnotation";
2322
+ argument: FlowType;
2323
+ }
2324
+ interface TypeAlias extends BaseNode {
2325
+ type: "TypeAlias";
2326
+ id: Identifier;
2327
+ typeParameters?: TypeParameterDeclaration | null;
2328
+ right: FlowType;
2329
+ }
2330
+ interface TypeAnnotation extends BaseNode {
2331
+ type: "TypeAnnotation";
2332
+ typeAnnotation: FlowType;
2333
+ }
2334
+ interface TypeCastExpression extends BaseNode {
2335
+ type: "TypeCastExpression";
2336
+ expression: Expression;
2337
+ typeAnnotation: TypeAnnotation;
2338
+ }
2339
+ interface TypeParameter extends BaseNode {
2340
+ type: "TypeParameter";
2341
+ bound?: TypeAnnotation | null;
2342
+ default?: FlowType | null;
2343
+ variance?: Variance | null;
2344
+ name: string;
2345
+ }
2346
+ interface TypeParameterDeclaration extends BaseNode {
2347
+ type: "TypeParameterDeclaration";
2348
+ params: Array<TypeParameter>;
2349
+ }
2350
+ interface TypeParameterInstantiation extends BaseNode {
2351
+ type: "TypeParameterInstantiation";
2352
+ params: Array<FlowType>;
2353
+ }
2354
+ interface UnionTypeAnnotation extends BaseNode {
2355
+ type: "UnionTypeAnnotation";
2356
+ types: Array<FlowType>;
2357
+ }
2358
+ interface Variance extends BaseNode {
2359
+ type: "Variance";
2360
+ kind: "minus" | "plus";
2361
+ }
2362
+ interface VoidTypeAnnotation extends BaseNode {
2363
+ type: "VoidTypeAnnotation";
2364
+ }
2365
+ interface EnumDeclaration extends BaseNode {
2366
+ type: "EnumDeclaration";
2367
+ id: Identifier;
2368
+ body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
2369
+ }
2370
+ interface EnumBooleanBody extends BaseNode {
2371
+ type: "EnumBooleanBody";
2372
+ members: Array<EnumBooleanMember>;
2373
+ explicitType: boolean;
2374
+ hasUnknownMembers: boolean;
2375
+ }
2376
+ interface EnumNumberBody extends BaseNode {
2377
+ type: "EnumNumberBody";
2378
+ members: Array<EnumNumberMember>;
2379
+ explicitType: boolean;
2380
+ hasUnknownMembers: boolean;
2381
+ }
2382
+ interface EnumStringBody extends BaseNode {
2383
+ type: "EnumStringBody";
2384
+ members: Array<EnumStringMember | EnumDefaultedMember>;
2385
+ explicitType: boolean;
2386
+ hasUnknownMembers: boolean;
2387
+ }
2388
+ interface EnumSymbolBody extends BaseNode {
2389
+ type: "EnumSymbolBody";
2390
+ members: Array<EnumDefaultedMember>;
2391
+ hasUnknownMembers: boolean;
2392
+ }
2393
+ interface EnumBooleanMember extends BaseNode {
2394
+ type: "EnumBooleanMember";
2395
+ id: Identifier;
2396
+ init: BooleanLiteral;
2397
+ }
2398
+ interface EnumNumberMember extends BaseNode {
2399
+ type: "EnumNumberMember";
2400
+ id: Identifier;
2401
+ init: NumericLiteral;
2402
+ }
2403
+ interface EnumStringMember extends BaseNode {
2404
+ type: "EnumStringMember";
2405
+ id: Identifier;
2406
+ init: StringLiteral;
2407
+ }
2408
+ interface EnumDefaultedMember extends BaseNode {
2409
+ type: "EnumDefaultedMember";
2410
+ id: Identifier;
2411
+ }
2412
+ interface IndexedAccessType extends BaseNode {
2413
+ type: "IndexedAccessType";
2414
+ objectType: FlowType;
2415
+ indexType: FlowType;
2416
+ }
2417
+ interface OptionalIndexedAccessType extends BaseNode {
2418
+ type: "OptionalIndexedAccessType";
2419
+ objectType: FlowType;
2420
+ indexType: FlowType;
2421
+ optional: boolean;
2422
+ }
2423
+ interface JSXAttribute extends BaseNode {
2424
+ type: "JSXAttribute";
2425
+ name: JSXIdentifier | JSXNamespacedName;
2426
+ value?: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null;
2427
+ }
2428
+ interface JSXClosingElement extends BaseNode {
2429
+ type: "JSXClosingElement";
2430
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
2431
+ }
2432
+ interface JSXElement extends BaseNode {
2433
+ type: "JSXElement";
2434
+ openingElement: JSXOpeningElement;
2435
+ closingElement?: JSXClosingElement | null;
2436
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
2437
+ selfClosing?: boolean | null;
2438
+ }
2439
+ interface JSXEmptyExpression extends BaseNode {
2440
+ type: "JSXEmptyExpression";
2441
+ }
2442
+ interface JSXExpressionContainer extends BaseNode {
2443
+ type: "JSXExpressionContainer";
2444
+ expression: Expression | JSXEmptyExpression;
2445
+ }
2446
+ interface JSXSpreadChild extends BaseNode {
2447
+ type: "JSXSpreadChild";
2448
+ expression: Expression;
2449
+ }
2450
+ interface JSXIdentifier extends BaseNode {
2451
+ type: "JSXIdentifier";
2452
+ name: string;
2453
+ }
2454
+ interface JSXMemberExpression extends BaseNode {
2455
+ type: "JSXMemberExpression";
2456
+ object: JSXMemberExpression | JSXIdentifier;
2457
+ property: JSXIdentifier;
2458
+ }
2459
+ interface JSXNamespacedName extends BaseNode {
2460
+ type: "JSXNamespacedName";
2461
+ namespace: JSXIdentifier;
2462
+ name: JSXIdentifier;
2463
+ }
2464
+ interface JSXOpeningElement extends BaseNode {
2465
+ type: "JSXOpeningElement";
2466
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
2467
+ attributes: Array<JSXAttribute | JSXSpreadAttribute>;
2468
+ selfClosing: boolean;
2469
+ typeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
2470
+ }
2471
+ interface JSXSpreadAttribute extends BaseNode {
2472
+ type: "JSXSpreadAttribute";
2473
+ argument: Expression;
2474
+ }
2475
+ interface JSXText extends BaseNode {
2476
+ type: "JSXText";
2477
+ value: string;
2478
+ }
2479
+ interface JSXFragment extends BaseNode {
2480
+ type: "JSXFragment";
2481
+ openingFragment: JSXOpeningFragment;
2482
+ closingFragment: JSXClosingFragment;
2483
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
2484
+ }
2485
+ interface JSXOpeningFragment extends BaseNode {
2486
+ type: "JSXOpeningFragment";
2487
+ }
2488
+ interface JSXClosingFragment extends BaseNode {
2489
+ type: "JSXClosingFragment";
2490
+ }
2491
+ interface Noop extends BaseNode {
2492
+ type: "Noop";
2493
+ }
2494
+ interface Placeholder extends BaseNode {
2495
+ type: "Placeholder";
2496
+ expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern";
2497
+ name: Identifier;
2498
+ }
2499
+ interface V8IntrinsicIdentifier extends BaseNode {
2500
+ type: "V8IntrinsicIdentifier";
2501
+ name: string;
2502
+ }
2503
+ interface ArgumentPlaceholder extends BaseNode {
2504
+ type: "ArgumentPlaceholder";
2505
+ }
2506
+ interface BindExpression extends BaseNode {
2507
+ type: "BindExpression";
2508
+ object: Expression;
2509
+ callee: Expression;
2510
+ }
2511
+ interface ImportAttribute extends BaseNode {
2512
+ type: "ImportAttribute";
2513
+ key: Identifier | StringLiteral;
2514
+ value: StringLiteral;
2515
+ }
2516
+ interface Decorator extends BaseNode {
2517
+ type: "Decorator";
2518
+ expression: Expression;
2519
+ }
2520
+ interface DoExpression extends BaseNode {
2521
+ type: "DoExpression";
2522
+ body: BlockStatement;
2523
+ async: boolean;
2524
+ }
2525
+ interface ExportDefaultSpecifier extends BaseNode {
2526
+ type: "ExportDefaultSpecifier";
2527
+ exported: Identifier;
2528
+ }
2529
+ interface RecordExpression extends BaseNode {
2530
+ type: "RecordExpression";
2531
+ properties: Array<ObjectProperty | SpreadElement>;
2532
+ }
2533
+ interface TupleExpression extends BaseNode {
2534
+ type: "TupleExpression";
2535
+ elements: Array<Expression | SpreadElement>;
2536
+ }
2537
+ interface DecimalLiteral extends BaseNode {
2538
+ type: "DecimalLiteral";
2539
+ value: string;
2540
+ }
2541
+ interface ModuleExpression extends BaseNode {
2542
+ type: "ModuleExpression";
2543
+ body: Program;
2544
+ }
2545
+ interface TopicReference extends BaseNode {
2546
+ type: "TopicReference";
2547
+ }
2548
+ interface PipelineTopicExpression extends BaseNode {
2549
+ type: "PipelineTopicExpression";
2550
+ expression: Expression;
2551
+ }
2552
+ interface PipelineBareFunction extends BaseNode {
2553
+ type: "PipelineBareFunction";
2554
+ callee: Expression;
2555
+ }
2556
+ interface PipelinePrimaryTopicReference extends BaseNode {
2557
+ type: "PipelinePrimaryTopicReference";
2558
+ }
2559
+ interface TSParameterProperty extends BaseNode {
2560
+ type: "TSParameterProperty";
2561
+ parameter: Identifier | AssignmentPattern;
2562
+ accessibility?: "public" | "private" | "protected" | null;
2563
+ decorators?: Array<Decorator> | null;
2564
+ override?: boolean | null;
2565
+ readonly?: boolean | null;
2566
+ }
2567
+ interface TSDeclareFunction extends BaseNode {
2568
+ type: "TSDeclareFunction";
2569
+ id?: Identifier | null;
2570
+ typeParameters?: TSTypeParameterDeclaration | Noop | null;
2571
+ params: Array<Identifier | Pattern | RestElement>;
2572
+ returnType?: TSTypeAnnotation | Noop | null;
2573
+ async?: boolean;
2574
+ declare?: boolean | null;
2575
+ generator?: boolean;
2576
+ }
2577
+ interface TSDeclareMethod extends BaseNode {
2578
+ type: "TSDeclareMethod";
2579
+ decorators?: Array<Decorator> | null;
2580
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
2581
+ typeParameters?: TSTypeParameterDeclaration | Noop | null;
2582
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
2583
+ returnType?: TSTypeAnnotation | Noop | null;
2584
+ abstract?: boolean | null;
2585
+ access?: "public" | "private" | "protected" | null;
2586
+ accessibility?: "public" | "private" | "protected" | null;
2587
+ async?: boolean;
2588
+ computed?: boolean;
2589
+ generator?: boolean;
2590
+ kind?: "get" | "set" | "method" | "constructor";
2591
+ optional?: boolean | null;
2592
+ override?: boolean;
2593
+ static?: boolean;
2594
+ }
2595
+ interface TSQualifiedName extends BaseNode {
2596
+ type: "TSQualifiedName";
2597
+ left: TSEntityName;
2598
+ right: Identifier;
2599
+ }
2600
+ interface TSCallSignatureDeclaration extends BaseNode {
2601
+ type: "TSCallSignatureDeclaration";
2602
+ typeParameters?: TSTypeParameterDeclaration | null;
2603
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2604
+ typeAnnotation?: TSTypeAnnotation | null;
2605
+ }
2606
+ interface TSConstructSignatureDeclaration extends BaseNode {
2607
+ type: "TSConstructSignatureDeclaration";
2608
+ typeParameters?: TSTypeParameterDeclaration | null;
2609
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2610
+ typeAnnotation?: TSTypeAnnotation | null;
2611
+ }
2612
+ interface TSPropertySignature extends BaseNode {
2613
+ type: "TSPropertySignature";
2614
+ key: Expression;
2615
+ typeAnnotation?: TSTypeAnnotation | null;
2616
+ computed?: boolean;
2617
+ kind: "get" | "set";
2618
+ optional?: boolean | null;
2619
+ readonly?: boolean | null;
2620
+ }
2621
+ interface TSMethodSignature extends BaseNode {
2622
+ type: "TSMethodSignature";
2623
+ key: Expression;
2624
+ typeParameters?: TSTypeParameterDeclaration | null;
2625
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2626
+ typeAnnotation?: TSTypeAnnotation | null;
2627
+ computed?: boolean;
2628
+ kind: "method" | "get" | "set";
2629
+ optional?: boolean | null;
2630
+ }
2631
+ interface TSIndexSignature extends BaseNode {
2632
+ type: "TSIndexSignature";
2633
+ parameters: Array<Identifier>;
2634
+ typeAnnotation?: TSTypeAnnotation | null;
2635
+ readonly?: boolean | null;
2636
+ static?: boolean | null;
2637
+ }
2638
+ interface TSAnyKeyword extends BaseNode {
2639
+ type: "TSAnyKeyword";
2640
+ }
2641
+ interface TSBooleanKeyword extends BaseNode {
2642
+ type: "TSBooleanKeyword";
2643
+ }
2644
+ interface TSBigIntKeyword extends BaseNode {
2645
+ type: "TSBigIntKeyword";
2646
+ }
2647
+ interface TSIntrinsicKeyword extends BaseNode {
2648
+ type: "TSIntrinsicKeyword";
2649
+ }
2650
+ interface TSNeverKeyword extends BaseNode {
2651
+ type: "TSNeverKeyword";
2652
+ }
2653
+ interface TSNullKeyword extends BaseNode {
2654
+ type: "TSNullKeyword";
2655
+ }
2656
+ interface TSNumberKeyword extends BaseNode {
2657
+ type: "TSNumberKeyword";
2658
+ }
2659
+ interface TSObjectKeyword extends BaseNode {
2660
+ type: "TSObjectKeyword";
2661
+ }
2662
+ interface TSStringKeyword extends BaseNode {
2663
+ type: "TSStringKeyword";
2664
+ }
2665
+ interface TSSymbolKeyword extends BaseNode {
2666
+ type: "TSSymbolKeyword";
2667
+ }
2668
+ interface TSUndefinedKeyword extends BaseNode {
2669
+ type: "TSUndefinedKeyword";
2670
+ }
2671
+ interface TSUnknownKeyword extends BaseNode {
2672
+ type: "TSUnknownKeyword";
2673
+ }
2674
+ interface TSVoidKeyword extends BaseNode {
2675
+ type: "TSVoidKeyword";
2676
+ }
2677
+ interface TSThisType extends BaseNode {
2678
+ type: "TSThisType";
2679
+ }
2680
+ interface TSFunctionType extends BaseNode {
2681
+ type: "TSFunctionType";
2682
+ typeParameters?: TSTypeParameterDeclaration | null;
2683
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2684
+ typeAnnotation?: TSTypeAnnotation | null;
2685
+ }
2686
+ interface TSConstructorType extends BaseNode {
2687
+ type: "TSConstructorType";
2688
+ typeParameters?: TSTypeParameterDeclaration | null;
2689
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2690
+ typeAnnotation?: TSTypeAnnotation | null;
2691
+ abstract?: boolean | null;
2692
+ }
2693
+ interface TSTypeReference extends BaseNode {
2694
+ type: "TSTypeReference";
2695
+ typeName: TSEntityName;
2696
+ typeParameters?: TSTypeParameterInstantiation | null;
2697
+ }
2698
+ interface TSTypePredicate extends BaseNode {
2699
+ type: "TSTypePredicate";
2700
+ parameterName: Identifier | TSThisType;
2701
+ typeAnnotation?: TSTypeAnnotation | null;
2702
+ asserts?: boolean | null;
2703
+ }
2704
+ interface TSTypeQuery extends BaseNode {
2705
+ type: "TSTypeQuery";
2706
+ exprName: TSEntityName | TSImportType;
2707
+ typeParameters?: TSTypeParameterInstantiation | null;
2708
+ }
2709
+ interface TSTypeLiteral extends BaseNode {
2710
+ type: "TSTypeLiteral";
2711
+ members: Array<TSTypeElement>;
2712
+ }
2713
+ interface TSArrayType extends BaseNode {
2714
+ type: "TSArrayType";
2715
+ elementType: TSType;
2716
+ }
2717
+ interface TSTupleType extends BaseNode {
2718
+ type: "TSTupleType";
2719
+ elementTypes: Array<TSType | TSNamedTupleMember>;
2720
+ }
2721
+ interface TSOptionalType extends BaseNode {
2722
+ type: "TSOptionalType";
2723
+ typeAnnotation: TSType;
2724
+ }
2725
+ interface TSRestType extends BaseNode {
2726
+ type: "TSRestType";
2727
+ typeAnnotation: TSType;
2728
+ }
2729
+ interface TSNamedTupleMember extends BaseNode {
2730
+ type: "TSNamedTupleMember";
2731
+ label: Identifier;
2732
+ elementType: TSType;
2733
+ optional: boolean;
2734
+ }
2735
+ interface TSUnionType extends BaseNode {
2736
+ type: "TSUnionType";
2737
+ types: Array<TSType>;
2738
+ }
2739
+ interface TSIntersectionType extends BaseNode {
2740
+ type: "TSIntersectionType";
2741
+ types: Array<TSType>;
2742
+ }
2743
+ interface TSConditionalType extends BaseNode {
2744
+ type: "TSConditionalType";
2745
+ checkType: TSType;
2746
+ extendsType: TSType;
2747
+ trueType: TSType;
2748
+ falseType: TSType;
2749
+ }
2750
+ interface TSInferType extends BaseNode {
2751
+ type: "TSInferType";
2752
+ typeParameter: TSTypeParameter;
2753
+ }
2754
+ interface TSParenthesizedType extends BaseNode {
2755
+ type: "TSParenthesizedType";
2756
+ typeAnnotation: TSType;
2757
+ }
2758
+ interface TSTypeOperator extends BaseNode {
2759
+ type: "TSTypeOperator";
2760
+ typeAnnotation: TSType;
2761
+ operator: string;
2762
+ }
2763
+ interface TSIndexedAccessType extends BaseNode {
2764
+ type: "TSIndexedAccessType";
2765
+ objectType: TSType;
2766
+ indexType: TSType;
2767
+ }
2768
+ interface TSMappedType extends BaseNode {
2769
+ type: "TSMappedType";
2770
+ typeParameter: TSTypeParameter;
2771
+ typeAnnotation?: TSType | null;
2772
+ nameType?: TSType | null;
2773
+ optional?: true | false | "+" | "-" | null;
2774
+ readonly?: true | false | "+" | "-" | null;
2775
+ }
2776
+ interface TSLiteralType extends BaseNode {
2777
+ type: "TSLiteralType";
2778
+ literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression;
2779
+ }
2780
+ interface TSExpressionWithTypeArguments extends BaseNode {
2781
+ type: "TSExpressionWithTypeArguments";
2782
+ expression: TSEntityName;
2783
+ typeParameters?: TSTypeParameterInstantiation | null;
2784
+ }
2785
+ interface TSInterfaceDeclaration extends BaseNode {
2786
+ type: "TSInterfaceDeclaration";
2787
+ id: Identifier;
2788
+ typeParameters?: TSTypeParameterDeclaration | null;
2789
+ extends?: Array<TSExpressionWithTypeArguments> | null;
2790
+ body: TSInterfaceBody;
2791
+ declare?: boolean | null;
2792
+ }
2793
+ interface TSInterfaceBody extends BaseNode {
2794
+ type: "TSInterfaceBody";
2795
+ body: Array<TSTypeElement>;
2796
+ }
2797
+ interface TSTypeAliasDeclaration extends BaseNode {
2798
+ type: "TSTypeAliasDeclaration";
2799
+ id: Identifier;
2800
+ typeParameters?: TSTypeParameterDeclaration | null;
2801
+ typeAnnotation: TSType;
2802
+ declare?: boolean | null;
2803
+ }
2804
+ interface TSInstantiationExpression extends BaseNode {
2805
+ type: "TSInstantiationExpression";
2806
+ expression: Expression;
2807
+ typeParameters?: TSTypeParameterInstantiation | null;
2808
+ }
2809
+ interface TSAsExpression extends BaseNode {
2810
+ type: "TSAsExpression";
2811
+ expression: Expression;
2812
+ typeAnnotation: TSType;
2813
+ }
2814
+ interface TSSatisfiesExpression extends BaseNode {
2815
+ type: "TSSatisfiesExpression";
2816
+ expression: Expression;
2817
+ typeAnnotation: TSType;
2818
+ }
2819
+ interface TSTypeAssertion extends BaseNode {
2820
+ type: "TSTypeAssertion";
2821
+ typeAnnotation: TSType;
2822
+ expression: Expression;
2823
+ }
2824
+ interface TSEnumDeclaration extends BaseNode {
2825
+ type: "TSEnumDeclaration";
2826
+ id: Identifier;
2827
+ members: Array<TSEnumMember>;
2828
+ const?: boolean | null;
2829
+ declare?: boolean | null;
2830
+ initializer?: Expression | null;
2831
+ }
2832
+ interface TSEnumMember extends BaseNode {
2833
+ type: "TSEnumMember";
2834
+ id: Identifier | StringLiteral;
2835
+ initializer?: Expression | null;
2836
+ }
2837
+ interface TSModuleDeclaration extends BaseNode {
2838
+ type: "TSModuleDeclaration";
2839
+ id: Identifier | StringLiteral;
2840
+ body: TSModuleBlock | TSModuleDeclaration;
2841
+ declare?: boolean | null;
2842
+ global?: boolean | null;
2843
+ }
2844
+ interface TSModuleBlock extends BaseNode {
2845
+ type: "TSModuleBlock";
2846
+ body: Array<Statement>;
2847
+ }
2848
+ interface TSImportType extends BaseNode {
2849
+ type: "TSImportType";
2850
+ argument: StringLiteral;
2851
+ qualifier?: TSEntityName | null;
2852
+ typeParameters?: TSTypeParameterInstantiation | null;
2853
+ options?: Expression | null;
2854
+ }
2855
+ interface TSImportEqualsDeclaration extends BaseNode {
2856
+ type: "TSImportEqualsDeclaration";
2857
+ id: Identifier;
2858
+ moduleReference: TSEntityName | TSExternalModuleReference;
2859
+ importKind?: "type" | "value" | null;
2860
+ isExport: boolean;
2861
+ }
2862
+ interface TSExternalModuleReference extends BaseNode {
2863
+ type: "TSExternalModuleReference";
2864
+ expression: StringLiteral;
2865
+ }
2866
+ interface TSNonNullExpression extends BaseNode {
2867
+ type: "TSNonNullExpression";
2868
+ expression: Expression;
2869
+ }
2870
+ interface TSExportAssignment extends BaseNode {
2871
+ type: "TSExportAssignment";
2872
+ expression: Expression;
2873
+ }
2874
+ interface TSNamespaceExportDeclaration extends BaseNode {
2875
+ type: "TSNamespaceExportDeclaration";
2876
+ id: Identifier;
2877
+ }
2878
+ interface TSTypeAnnotation extends BaseNode {
2879
+ type: "TSTypeAnnotation";
2880
+ typeAnnotation: TSType;
2881
+ }
2882
+ interface TSTypeParameterInstantiation extends BaseNode {
2883
+ type: "TSTypeParameterInstantiation";
2884
+ params: Array<TSType>;
2885
+ }
2886
+ interface TSTypeParameterDeclaration extends BaseNode {
2887
+ type: "TSTypeParameterDeclaration";
2888
+ params: Array<TSTypeParameter>;
2889
+ }
2890
+ interface TSTypeParameter extends BaseNode {
2891
+ type: "TSTypeParameter";
2892
+ constraint?: TSType | null;
2893
+ default?: TSType | null;
2894
+ name: string;
2895
+ const?: boolean | null;
2896
+ in?: boolean | null;
2897
+ out?: boolean | null;
2898
+ }
2899
+ type Standardized = ArrayExpression | AssignmentExpression | BinaryExpression | InterpreterDirective | Directive | DirectiveLiteral | BlockStatement | BreakStatement | CallExpression | CatchClause | ConditionalExpression | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionStatement | File | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Identifier | IfStatement | LabeledStatement | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | Program | ObjectExpression | ObjectMethod | ObjectProperty | RestElement | ReturnStatement | SequenceExpression | ParenthesizedExpression | SwitchCase | SwitchStatement | ThisExpression | ThrowStatement | TryStatement | UnaryExpression | UpdateExpression | VariableDeclaration | VariableDeclarator | WhileStatement | WithStatement | AssignmentPattern | ArrayPattern | ArrowFunctionExpression | ClassBody | ClassExpression | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ExportSpecifier | ForOfStatement | ImportDeclaration | ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier | ImportExpression | MetaProperty | ClassMethod | ObjectPattern | SpreadElement | Super | TaggedTemplateExpression | TemplateElement | TemplateLiteral | YieldExpression | AwaitExpression | Import | BigIntLiteral | ExportNamespaceSpecifier | OptionalMemberExpression | OptionalCallExpression | ClassProperty | ClassAccessorProperty | ClassPrivateProperty | ClassPrivateMethod | PrivateName | StaticBlock;
2900
+ type Expression = ArrayExpression | AssignmentExpression | BinaryExpression | CallExpression | ConditionalExpression | FunctionExpression | Identifier | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | ObjectExpression | SequenceExpression | ParenthesizedExpression | ThisExpression | UnaryExpression | UpdateExpression | ArrowFunctionExpression | ClassExpression | ImportExpression | MetaProperty | Super | TaggedTemplateExpression | TemplateLiteral | YieldExpression | AwaitExpression | Import | BigIntLiteral | OptionalMemberExpression | OptionalCallExpression | TypeCastExpression | JSXElement | JSXFragment | BindExpression | DoExpression | RecordExpression | TupleExpression | DecimalLiteral | ModuleExpression | TopicReference | PipelineTopicExpression | PipelineBareFunction | PipelinePrimaryTopicReference | TSInstantiationExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
2901
+ type Binary = BinaryExpression | LogicalExpression;
2902
+ type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2903
+ type BlockParent = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2904
+ type Block = BlockStatement | Program | TSModuleBlock;
2905
+ type Statement = BlockStatement | BreakStatement | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionStatement | ForInStatement | ForStatement | FunctionDeclaration | IfStatement | LabeledStatement | ReturnStatement | SwitchStatement | ThrowStatement | TryStatement | VariableDeclaration | WhileStatement | WithStatement | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ForOfStatement | ImportDeclaration | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias | EnumDeclaration | TSDeclareFunction | TSInterfaceDeclaration | TSTypeAliasDeclaration | TSEnumDeclaration | TSModuleDeclaration | TSImportEqualsDeclaration | TSExportAssignment | TSNamespaceExportDeclaration;
2906
+ type Terminatorless = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement | YieldExpression | AwaitExpression;
2907
+ type CompletionStatement = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement;
2908
+ type Conditional = ConditionalExpression | IfStatement;
2909
+ type Loop = DoWhileStatement | ForInStatement | ForStatement | WhileStatement | ForOfStatement;
2910
+ type While = DoWhileStatement | WhileStatement;
2911
+ type ExpressionWrapper = ExpressionStatement | ParenthesizedExpression | TypeCastExpression;
2912
+ type For = ForInStatement | ForStatement | ForOfStatement;
2913
+ type ForXStatement = ForInStatement | ForOfStatement;
2914
+ type Function = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod;
2915
+ type FunctionParent = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2916
+ type Pureish = FunctionDeclaration | FunctionExpression | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | ArrowFunctionExpression | BigIntLiteral | DecimalLiteral;
2917
+ type Declaration = FunctionDeclaration | VariableDeclaration | ClassDeclaration | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias | EnumDeclaration | TSDeclareFunction | TSInterfaceDeclaration | TSTypeAliasDeclaration | TSEnumDeclaration | TSModuleDeclaration;
2918
+ type PatternLike = Identifier | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
2919
+ type LVal = Identifier | MemberExpression | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSParameterProperty | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
2920
+ type TSEntityName = Identifier | TSQualifiedName;
2921
+ type Literal = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | TemplateLiteral | BigIntLiteral | DecimalLiteral;
2922
+ type Immutable = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | BigIntLiteral | JSXAttribute | JSXClosingElement | JSXElement | JSXExpressionContainer | JSXSpreadChild | JSXOpeningElement | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment | DecimalLiteral;
2923
+ type UserWhitespacable = ObjectMethod | ObjectProperty | ObjectTypeInternalSlot | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeProperty | ObjectTypeSpreadProperty;
2924
+ type Method = ObjectMethod | ClassMethod | ClassPrivateMethod;
2925
+ type ObjectMember = ObjectMethod | ObjectProperty;
2926
+ type Property = ObjectProperty | ClassProperty | ClassAccessorProperty | ClassPrivateProperty;
2927
+ type UnaryLike = UnaryExpression | SpreadElement;
2928
+ type Pattern = AssignmentPattern | ArrayPattern | ObjectPattern;
2929
+ type Class = ClassExpression | ClassDeclaration;
2930
+ type ImportOrExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
2931
+ type ExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration;
2932
+ type ModuleSpecifier = ExportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier | ExportNamespaceSpecifier | ExportDefaultSpecifier;
2933
+ type Accessor = ClassAccessorProperty;
2934
+ type Private = ClassPrivateProperty | ClassPrivateMethod | PrivateName;
2935
+ type Flow = AnyTypeAnnotation | ArrayTypeAnnotation | BooleanTypeAnnotation | BooleanLiteralTypeAnnotation | NullLiteralTypeAnnotation | ClassImplements | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | DeclaredPredicate | ExistsTypeAnnotation | FunctionTypeAnnotation | FunctionTypeParam | GenericTypeAnnotation | InferredPredicate | InterfaceExtends | InterfaceDeclaration | InterfaceTypeAnnotation | IntersectionTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NullableTypeAnnotation | NumberLiteralTypeAnnotation | NumberTypeAnnotation | ObjectTypeAnnotation | ObjectTypeInternalSlot | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | QualifiedTypeIdentifier | StringLiteralTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | TupleTypeAnnotation | TypeofTypeAnnotation | TypeAlias | TypeAnnotation | TypeCastExpression | TypeParameter | TypeParameterDeclaration | TypeParameterInstantiation | UnionTypeAnnotation | Variance | VoidTypeAnnotation | EnumDeclaration | EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody | EnumBooleanMember | EnumNumberMember | EnumStringMember | EnumDefaultedMember | IndexedAccessType | OptionalIndexedAccessType;
2936
+ type FlowType = AnyTypeAnnotation | ArrayTypeAnnotation | BooleanTypeAnnotation | BooleanLiteralTypeAnnotation | NullLiteralTypeAnnotation | ExistsTypeAnnotation | FunctionTypeAnnotation | GenericTypeAnnotation | InterfaceTypeAnnotation | IntersectionTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NullableTypeAnnotation | NumberLiteralTypeAnnotation | NumberTypeAnnotation | ObjectTypeAnnotation | StringLiteralTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | TupleTypeAnnotation | TypeofTypeAnnotation | UnionTypeAnnotation | VoidTypeAnnotation | IndexedAccessType | OptionalIndexedAccessType;
2937
+ type FlowBaseAnnotation = AnyTypeAnnotation | BooleanTypeAnnotation | NullLiteralTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NumberTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | VoidTypeAnnotation;
2938
+ type FlowDeclaration = DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias;
2939
+ type FlowPredicate = DeclaredPredicate | InferredPredicate;
2940
+ type EnumBody = EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
2941
+ type EnumMember = EnumBooleanMember | EnumNumberMember | EnumStringMember | EnumDefaultedMember;
2942
+ type JSX = JSXAttribute | JSXClosingElement | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXSpreadChild | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXSpreadAttribute | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment;
2943
+ type Miscellaneous = Noop | Placeholder | V8IntrinsicIdentifier;
2944
+ type TypeScript = TSParameterProperty | TSDeclareFunction | TSDeclareMethod | TSQualifiedName | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSPropertySignature | TSMethodSignature | TSIndexSignature | TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSFunctionType | TSConstructorType | TSTypeReference | TSTypePredicate | TSTypeQuery | TSTypeLiteral | TSArrayType | TSTupleType | TSOptionalType | TSRestType | TSNamedTupleMember | TSUnionType | TSIntersectionType | TSConditionalType | TSInferType | TSParenthesizedType | TSTypeOperator | TSIndexedAccessType | TSMappedType | TSLiteralType | TSExpressionWithTypeArguments | TSInterfaceDeclaration | TSInterfaceBody | TSTypeAliasDeclaration | TSInstantiationExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSEnumDeclaration | TSEnumMember | TSModuleDeclaration | TSModuleBlock | TSImportType | TSImportEqualsDeclaration | TSExternalModuleReference | TSNonNullExpression | TSExportAssignment | TSNamespaceExportDeclaration | TSTypeAnnotation | TSTypeParameterInstantiation | TSTypeParameterDeclaration | TSTypeParameter;
2945
+ type TSTypeElement = TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSPropertySignature | TSMethodSignature | TSIndexSignature;
2946
+ type TSType = TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSFunctionType | TSConstructorType | TSTypeReference | TSTypePredicate | TSTypeQuery | TSTypeLiteral | TSArrayType | TSTupleType | TSOptionalType | TSRestType | TSUnionType | TSIntersectionType | TSConditionalType | TSInferType | TSParenthesizedType | TSTypeOperator | TSIndexedAccessType | TSMappedType | TSLiteralType | TSExpressionWithTypeArguments | TSImportType;
2947
+ type TSBaseType = TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSLiteralType;
2948
+ type ModuleDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
2949
+ interface Aliases {
2950
+ Standardized: Standardized;
2951
+ Expression: Expression;
2952
+ Binary: Binary;
2953
+ Scopable: Scopable;
2954
+ BlockParent: BlockParent;
2955
+ Block: Block;
2956
+ Statement: Statement;
2957
+ Terminatorless: Terminatorless;
2958
+ CompletionStatement: CompletionStatement;
2959
+ Conditional: Conditional;
2960
+ Loop: Loop;
2961
+ While: While;
2962
+ ExpressionWrapper: ExpressionWrapper;
2963
+ For: For;
2964
+ ForXStatement: ForXStatement;
2965
+ Function: Function;
2966
+ FunctionParent: FunctionParent;
2967
+ Pureish: Pureish;
2968
+ Declaration: Declaration;
2969
+ PatternLike: PatternLike;
2970
+ LVal: LVal;
2971
+ TSEntityName: TSEntityName;
2972
+ Literal: Literal;
2973
+ Immutable: Immutable;
2974
+ UserWhitespacable: UserWhitespacable;
2975
+ Method: Method;
2976
+ ObjectMember: ObjectMember;
2977
+ Property: Property;
2978
+ UnaryLike: UnaryLike;
2979
+ Pattern: Pattern;
2980
+ Class: Class;
2981
+ ImportOrExportDeclaration: ImportOrExportDeclaration;
2982
+ ExportDeclaration: ExportDeclaration;
2983
+ ModuleSpecifier: ModuleSpecifier;
2984
+ Accessor: Accessor;
2985
+ Private: Private;
2986
+ Flow: Flow;
2987
+ FlowType: FlowType;
2988
+ FlowBaseAnnotation: FlowBaseAnnotation;
2989
+ FlowDeclaration: FlowDeclaration;
2990
+ FlowPredicate: FlowPredicate;
2991
+ EnumBody: EnumBody;
2992
+ EnumMember: EnumMember;
2993
+ JSX: JSX;
2994
+ Miscellaneous: Miscellaneous;
2995
+ TypeScript: TypeScript;
2996
+ TSTypeElement: TSTypeElement;
2997
+ TSType: TSType;
2998
+ TSBaseType: TSBaseType;
2999
+ ModuleDeclaration: ModuleDeclaration;
3000
+ }
3001
+ type DeprecatedAliases = NumberLiteral | RegexLiteral | RestProperty | SpreadProperty;
3002
+ interface ParentMaps {
3003
+ AnyTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3004
+ ArgumentPlaceholder: CallExpression | NewExpression | OptionalCallExpression;
3005
+ ArrayExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3006
+ ArrayPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | CatchClause | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
3007
+ ArrayTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3008
+ ArrowFunctionExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3009
+ AssignmentExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3010
+ AssignmentPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSDeclareFunction | TSDeclareMethod | TSParameterProperty | VariableDeclarator;
3011
+ AwaitExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3012
+ BigIntLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3013
+ BinaryExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3014
+ BindExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3015
+ BlockStatement: ArrowFunctionExpression | BlockStatement | CatchClause | ClassMethod | ClassPrivateMethod | DeclareModule | DoExpression | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | FunctionExpression | IfStatement | LabeledStatement | ObjectMethod | Program | StaticBlock | SwitchCase | TSModuleBlock | TryStatement | WhileStatement | WithStatement;
3016
+ BooleanLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | EnumBooleanMember | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3017
+ BooleanLiteralTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3018
+ BooleanTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3019
+ BreakStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3020
+ CallExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3021
+ CatchClause: TryStatement;
3022
+ ClassAccessorProperty: ClassBody;
3023
+ ClassBody: ClassDeclaration | ClassExpression;
3024
+ ClassDeclaration: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3025
+ ClassExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3026
+ ClassImplements: ClassDeclaration | ClassExpression | DeclareClass | DeclareExportDeclaration | DeclaredPredicate;
3027
+ ClassMethod: ClassBody;
3028
+ ClassPrivateMethod: ClassBody;
3029
+ ClassPrivateProperty: ClassBody;
3030
+ ClassProperty: ClassBody;
3031
+ CommentBlock: File;
3032
+ CommentLine: File;
3033
+ ConditionalExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3034
+ ContinueStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3035
+ DebuggerStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3036
+ DecimalLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3037
+ DeclareClass: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3038
+ DeclareExportAllDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3039
+ DeclareExportDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3040
+ DeclareFunction: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3041
+ DeclareInterface: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3042
+ DeclareModule: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3043
+ DeclareModuleExports: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3044
+ DeclareOpaqueType: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3045
+ DeclareTypeAlias: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3046
+ DeclareVariable: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3047
+ DeclaredPredicate: ArrowFunctionExpression | DeclareExportDeclaration | DeclareFunction | DeclaredPredicate | FunctionDeclaration | FunctionExpression;
3048
+ Decorator: ArrayPattern | AssignmentPattern | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | Identifier | ObjectMethod | ObjectPattern | ObjectProperty | RestElement | TSDeclareMethod | TSParameterProperty;
3049
+ Directive: BlockStatement | Program;
3050
+ DirectiveLiteral: Directive;
3051
+ DoExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3052
+ DoWhileStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3053
+ EmptyStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3054
+ EmptyTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3055
+ EnumBooleanBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3056
+ EnumBooleanMember: DeclareExportDeclaration | DeclaredPredicate | EnumBooleanBody;
3057
+ EnumDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3058
+ EnumDefaultedMember: DeclareExportDeclaration | DeclaredPredicate | EnumStringBody | EnumSymbolBody;
3059
+ EnumNumberBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3060
+ EnumNumberMember: DeclareExportDeclaration | DeclaredPredicate | EnumNumberBody;
3061
+ EnumStringBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3062
+ EnumStringMember: DeclareExportDeclaration | DeclaredPredicate | EnumStringBody;
3063
+ EnumSymbolBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3064
+ ExistsTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3065
+ ExportAllDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3066
+ ExportDefaultDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3067
+ ExportDefaultSpecifier: ExportNamedDeclaration;
3068
+ ExportNamedDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3069
+ ExportNamespaceSpecifier: DeclareExportDeclaration | ExportNamedDeclaration;
3070
+ ExportSpecifier: DeclareExportDeclaration | ExportNamedDeclaration;
3071
+ ExpressionStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3072
+ File: null;
3073
+ ForInStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3074
+ ForOfStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3075
+ ForStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3076
+ FunctionDeclaration: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3077
+ FunctionExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3078
+ FunctionTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3079
+ FunctionTypeParam: DeclareExportDeclaration | DeclaredPredicate | FunctionTypeAnnotation;
3080
+ GenericTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3081
+ Identifier: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | BreakStatement | CallExpression | CatchClause | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassImplements | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | ContinueStatement | DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareOpaqueType | DeclareTypeAlias | DeclareVariable | Decorator | DoWhileStatement | EnumBooleanMember | EnumDeclaration | EnumDefaultedMember | EnumNumberMember | EnumStringMember | ExportDefaultDeclaration | ExportDefaultSpecifier | ExportNamespaceSpecifier | ExportSpecifier | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | FunctionExpression | FunctionTypeParam | GenericTypeAnnotation | IfStatement | ImportAttribute | ImportDefaultSpecifier | ImportExpression | ImportNamespaceSpecifier | ImportSpecifier | InterfaceDeclaration | InterfaceExtends | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LabeledStatement | LogicalExpression | MemberExpression | MetaProperty | NewExpression | ObjectMethod | ObjectProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | OpaqueType | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | Placeholder | PrivateName | QualifiedTypeIdentifier | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSExpressionWithTypeArguments | TSFunctionType | TSImportEqualsDeclaration | TSImportType | TSIndexSignature | TSInstantiationExpression | TSInterfaceDeclaration | TSMethodSignature | TSModuleDeclaration | TSNamedTupleMember | TSNamespaceExportDeclaration | TSNonNullExpression | TSParameterProperty | TSPropertySignature | TSQualifiedName | TSSatisfiesExpression | TSTypeAliasDeclaration | TSTypeAssertion | TSTypePredicate | TSTypeQuery | TSTypeReference | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeAlias | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3082
+ IfStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3083
+ Import: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3084
+ ImportAttribute: ExportAllDeclaration | ExportNamedDeclaration | ImportDeclaration;
3085
+ ImportDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3086
+ ImportDefaultSpecifier: ImportDeclaration;
3087
+ ImportExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3088
+ ImportNamespaceSpecifier: ImportDeclaration;
3089
+ ImportSpecifier: ImportDeclaration;
3090
+ IndexedAccessType: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3091
+ InferredPredicate: ArrowFunctionExpression | DeclareExportDeclaration | DeclaredPredicate | FunctionDeclaration | FunctionExpression;
3092
+ InterfaceDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3093
+ InterfaceExtends: ClassDeclaration | ClassExpression | DeclareClass | DeclareExportDeclaration | DeclareInterface | DeclaredPredicate | InterfaceDeclaration | InterfaceTypeAnnotation;
3094
+ InterfaceTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3095
+ InterpreterDirective: Program;
3096
+ IntersectionTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3097
+ JSXAttribute: JSXOpeningElement;
3098
+ JSXClosingElement: JSXElement;
3099
+ JSXClosingFragment: JSXFragment;
3100
+ JSXElement: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXAttribute | JSXElement | JSXExpressionContainer | JSXFragment | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3101
+ JSXEmptyExpression: JSXExpressionContainer;
3102
+ JSXExpressionContainer: JSXAttribute | JSXElement | JSXFragment;
3103
+ JSXFragment: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXAttribute | JSXElement | JSXExpressionContainer | JSXFragment | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3104
+ JSXIdentifier: JSXAttribute | JSXClosingElement | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement;
3105
+ JSXMemberExpression: JSXClosingElement | JSXMemberExpression | JSXOpeningElement;
3106
+ JSXNamespacedName: JSXAttribute | JSXClosingElement | JSXOpeningElement;
3107
+ JSXOpeningElement: JSXElement;
3108
+ JSXOpeningFragment: JSXFragment;
3109
+ JSXSpreadAttribute: JSXOpeningElement;
3110
+ JSXSpreadChild: JSXElement | JSXFragment;
3111
+ JSXText: JSXElement | JSXFragment;
3112
+ LabeledStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3113
+ LogicalExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3114
+ MemberExpression: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3115
+ MetaProperty: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3116
+ MixedTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3117
+ ModuleExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3118
+ NewExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3119
+ Noop: ArrayPattern | ArrowFunctionExpression | AssignmentPattern | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | FunctionDeclaration | FunctionExpression | Identifier | ObjectMethod | ObjectPattern | RestElement | TSDeclareFunction | TSDeclareMethod;
3120
+ NullLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3121
+ NullLiteralTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3122
+ NullableTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3123
+ NumberLiteral: null;
3124
+ NumberLiteralTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3125
+ NumberTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3126
+ NumericLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | EnumNumberMember | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3127
+ ObjectExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3128
+ ObjectMethod: ObjectExpression;
3129
+ ObjectPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | CatchClause | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
3130
+ ObjectProperty: ObjectExpression | ObjectPattern | RecordExpression;
3131
+ ObjectTypeAnnotation: ArrayTypeAnnotation | DeclareClass | DeclareExportDeclaration | DeclareInterface | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | InterfaceDeclaration | InterfaceTypeAnnotation | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3132
+ ObjectTypeCallProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3133
+ ObjectTypeIndexer: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3134
+ ObjectTypeInternalSlot: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3135
+ ObjectTypeProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3136
+ ObjectTypeSpreadProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3137
+ OpaqueType: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3138
+ OptionalCallExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3139
+ OptionalIndexedAccessType: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3140
+ OptionalMemberExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3141
+ ParenthesizedExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3142
+ PipelineBareFunction: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3143
+ PipelinePrimaryTopicReference: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3144
+ PipelineTopicExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3145
+ Placeholder: Node;
3146
+ PrivateName: BinaryExpression | ClassAccessorProperty | ClassPrivateMethod | ClassPrivateProperty | MemberExpression | ObjectProperty;
3147
+ Program: File | ModuleExpression;
3148
+ QualifiedTypeIdentifier: DeclareExportDeclaration | DeclaredPredicate | GenericTypeAnnotation | InterfaceExtends | QualifiedTypeIdentifier;
3149
+ RecordExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3150
+ RegExpLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3151
+ RegexLiteral: null;
3152
+ RestElement: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectPattern | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
3153
+ RestProperty: null;
3154
+ ReturnStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3155
+ SequenceExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3156
+ SpreadElement: ArrayExpression | CallExpression | NewExpression | ObjectExpression | OptionalCallExpression | RecordExpression | TupleExpression;
3157
+ SpreadProperty: null;
3158
+ StaticBlock: ClassBody;
3159
+ StringLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | DeclareExportAllDeclaration | DeclareExportDeclaration | DeclareModule | Decorator | DoWhileStatement | EnumStringMember | ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ExportSpecifier | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportAttribute | ImportDeclaration | ImportExpression | ImportSpecifier | JSXAttribute | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | ObjectTypeProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSExternalModuleReference | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSModuleDeclaration | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3160
+ StringLiteralTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3161
+ StringTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3162
+ Super: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3163
+ SwitchCase: SwitchStatement;
3164
+ SwitchStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3165
+ SymbolTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3166
+ TSAnyKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3167
+ TSArrayType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3168
+ TSAsExpression: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3169
+ TSBigIntKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3170
+ TSBooleanKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3171
+ TSCallSignatureDeclaration: TSInterfaceBody | TSTypeLiteral;
3172
+ TSConditionalType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3173
+ TSConstructSignatureDeclaration: TSInterfaceBody | TSTypeLiteral;
3174
+ TSConstructorType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3175
+ TSDeclareFunction: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3176
+ TSDeclareMethod: ClassBody;
3177
+ TSEnumDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3178
+ TSEnumMember: TSEnumDeclaration;
3179
+ TSExportAssignment: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3180
+ TSExpressionWithTypeArguments: ClassDeclaration | ClassExpression | TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSInterfaceDeclaration | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3181
+ TSExternalModuleReference: TSImportEqualsDeclaration;
3182
+ TSFunctionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3183
+ TSImportEqualsDeclaration: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3184
+ TSImportType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSTypeQuery | TSUnionType | TemplateLiteral;
3185
+ TSIndexSignature: ClassBody | TSInterfaceBody | TSTypeLiteral;
3186
+ TSIndexedAccessType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3187
+ TSInferType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3188
+ TSInstantiationExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3189
+ TSInterfaceBody: TSInterfaceDeclaration;
3190
+ TSInterfaceDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3191
+ TSIntersectionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3192
+ TSIntrinsicKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3193
+ TSLiteralType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3194
+ TSMappedType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3195
+ TSMethodSignature: TSInterfaceBody | TSTypeLiteral;
3196
+ TSModuleBlock: TSModuleDeclaration;
3197
+ TSModuleDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | TSModuleDeclaration | WhileStatement | WithStatement;
3198
+ TSNamedTupleMember: TSTupleType;
3199
+ TSNamespaceExportDeclaration: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3200
+ TSNeverKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3201
+ TSNonNullExpression: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3202
+ TSNullKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3203
+ TSNumberKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3204
+ TSObjectKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3205
+ TSOptionalType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3206
+ TSParameterProperty: ArrayPattern | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | RestElement | TSDeclareMethod | VariableDeclarator;
3207
+ TSParenthesizedType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3208
+ TSPropertySignature: TSInterfaceBody | TSTypeLiteral;
3209
+ TSQualifiedName: TSExpressionWithTypeArguments | TSImportEqualsDeclaration | TSImportType | TSQualifiedName | TSTypeQuery | TSTypeReference;
3210
+ TSRestType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3211
+ TSSatisfiesExpression: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3212
+ TSStringKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3213
+ TSSymbolKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3214
+ TSThisType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSTypePredicate | TSUnionType | TemplateLiteral;
3215
+ TSTupleType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3216
+ TSTypeAliasDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3217
+ TSTypeAnnotation: ArrayPattern | ArrowFunctionExpression | AssignmentPattern | ClassAccessorProperty | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | FunctionDeclaration | FunctionExpression | Identifier | ObjectMethod | ObjectPattern | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSIndexSignature | TSMethodSignature | TSPropertySignature | TSTypePredicate;
3218
+ TSTypeAssertion: ArrayExpression | ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | RestElement | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3219
+ TSTypeLiteral: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3220
+ TSTypeOperator: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3221
+ TSTypeParameter: TSInferType | TSMappedType | TSTypeParameterDeclaration;
3222
+ TSTypeParameterDeclaration: ArrowFunctionExpression | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | FunctionDeclaration | FunctionExpression | ObjectMethod | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSInterfaceDeclaration | TSMethodSignature | TSTypeAliasDeclaration;
3223
+ TSTypeParameterInstantiation: CallExpression | ClassDeclaration | ClassExpression | JSXOpeningElement | NewExpression | OptionalCallExpression | TSExpressionWithTypeArguments | TSImportType | TSInstantiationExpression | TSTypeQuery | TSTypeReference | TaggedTemplateExpression;
3224
+ TSTypePredicate: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3225
+ TSTypeQuery: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3226
+ TSTypeReference: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3227
+ TSUndefinedKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3228
+ TSUnionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3229
+ TSUnknownKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3230
+ TSVoidKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3231
+ TaggedTemplateExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3232
+ TemplateElement: TemplateLiteral;
3233
+ TemplateLiteral: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3234
+ ThisExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3235
+ ThisTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3236
+ ThrowStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3237
+ TopicReference: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3238
+ TryStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3239
+ TupleExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3240
+ TupleTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3241
+ TypeAlias: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3242
+ TypeAnnotation: ArrayPattern | ArrowFunctionExpression | AssignmentPattern | ClassAccessorProperty | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | DeclareExportDeclaration | DeclareModuleExports | DeclaredPredicate | FunctionDeclaration | FunctionExpression | Identifier | ObjectMethod | ObjectPattern | RestElement | TypeCastExpression | TypeParameter;
3243
+ TypeCastExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | DeclareExportDeclaration | DeclaredPredicate | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3244
+ TypeParameter: DeclareExportDeclaration | DeclaredPredicate | TypeParameterDeclaration;
3245
+ TypeParameterDeclaration: ArrowFunctionExpression | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | DeclareClass | DeclareExportDeclaration | DeclareInterface | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionDeclaration | FunctionExpression | FunctionTypeAnnotation | InterfaceDeclaration | ObjectMethod | OpaqueType | TypeAlias;
3246
+ TypeParameterInstantiation: CallExpression | ClassDeclaration | ClassExpression | ClassImplements | DeclareExportDeclaration | DeclaredPredicate | GenericTypeAnnotation | InterfaceExtends | JSXOpeningElement | NewExpression | OptionalCallExpression | TaggedTemplateExpression;
3247
+ TypeofTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3248
+ UnaryExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3249
+ UnionTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3250
+ UpdateExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3251
+ V8IntrinsicIdentifier: CallExpression | NewExpression;
3252
+ VariableDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3253
+ VariableDeclarator: VariableDeclaration;
3254
+ Variance: ClassAccessorProperty | ClassPrivateProperty | ClassProperty | DeclareExportDeclaration | DeclaredPredicate | ObjectTypeIndexer | ObjectTypeProperty | TypeParameter;
3255
+ VoidTypeAnnotation: ArrayTypeAnnotation | DeclareExportDeclaration | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionTypeAnnotation | FunctionTypeParam | IndexedAccessType | IntersectionTypeAnnotation | NullableTypeAnnotation | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeInternalSlot | ObjectTypeProperty | ObjectTypeSpreadProperty | OpaqueType | OptionalIndexedAccessType | TupleTypeAnnotation | TypeAlias | TypeAnnotation | TypeParameter | TypeParameterInstantiation | TypeofTypeAnnotation | UnionTypeAnnotation;
3256
+ WhileStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3257
+ WithStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3258
+ YieldExpression: ArrayExpression | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BinaryExpression | BindExpression | CallExpression | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateProperty | ClassProperty | ConditionalExpression | Decorator | DoWhileStatement | ExportDefaultDeclaration | ExpressionStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | ImportExpression | JSXExpressionContainer | JSXSpreadAttribute | JSXSpreadChild | LogicalExpression | MemberExpression | NewExpression | ObjectMethod | ObjectProperty | OptionalCallExpression | OptionalMemberExpression | ParenthesizedExpression | PipelineBareFunction | PipelineTopicExpression | ReturnStatement | SequenceExpression | SpreadElement | SwitchCase | SwitchStatement | TSAsExpression | TSDeclareMethod | TSEnumDeclaration | TSEnumMember | TSExportAssignment | TSImportType | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3259
+ }
3260
+
3261
+ declare function deprecationWarning(oldName: string, newName: string, prefix?: string): void;
3262
+
3263
+ declare const react: {
3264
+ isReactComponent: (member: Node) => boolean;
3265
+ isCompatTag: typeof isCompatTag;
3266
+ buildChildren: typeof buildChildren;
3267
+ };
3268
+
3269
+ export { ACCESSOR_TYPES, ALIAS_KEYS, ASSIGNMENT_OPERATORS, Accessor, Aliases, AnyTypeAnnotation, ArgumentPlaceholder, ArrayExpression, ArrayPattern, ArrayTypeAnnotation, ArrowFunctionExpression, AssignmentExpression, AssignmentPattern, AwaitExpression, BINARY_OPERATORS, BINARY_TYPES, BLOCKPARENT_TYPES, BLOCK_SCOPED_SYMBOL, BLOCK_TYPES, BOOLEAN_BINARY_OPERATORS, BOOLEAN_NUMBER_BINARY_OPERATORS, BOOLEAN_UNARY_OPERATORS, BUILDER_KEYS, BigIntLiteral, Binary, BinaryExpression, BindExpression, Block, BlockParent, BlockStatement, BooleanLiteral, BooleanLiteralTypeAnnotation, BooleanTypeAnnotation, BreakStatement, CLASS_TYPES, COMMENT_KEYS, COMPARISON_BINARY_OPERATORS, COMPLETIONSTATEMENT_TYPES, CONDITIONAL_TYPES, CallExpression, CatchClause, Class, ClassAccessorProperty, ClassBody, ClassDeclaration, ClassExpression, ClassImplements, ClassMethod, ClassPrivateMethod, ClassPrivateProperty, ClassProperty, Comment, CommentBlock, CommentLine, CommentTypeShorthand, CompletionStatement, Conditional, ConditionalExpression, ContinueStatement, DECLARATION_TYPES, DEPRECATED_ALIASES, DEPRECATED_KEYS, DebuggerStatement, DecimalLiteral, Declaration, DeclareClass, DeclareExportAllDeclaration, DeclareExportDeclaration, DeclareFunction, DeclareInterface, DeclareModule, DeclareModuleExports, DeclareOpaqueType, DeclareTypeAlias, DeclareVariable, DeclaredPredicate, Decorator, DeprecatedAliases, Directive, DirectiveLiteral, DoExpression, DoWhileStatement, ENUMBODY_TYPES, ENUMMEMBER_TYPES, EQUALITY_BINARY_OPERATORS, EXPORTDECLARATION_TYPES, EXPRESSIONWRAPPER_TYPES, EXPRESSION_TYPES, EmptyStatement, EmptyTypeAnnotation, EnumBody, EnumBooleanBody, EnumBooleanMember, EnumDeclaration, EnumDefaultedMember, EnumMember, EnumNumberBody, EnumNumberMember, EnumStringBody, EnumStringMember, EnumSymbolBody, ExistsTypeAnnotation, ExportAllDeclaration, ExportDeclaration, ExportDefaultDeclaration, ExportDefaultSpecifier, ExportNamedDeclaration, ExportNamespaceSpecifier, ExportSpecifier, Expression, ExpressionStatement, ExpressionWrapper, FLATTENABLE_KEYS, FLIPPED_ALIAS_KEYS, FLOWBASEANNOTATION_TYPES, FLOWDECLARATION_TYPES, FLOWPREDICATE_TYPES, FLOWTYPE_TYPES, FLOW_TYPES, FORXSTATEMENT_TYPES, FOR_INIT_KEYS, FOR_TYPES, FUNCTIONPARENT_TYPES, FUNCTION_TYPES, FieldOptions, File, Flow, FlowBaseAnnotation, FlowDeclaration, FlowPredicate, FlowType, For, ForInStatement, ForOfStatement, ForStatement, ForXStatement, Function, FunctionDeclaration, FunctionExpression, FunctionParent, FunctionTypeAnnotation, FunctionTypeParam, GenericTypeAnnotation, IMMUTABLE_TYPES, IMPORTOREXPORTDECLARATION_TYPES, INHERIT_KEYS, Identifier, IfStatement, Immutable, Import, ImportAttribute, ImportDeclaration, ImportDefaultSpecifier, ImportExpression, ImportNamespaceSpecifier, ImportOrExportDeclaration, ImportSpecifier, IndexedAccessType, InferredPredicate, InterfaceDeclaration, InterfaceExtends, InterfaceTypeAnnotation, InterpreterDirective, IntersectionTypeAnnotation, JSX, JSXAttribute, JSXClosingElement, JSXClosingFragment, JSXElement, JSXEmptyExpression, JSXExpressionContainer, JSXFragment, JSXIdentifier, JSXMemberExpression, JSXNamespacedName, JSXOpeningElement, JSXOpeningFragment, JSXSpreadAttribute, JSXSpreadChild, JSXText, JSX_TYPES, LITERAL_TYPES, LOGICAL_OPERATORS, LOOP_TYPES, LVAL_TYPES, LVal, LabeledStatement, Literal, LogicalExpression, Loop, METHOD_TYPES, MISCELLANEOUS_TYPES, MODULEDECLARATION_TYPES, MODULESPECIFIER_TYPES, MemberExpression, MetaProperty, Method, Miscellaneous, MixedTypeAnnotation, ModuleDeclaration, ModuleExpression, ModuleSpecifier, NODE_FIELDS, NODE_PARENT_VALIDATIONS, NOT_LOCAL_BINDING, NUMBER_BINARY_OPERATORS, NUMBER_UNARY_OPERATORS, NewExpression, Node, Noop, NullLiteral, NullLiteralTypeAnnotation, NullableTypeAnnotation, NumberLiteral, NumberLiteralTypeAnnotation, NumberTypeAnnotation, NumericLiteral, OBJECTMEMBER_TYPES, ObjectExpression, ObjectMember, ObjectMethod, ObjectPattern, ObjectProperty, ObjectTypeAnnotation, ObjectTypeCallProperty, ObjectTypeIndexer, ObjectTypeInternalSlot, ObjectTypeProperty, ObjectTypeSpreadProperty, OpaqueType, OptionalCallExpression, OptionalIndexedAccessType, OptionalMemberExpression, PATTERNLIKE_TYPES, PATTERN_TYPES, PLACEHOLDERS, PLACEHOLDERS_ALIAS, PLACEHOLDERS_FLIPPED_ALIAS, PRIVATE_TYPES, PROPERTY_TYPES, PUREISH_TYPES, ParentMaps, ParenthesizedExpression, Pattern, PatternLike, PipelineBareFunction, PipelinePrimaryTopicReference, PipelineTopicExpression, Placeholder, Private, PrivateName, Program, Property, Pureish, QualifiedTypeIdentifier, RecordExpression, RegExpLiteral, RegexLiteral, Options as RemovePropertiesOptions, RestElement, RestProperty, ReturnStatement, SCOPABLE_TYPES, STANDARDIZED_TYPES, STATEMENT_OR_BLOCK_KEYS, STATEMENT_TYPES, STRING_UNARY_OPERATORS, Scopable, SequenceExpression, SourceLocation, SpreadElement, SpreadProperty, Standardized, Statement, StaticBlock, StringLiteral, StringLiteralTypeAnnotation, StringTypeAnnotation, Super, SwitchCase, SwitchStatement, SymbolTypeAnnotation, TERMINATORLESS_TYPES, TSAnyKeyword, TSArrayType, TSAsExpression, TSBASETYPE_TYPES, TSBaseType, TSBigIntKeyword, TSBooleanKeyword, TSCallSignatureDeclaration, TSConditionalType, TSConstructSignatureDeclaration, TSConstructorType, TSDeclareFunction, TSDeclareMethod, TSENTITYNAME_TYPES, TSEntityName, TSEnumDeclaration, TSEnumMember, TSExportAssignment, TSExpressionWithTypeArguments, TSExternalModuleReference, TSFunctionType, TSImportEqualsDeclaration, TSImportType, TSIndexSignature, TSIndexedAccessType, TSInferType, TSInstantiationExpression, TSInterfaceBody, TSInterfaceDeclaration, TSIntersectionType, TSIntrinsicKeyword, TSLiteralType, TSMappedType, TSMethodSignature, TSModuleBlock, TSModuleDeclaration, TSNamedTupleMember, TSNamespaceExportDeclaration, TSNeverKeyword, TSNonNullExpression, TSNullKeyword, TSNumberKeyword, TSObjectKeyword, TSOptionalType, TSParameterProperty, TSParenthesizedType, TSPropertySignature, TSQualifiedName, TSRestType, TSSatisfiesExpression, TSStringKeyword, TSSymbolKeyword, TSTYPEELEMENT_TYPES, TSTYPE_TYPES, TSThisType, TSTupleType, TSType, TSTypeAliasDeclaration, TSTypeAnnotation, TSTypeAssertion, TSTypeElement, TSTypeLiteral, TSTypeOperator, TSTypeParameter, TSTypeParameterDeclaration, TSTypeParameterInstantiation, TSTypePredicate, TSTypeQuery, TSTypeReference, TSUndefinedKeyword, TSUnionType, TSUnknownKeyword, TSVoidKeyword, TYPES, TYPESCRIPT_TYPES, TaggedTemplateExpression, TemplateElement, TemplateLiteral, Terminatorless, ThisExpression, ThisTypeAnnotation, ThrowStatement, TopicReference, TraversalAncestors, TraversalHandler, TraversalHandlers, TryStatement, TupleExpression, TupleTypeAnnotation, TypeAlias, TypeAnnotation, TypeCastExpression, TypeParameter, TypeParameterDeclaration, TypeParameterInstantiation, TypeScript, TypeofTypeAnnotation, UNARYLIKE_TYPES, UNARY_OPERATORS, UPDATE_OPERATORS, USERWHITESPACABLE_TYPES, UnaryExpression, UnaryLike, UnionTypeAnnotation, UpdateExpression, UserWhitespacable, V8IntrinsicIdentifier, VISITOR_KEYS, VariableDeclaration, VariableDeclarator, Variance, VoidTypeAnnotation, WHILE_TYPES, While, WhileStatement, WithStatement, YieldExpression, deprecationWarning as __internal__deprecationWarning, addComment, addComments, anyTypeAnnotation, appendToMemberExpression, argumentPlaceholder, arrayExpression, arrayPattern, arrayTypeAnnotation, arrowFunctionExpression, assertAccessor, assertAnyTypeAnnotation, assertArgumentPlaceholder, assertArrayExpression, assertArrayPattern, assertArrayTypeAnnotation, assertArrowFunctionExpression, assertAssignmentExpression, assertAssignmentPattern, assertAwaitExpression, assertBigIntLiteral, assertBinary, assertBinaryExpression, assertBindExpression, assertBlock, assertBlockParent, assertBlockStatement, assertBooleanLiteral, assertBooleanLiteralTypeAnnotation, assertBooleanTypeAnnotation, assertBreakStatement, assertCallExpression, assertCatchClause, assertClass, assertClassAccessorProperty, assertClassBody, assertClassDeclaration, assertClassExpression, assertClassImplements, assertClassMethod, assertClassPrivateMethod, assertClassPrivateProperty, assertClassProperty, assertCompletionStatement, assertConditional, assertConditionalExpression, assertContinueStatement, assertDebuggerStatement, assertDecimalLiteral, assertDeclaration, assertDeclareClass, assertDeclareExportAllDeclaration, assertDeclareExportDeclaration, assertDeclareFunction, assertDeclareInterface, assertDeclareModule, assertDeclareModuleExports, assertDeclareOpaqueType, assertDeclareTypeAlias, assertDeclareVariable, assertDeclaredPredicate, assertDecorator, assertDirective, assertDirectiveLiteral, assertDoExpression, assertDoWhileStatement, assertEmptyStatement, assertEmptyTypeAnnotation, assertEnumBody, assertEnumBooleanBody, assertEnumBooleanMember, assertEnumDeclaration, assertEnumDefaultedMember, assertEnumMember, assertEnumNumberBody, assertEnumNumberMember, assertEnumStringBody, assertEnumStringMember, assertEnumSymbolBody, assertExistsTypeAnnotation, assertExportAllDeclaration, assertExportDeclaration, assertExportDefaultDeclaration, assertExportDefaultSpecifier, assertExportNamedDeclaration, assertExportNamespaceSpecifier, assertExportSpecifier, assertExpression, assertExpressionStatement, assertExpressionWrapper, assertFile, assertFlow, assertFlowBaseAnnotation, assertFlowDeclaration, assertFlowPredicate, assertFlowType, assertFor, assertForInStatement, assertForOfStatement, assertForStatement, assertForXStatement, assertFunction, assertFunctionDeclaration, assertFunctionExpression, assertFunctionParent, assertFunctionTypeAnnotation, assertFunctionTypeParam, assertGenericTypeAnnotation, assertIdentifier, assertIfStatement, assertImmutable, assertImport, assertImportAttribute, assertImportDeclaration, assertImportDefaultSpecifier, assertImportExpression, assertImportNamespaceSpecifier, assertImportOrExportDeclaration, assertImportSpecifier, assertIndexedAccessType, assertInferredPredicate, assertInterfaceDeclaration, assertInterfaceExtends, assertInterfaceTypeAnnotation, assertInterpreterDirective, assertIntersectionTypeAnnotation, assertJSX, assertJSXAttribute, assertJSXClosingElement, assertJSXClosingFragment, assertJSXElement, assertJSXEmptyExpression, assertJSXExpressionContainer, assertJSXFragment, assertJSXIdentifier, assertJSXMemberExpression, assertJSXNamespacedName, assertJSXOpeningElement, assertJSXOpeningFragment, assertJSXSpreadAttribute, assertJSXSpreadChild, assertJSXText, assertLVal, assertLabeledStatement, assertLiteral, assertLogicalExpression, assertLoop, assertMemberExpression, assertMetaProperty, assertMethod, assertMiscellaneous, assertMixedTypeAnnotation, assertModuleDeclaration, assertModuleExpression, assertModuleSpecifier, assertNewExpression, assertNode, assertNoop, assertNullLiteral, assertNullLiteralTypeAnnotation, assertNullableTypeAnnotation, assertNumberLiteral, assertNumberLiteralTypeAnnotation, assertNumberTypeAnnotation, assertNumericLiteral, assertObjectExpression, assertObjectMember, assertObjectMethod, assertObjectPattern, assertObjectProperty, assertObjectTypeAnnotation, assertObjectTypeCallProperty, assertObjectTypeIndexer, assertObjectTypeInternalSlot, assertObjectTypeProperty, assertObjectTypeSpreadProperty, assertOpaqueType, assertOptionalCallExpression, assertOptionalIndexedAccessType, assertOptionalMemberExpression, assertParenthesizedExpression, assertPattern, assertPatternLike, assertPipelineBareFunction, assertPipelinePrimaryTopicReference, assertPipelineTopicExpression, assertPlaceholder, assertPrivate, assertPrivateName, assertProgram, assertProperty, assertPureish, assertQualifiedTypeIdentifier, assertRecordExpression, assertRegExpLiteral, assertRegexLiteral, assertRestElement, assertRestProperty, assertReturnStatement, assertScopable, assertSequenceExpression, assertSpreadElement, assertSpreadProperty, assertStandardized, assertStatement, assertStaticBlock, assertStringLiteral, assertStringLiteralTypeAnnotation, assertStringTypeAnnotation, assertSuper, assertSwitchCase, assertSwitchStatement, assertSymbolTypeAnnotation, assertTSAnyKeyword, assertTSArrayType, assertTSAsExpression, assertTSBaseType, assertTSBigIntKeyword, assertTSBooleanKeyword, assertTSCallSignatureDeclaration, assertTSConditionalType, assertTSConstructSignatureDeclaration, assertTSConstructorType, assertTSDeclareFunction, assertTSDeclareMethod, assertTSEntityName, assertTSEnumDeclaration, assertTSEnumMember, assertTSExportAssignment, assertTSExpressionWithTypeArguments, assertTSExternalModuleReference, assertTSFunctionType, assertTSImportEqualsDeclaration, assertTSImportType, assertTSIndexSignature, assertTSIndexedAccessType, assertTSInferType, assertTSInstantiationExpression, assertTSInterfaceBody, assertTSInterfaceDeclaration, assertTSIntersectionType, assertTSIntrinsicKeyword, assertTSLiteralType, assertTSMappedType, assertTSMethodSignature, assertTSModuleBlock, assertTSModuleDeclaration, assertTSNamedTupleMember, assertTSNamespaceExportDeclaration, assertTSNeverKeyword, assertTSNonNullExpression, assertTSNullKeyword, assertTSNumberKeyword, assertTSObjectKeyword, assertTSOptionalType, assertTSParameterProperty, assertTSParenthesizedType, assertTSPropertySignature, assertTSQualifiedName, assertTSRestType, assertTSSatisfiesExpression, assertTSStringKeyword, assertTSSymbolKeyword, assertTSThisType, assertTSTupleType, assertTSType, assertTSTypeAliasDeclaration, assertTSTypeAnnotation, assertTSTypeAssertion, assertTSTypeElement, assertTSTypeLiteral, assertTSTypeOperator, assertTSTypeParameter, assertTSTypeParameterDeclaration, assertTSTypeParameterInstantiation, assertTSTypePredicate, assertTSTypeQuery, assertTSTypeReference, assertTSUndefinedKeyword, assertTSUnionType, assertTSUnknownKeyword, assertTSVoidKeyword, assertTaggedTemplateExpression, assertTemplateElement, assertTemplateLiteral, assertTerminatorless, assertThisExpression, assertThisTypeAnnotation, assertThrowStatement, assertTopicReference, assertTryStatement, assertTupleExpression, assertTupleTypeAnnotation, assertTypeAlias, assertTypeAnnotation, assertTypeCastExpression, assertTypeParameter, assertTypeParameterDeclaration, assertTypeParameterInstantiation, assertTypeScript, assertTypeofTypeAnnotation, assertUnaryExpression, assertUnaryLike, assertUnionTypeAnnotation, assertUpdateExpression, assertUserWhitespacable, assertV8IntrinsicIdentifier, assertVariableDeclaration, assertVariableDeclarator, assertVariance, assertVoidTypeAnnotation, assertWhile, assertWhileStatement, assertWithStatement, assertYieldExpression, assignmentExpression, assignmentPattern, awaitExpression, bigIntLiteral, binaryExpression, bindExpression, blockStatement, booleanLiteral, booleanLiteralTypeAnnotation, booleanTypeAnnotation, breakStatement, buildMatchMemberExpression, buildUndefinedNode, callExpression, catchClause, classAccessorProperty, classBody, classDeclaration, classExpression, classImplements, classMethod, classPrivateMethod, classPrivateProperty, classProperty, clone, cloneDeep, cloneDeepWithoutLoc, cloneNode, cloneWithoutLoc, conditionalExpression, continueStatement, createFlowUnionType, createTSUnionType, _default$4 as createTypeAnnotationBasedOnTypeof, createFlowUnionType as createUnionTypeAnnotation, debuggerStatement, decimalLiteral, declareClass, declareExportAllDeclaration, declareExportDeclaration, declareFunction, declareInterface, declareModule, declareModuleExports, declareOpaqueType, declareTypeAlias, declareVariable, declaredPredicate, decorator, directive, directiveLiteral, doExpression, doWhileStatement, emptyStatement, emptyTypeAnnotation, ensureBlock, enumBooleanBody, enumBooleanMember, enumDeclaration, enumDefaultedMember, enumNumberBody, enumNumberMember, enumStringBody, enumStringMember, enumSymbolBody, existsTypeAnnotation, exportAllDeclaration, exportDefaultDeclaration, exportDefaultSpecifier, exportNamedDeclaration, exportNamespaceSpecifier, exportSpecifier, expressionStatement, file, forInStatement, forOfStatement, forStatement, functionDeclaration, functionExpression, functionTypeAnnotation, functionTypeParam, genericTypeAnnotation, getBindingIdentifiers, _default as getOuterBindingIdentifiers, identifier, ifStatement, _import as import, importAttribute, importDeclaration, importDefaultSpecifier, importExpression, importNamespaceSpecifier, importSpecifier, indexedAccessType, inferredPredicate, inheritInnerComments, inheritLeadingComments, inheritTrailingComments, inherits, inheritsComments, interfaceDeclaration, interfaceExtends, interfaceTypeAnnotation, interpreterDirective, intersectionTypeAnnotation, is, isAccessor, isAnyTypeAnnotation, isArgumentPlaceholder, isArrayExpression, isArrayPattern, isArrayTypeAnnotation, isArrowFunctionExpression, isAssignmentExpression, isAssignmentPattern, isAwaitExpression, isBigIntLiteral, isBinary, isBinaryExpression, isBindExpression, isBinding, isBlock, isBlockParent, isBlockScoped, isBlockStatement, isBooleanLiteral, isBooleanLiteralTypeAnnotation, isBooleanTypeAnnotation, isBreakStatement, isCallExpression, isCatchClause, isClass, isClassAccessorProperty, isClassBody, isClassDeclaration, isClassExpression, isClassImplements, isClassMethod, isClassPrivateMethod, isClassPrivateProperty, isClassProperty, isCompletionStatement, isConditional, isConditionalExpression, isContinueStatement, isDebuggerStatement, isDecimalLiteral, isDeclaration, isDeclareClass, isDeclareExportAllDeclaration, isDeclareExportDeclaration, isDeclareFunction, isDeclareInterface, isDeclareModule, isDeclareModuleExports, isDeclareOpaqueType, isDeclareTypeAlias, isDeclareVariable, isDeclaredPredicate, isDecorator, isDirective, isDirectiveLiteral, isDoExpression, isDoWhileStatement, isEmptyStatement, isEmptyTypeAnnotation, isEnumBody, isEnumBooleanBody, isEnumBooleanMember, isEnumDeclaration, isEnumDefaultedMember, isEnumMember, isEnumNumberBody, isEnumNumberMember, isEnumStringBody, isEnumStringMember, isEnumSymbolBody, isExistsTypeAnnotation, isExportAllDeclaration, isExportDeclaration, isExportDefaultDeclaration, isExportDefaultSpecifier, isExportNamedDeclaration, isExportNamespaceSpecifier, isExportSpecifier, isExpression, isExpressionStatement, isExpressionWrapper, isFile, isFlow, isFlowBaseAnnotation, isFlowDeclaration, isFlowPredicate, isFlowType, isFor, isForInStatement, isForOfStatement, isForStatement, isForXStatement, isFunction, isFunctionDeclaration, isFunctionExpression, isFunctionParent, isFunctionTypeAnnotation, isFunctionTypeParam, isGenericTypeAnnotation, isIdentifier, isIfStatement, isImmutable, isImport, isImportAttribute, isImportDeclaration, isImportDefaultSpecifier, isImportExpression, isImportNamespaceSpecifier, isImportOrExportDeclaration, isImportSpecifier, isIndexedAccessType, isInferredPredicate, isInterfaceDeclaration, isInterfaceExtends, isInterfaceTypeAnnotation, isInterpreterDirective, isIntersectionTypeAnnotation, isJSX, isJSXAttribute, isJSXClosingElement, isJSXClosingFragment, isJSXElement, isJSXEmptyExpression, isJSXExpressionContainer, isJSXFragment, isJSXIdentifier, isJSXMemberExpression, isJSXNamespacedName, isJSXOpeningElement, isJSXOpeningFragment, isJSXSpreadAttribute, isJSXSpreadChild, isJSXText, isLVal, isLabeledStatement, isLet, isLiteral, isLogicalExpression, isLoop, isMemberExpression, isMetaProperty, isMethod, isMiscellaneous, isMixedTypeAnnotation, isModuleDeclaration, isModuleExpression, isModuleSpecifier, isNewExpression, isNode, isNodesEquivalent, isNoop, isNullLiteral, isNullLiteralTypeAnnotation, isNullableTypeAnnotation, isNumberLiteral, isNumberLiteralTypeAnnotation, isNumberTypeAnnotation, isNumericLiteral, isObjectExpression, isObjectMember, isObjectMethod, isObjectPattern, isObjectProperty, isObjectTypeAnnotation, isObjectTypeCallProperty, isObjectTypeIndexer, isObjectTypeInternalSlot, isObjectTypeProperty, isObjectTypeSpreadProperty, isOpaqueType, isOptionalCallExpression, isOptionalIndexedAccessType, isOptionalMemberExpression, isParenthesizedExpression, isPattern, isPatternLike, isPipelineBareFunction, isPipelinePrimaryTopicReference, isPipelineTopicExpression, isPlaceholder, isPlaceholderType, isPrivate, isPrivateName, isProgram, isProperty, isPureish, isQualifiedTypeIdentifier, isRecordExpression, isReferenced, isRegExpLiteral, isRegexLiteral, isRestElement, isRestProperty, isReturnStatement, isScopable, isScope, isSequenceExpression, isSpecifierDefault, isSpreadElement, isSpreadProperty, isStandardized, isStatement, isStaticBlock, isStringLiteral, isStringLiteralTypeAnnotation, isStringTypeAnnotation, isSuper, isSwitchCase, isSwitchStatement, isSymbolTypeAnnotation, isTSAnyKeyword, isTSArrayType, isTSAsExpression, isTSBaseType, isTSBigIntKeyword, isTSBooleanKeyword, isTSCallSignatureDeclaration, isTSConditionalType, isTSConstructSignatureDeclaration, isTSConstructorType, isTSDeclareFunction, isTSDeclareMethod, isTSEntityName, isTSEnumDeclaration, isTSEnumMember, isTSExportAssignment, isTSExpressionWithTypeArguments, isTSExternalModuleReference, isTSFunctionType, isTSImportEqualsDeclaration, isTSImportType, isTSIndexSignature, isTSIndexedAccessType, isTSInferType, isTSInstantiationExpression, isTSInterfaceBody, isTSInterfaceDeclaration, isTSIntersectionType, isTSIntrinsicKeyword, isTSLiteralType, isTSMappedType, isTSMethodSignature, isTSModuleBlock, isTSModuleDeclaration, isTSNamedTupleMember, isTSNamespaceExportDeclaration, isTSNeverKeyword, isTSNonNullExpression, isTSNullKeyword, isTSNumberKeyword, isTSObjectKeyword, isTSOptionalType, isTSParameterProperty, isTSParenthesizedType, isTSPropertySignature, isTSQualifiedName, isTSRestType, isTSSatisfiesExpression, isTSStringKeyword, isTSSymbolKeyword, isTSThisType, isTSTupleType, isTSType, isTSTypeAliasDeclaration, isTSTypeAnnotation, isTSTypeAssertion, isTSTypeElement, isTSTypeLiteral, isTSTypeOperator, isTSTypeParameter, isTSTypeParameterDeclaration, isTSTypeParameterInstantiation, isTSTypePredicate, isTSTypeQuery, isTSTypeReference, isTSUndefinedKeyword, isTSUnionType, isTSUnknownKeyword, isTSVoidKeyword, isTaggedTemplateExpression, isTemplateElement, isTemplateLiteral, isTerminatorless, isThisExpression, isThisTypeAnnotation, isThrowStatement, isTopicReference, isTryStatement, isTupleExpression, isTupleTypeAnnotation, isType, isTypeAlias, isTypeAnnotation, isTypeCastExpression, isTypeParameter, isTypeParameterDeclaration, isTypeParameterInstantiation, isTypeScript, isTypeofTypeAnnotation, isUnaryExpression, isUnaryLike, isUnionTypeAnnotation, isUpdateExpression, isUserWhitespacable, isV8IntrinsicIdentifier, isValidES3Identifier, isValidIdentifier, isVar, isVariableDeclaration, isVariableDeclarator, isVariance, isVoidTypeAnnotation, isWhile, isWhileStatement, isWithStatement, isYieldExpression, jsxAttribute as jSXAttribute, jsxClosingElement as jSXClosingElement, jsxClosingFragment as jSXClosingFragment, jsxElement as jSXElement, jsxEmptyExpression as jSXEmptyExpression, jsxExpressionContainer as jSXExpressionContainer, jsxFragment as jSXFragment, jsxIdentifier as jSXIdentifier, jsxMemberExpression as jSXMemberExpression, jsxNamespacedName as jSXNamespacedName, jsxOpeningElement as jSXOpeningElement, jsxOpeningFragment as jSXOpeningFragment, jsxSpreadAttribute as jSXSpreadAttribute, jsxSpreadChild as jSXSpreadChild, jsxText as jSXText, jsxAttribute, jsxClosingElement, jsxClosingFragment, jsxElement, jsxEmptyExpression, jsxExpressionContainer, jsxFragment, jsxIdentifier, jsxMemberExpression, jsxNamespacedName, jsxOpeningElement, jsxOpeningFragment, jsxSpreadAttribute, jsxSpreadChild, jsxText, labeledStatement, logicalExpression, matchesPattern, memberExpression, metaProperty, mixedTypeAnnotation, moduleExpression, newExpression, noop, nullLiteral, nullLiteralTypeAnnotation, nullableTypeAnnotation, NumberLiteral$1 as numberLiteral, numberLiteralTypeAnnotation, numberTypeAnnotation, numericLiteral, objectExpression, objectMethod, objectPattern, objectProperty, objectTypeAnnotation, objectTypeCallProperty, objectTypeIndexer, objectTypeInternalSlot, objectTypeProperty, objectTypeSpreadProperty, opaqueType, optionalCallExpression, optionalIndexedAccessType, optionalMemberExpression, parenthesizedExpression, pipelineBareFunction, pipelinePrimaryTopicReference, pipelineTopicExpression, placeholder, prependToMemberExpression, privateName, program, qualifiedTypeIdentifier, react, recordExpression, regExpLiteral, RegexLiteral$1 as regexLiteral, removeComments, removeProperties, removePropertiesDeep, removeTypeDuplicates, restElement, RestProperty$1 as restProperty, returnStatement, sequenceExpression, shallowEqual, spreadElement, SpreadProperty$1 as spreadProperty, staticBlock, stringLiteral, stringLiteralTypeAnnotation, stringTypeAnnotation, _super as super, switchCase, switchStatement, symbolTypeAnnotation, tsAnyKeyword as tSAnyKeyword, tsArrayType as tSArrayType, tsAsExpression as tSAsExpression, tsBigIntKeyword as tSBigIntKeyword, tsBooleanKeyword as tSBooleanKeyword, tsCallSignatureDeclaration as tSCallSignatureDeclaration, tsConditionalType as tSConditionalType, tsConstructSignatureDeclaration as tSConstructSignatureDeclaration, tsConstructorType as tSConstructorType, tsDeclareFunction as tSDeclareFunction, tsDeclareMethod as tSDeclareMethod, tsEnumDeclaration as tSEnumDeclaration, tsEnumMember as tSEnumMember, tsExportAssignment as tSExportAssignment, tsExpressionWithTypeArguments as tSExpressionWithTypeArguments, tsExternalModuleReference as tSExternalModuleReference, tsFunctionType as tSFunctionType, tsImportEqualsDeclaration as tSImportEqualsDeclaration, tsImportType as tSImportType, tsIndexSignature as tSIndexSignature, tsIndexedAccessType as tSIndexedAccessType, tsInferType as tSInferType, tsInstantiationExpression as tSInstantiationExpression, tsInterfaceBody as tSInterfaceBody, tsInterfaceDeclaration as tSInterfaceDeclaration, tsIntersectionType as tSIntersectionType, tsIntrinsicKeyword as tSIntrinsicKeyword, tsLiteralType as tSLiteralType, tsMappedType as tSMappedType, tsMethodSignature as tSMethodSignature, tsModuleBlock as tSModuleBlock, tsModuleDeclaration as tSModuleDeclaration, tsNamedTupleMember as tSNamedTupleMember, tsNamespaceExportDeclaration as tSNamespaceExportDeclaration, tsNeverKeyword as tSNeverKeyword, tsNonNullExpression as tSNonNullExpression, tsNullKeyword as tSNullKeyword, tsNumberKeyword as tSNumberKeyword, tsObjectKeyword as tSObjectKeyword, tsOptionalType as tSOptionalType, tsParameterProperty as tSParameterProperty, tsParenthesizedType as tSParenthesizedType, tsPropertySignature as tSPropertySignature, tsQualifiedName as tSQualifiedName, tsRestType as tSRestType, tsSatisfiesExpression as tSSatisfiesExpression, tsStringKeyword as tSStringKeyword, tsSymbolKeyword as tSSymbolKeyword, tsThisType as tSThisType, tsTupleType as tSTupleType, tsTypeAliasDeclaration as tSTypeAliasDeclaration, tsTypeAnnotation as tSTypeAnnotation, tsTypeAssertion as tSTypeAssertion, tsTypeLiteral as tSTypeLiteral, tsTypeOperator as tSTypeOperator, tsTypeParameter as tSTypeParameter, tsTypeParameterDeclaration as tSTypeParameterDeclaration, tsTypeParameterInstantiation as tSTypeParameterInstantiation, tsTypePredicate as tSTypePredicate, tsTypeQuery as tSTypeQuery, tsTypeReference as tSTypeReference, tsUndefinedKeyword as tSUndefinedKeyword, tsUnionType as tSUnionType, tsUnknownKeyword as tSUnknownKeyword, tsVoidKeyword as tSVoidKeyword, taggedTemplateExpression, templateElement, templateLiteral, thisExpression, thisTypeAnnotation, throwStatement, toBindingIdentifierName, toBlock, toComputedKey, _default$3 as toExpression, toIdentifier, toKeyAlias, _default$2 as toStatement, topicReference, traverse, traverseFast, tryStatement, tsAnyKeyword, tsArrayType, tsAsExpression, tsBigIntKeyword, tsBooleanKeyword, tsCallSignatureDeclaration, tsConditionalType, tsConstructSignatureDeclaration, tsConstructorType, tsDeclareFunction, tsDeclareMethod, tsEnumDeclaration, tsEnumMember, tsExportAssignment, tsExpressionWithTypeArguments, tsExternalModuleReference, tsFunctionType, tsImportEqualsDeclaration, tsImportType, tsIndexSignature, tsIndexedAccessType, tsInferType, tsInstantiationExpression, tsInterfaceBody, tsInterfaceDeclaration, tsIntersectionType, tsIntrinsicKeyword, tsLiteralType, tsMappedType, tsMethodSignature, tsModuleBlock, tsModuleDeclaration, tsNamedTupleMember, tsNamespaceExportDeclaration, tsNeverKeyword, tsNonNullExpression, tsNullKeyword, tsNumberKeyword, tsObjectKeyword, tsOptionalType, tsParameterProperty, tsParenthesizedType, tsPropertySignature, tsQualifiedName, tsRestType, tsSatisfiesExpression, tsStringKeyword, tsSymbolKeyword, tsThisType, tsTupleType, tsTypeAliasDeclaration, tsTypeAnnotation, tsTypeAssertion, tsTypeLiteral, tsTypeOperator, tsTypeParameter, tsTypeParameterDeclaration, tsTypeParameterInstantiation, tsTypePredicate, tsTypeQuery, tsTypeReference, tsUndefinedKeyword, tsUnionType, tsUnknownKeyword, tsVoidKeyword, tupleExpression, tupleTypeAnnotation, typeAlias, typeAnnotation, typeCastExpression, typeParameter, typeParameterDeclaration, typeParameterInstantiation, typeofTypeAnnotation, unaryExpression, unionTypeAnnotation, updateExpression, v8IntrinsicIdentifier, validate, _default$1 as valueToNode, variableDeclaration, variableDeclarator, variance, voidTypeAnnotation, whileStatement, withStatement, yieldExpression };