@alanszp/business-days-date-fns 10.0.0 → 11.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2109) hide show
  1. package/dist/cache/index.d.ts +2 -1
  2. package/dist/cache/index.js +1 -1
  3. package/dist/cache/index.js.map +1 -1
  4. package/dist/utils/withNonBusinessDays.d.ts +2 -2
  5. package/dist/utils/withNonBusinessDays.js +18 -6
  6. package/dist/utils/withNonBusinessDays.js.map +1 -1
  7. package/dist/utils/withNonBusinessDays.test.js +3 -2
  8. package/dist/utils/withNonBusinessDays.test.js.map +1 -1
  9. package/node_modules/@alanszp/errors/.gitignore +3 -0
  10. package/node_modules/@alanszp/errors/.npmignore +3 -0
  11. package/node_modules/@alanszp/errors/LICENSE +21 -0
  12. package/node_modules/@alanszp/errors/dist/errors/BaseError.d.ts +3 -0
  13. package/node_modules/@alanszp/errors/dist/errors/BaseError.js +18 -0
  14. package/node_modules/@alanszp/errors/dist/errors/BaseError.js.map +1 -0
  15. package/node_modules/@alanszp/errors/dist/errors/RenderableError.d.ts +6 -0
  16. package/node_modules/@alanszp/errors/dist/errors/RenderableError.js +3 -0
  17. package/node_modules/@alanszp/errors/dist/errors/RenderableError.js.map +1 -0
  18. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.d.ts +8 -0
  19. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js +20 -0
  20. package/node_modules/@alanszp/errors/dist/errors/http/BadRequestError.js.map +1 -0
  21. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.d.ts +8 -0
  22. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js +18 -0
  23. package/node_modules/@alanszp/errors/dist/errors/http/HttpError.js.map +1 -0
  24. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.d.ts +8 -0
  25. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js +32 -0
  26. package/node_modules/@alanszp/errors/dist/errors/http/InternalServerError.js.map +1 -0
  27. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.d.ts +4 -0
  28. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js +11 -0
  29. package/node_modules/@alanszp/errors/dist/errors/http/NotFoundError.js.map +1 -0
  30. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.d.ts +8 -0
  31. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js +20 -0
  32. package/node_modules/@alanszp/errors/dist/errors/http/UnauthorizedError.js.map +1 -0
  33. package/node_modules/@alanszp/errors/dist/errors/http/index.d.ts +5 -0
  34. package/node_modules/@alanszp/errors/dist/errors/http/index.js +18 -0
  35. package/node_modules/@alanszp/errors/dist/errors/http/index.js.map +1 -0
  36. package/node_modules/@alanszp/errors/dist/index.d.ts +3 -0
  37. package/node_modules/@alanszp/errors/dist/index.js +16 -0
  38. package/node_modules/@alanszp/errors/dist/index.js.map +1 -0
  39. package/node_modules/@alanszp/errors/node_modules/@types/node/LICENSE +21 -0
  40. package/node_modules/@alanszp/errors/node_modules/@types/node/README.md +15 -0
  41. package/node_modules/@alanszp/errors/node_modules/@types/node/assert/strict.d.ts +8 -0
  42. package/node_modules/@alanszp/errors/node_modules/@types/node/assert.d.ts +996 -0
  43. package/node_modules/@alanszp/errors/node_modules/@types/node/async_hooks.d.ts +539 -0
  44. package/node_modules/@alanszp/errors/node_modules/@types/node/buffer.d.ts +2362 -0
  45. package/node_modules/@alanszp/errors/node_modules/@types/node/child_process.d.ts +1540 -0
  46. package/node_modules/@alanszp/errors/node_modules/@types/node/cluster.d.ts +432 -0
  47. package/node_modules/@alanszp/errors/node_modules/@types/node/console.d.ts +415 -0
  48. package/node_modules/@alanszp/errors/node_modules/@types/node/constants.d.ts +19 -0
  49. package/node_modules/@alanszp/errors/node_modules/@types/node/crypto.d.ts +4487 -0
  50. package/node_modules/@alanszp/errors/node_modules/@types/node/dgram.d.ts +596 -0
  51. package/node_modules/@alanszp/errors/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  52. package/node_modules/@alanszp/errors/node_modules/@types/node/dns/promises.d.ts +425 -0
  53. package/node_modules/@alanszp/errors/node_modules/@types/node/dns.d.ts +809 -0
  54. package/node_modules/@alanszp/errors/node_modules/@types/node/dom-events.d.ts +122 -0
  55. package/node_modules/@alanszp/errors/node_modules/@types/node/domain.d.ts +170 -0
  56. package/node_modules/@alanszp/errors/node_modules/@types/node/events.d.ts +879 -0
  57. package/node_modules/@alanszp/errors/node_modules/@types/node/fs/promises.d.ts +1239 -0
  58. package/node_modules/@alanszp/errors/node_modules/@types/node/fs.d.ts +4311 -0
  59. package/node_modules/@alanszp/errors/node_modules/@types/node/globals.d.ts +411 -0
  60. package/node_modules/@alanszp/errors/node_modules/@types/node/globals.global.d.ts +1 -0
  61. package/node_modules/@alanszp/errors/node_modules/@types/node/http.d.ts +1887 -0
  62. package/node_modules/@alanszp/errors/node_modules/@types/node/http2.d.ts +2382 -0
  63. package/node_modules/@alanszp/errors/node_modules/@types/node/https.d.ts +550 -0
  64. package/node_modules/@alanszp/errors/node_modules/@types/node/index.d.ts +88 -0
  65. package/node_modules/@alanszp/errors/node_modules/@types/node/inspector.d.ts +2747 -0
  66. package/node_modules/@alanszp/errors/node_modules/@types/node/module.d.ts +315 -0
  67. package/node_modules/@alanszp/errors/node_modules/@types/node/net.d.ts +949 -0
  68. package/node_modules/@alanszp/errors/node_modules/@types/node/os.d.ts +478 -0
  69. package/node_modules/@alanszp/errors/node_modules/@types/node/package.json +229 -0
  70. package/node_modules/@alanszp/errors/node_modules/@types/node/path.d.ts +191 -0
  71. package/node_modules/@alanszp/errors/node_modules/@types/node/perf_hooks.d.ts +645 -0
  72. package/node_modules/@alanszp/errors/node_modules/@types/node/process.d.ts +1561 -0
  73. package/node_modules/@alanszp/errors/node_modules/@types/node/punycode.d.ts +117 -0
  74. package/node_modules/@alanszp/errors/node_modules/@types/node/querystring.d.ts +141 -0
  75. package/node_modules/@alanszp/errors/node_modules/@types/node/readline/promises.d.ts +150 -0
  76. package/node_modules/@alanszp/errors/node_modules/@types/node/readline.d.ts +539 -0
  77. package/node_modules/@alanszp/errors/node_modules/@types/node/repl.d.ts +430 -0
  78. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/consumers.d.ts +12 -0
  79. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/promises.d.ts +83 -0
  80. package/node_modules/@alanszp/errors/node_modules/@types/node/stream/web.d.ts +366 -0
  81. package/node_modules/@alanszp/errors/node_modules/@types/node/stream.d.ts +1701 -0
  82. package/node_modules/@alanszp/errors/node_modules/@types/node/string_decoder.d.ts +67 -0
  83. package/node_modules/@alanszp/errors/node_modules/@types/node/test.d.ts +1465 -0
  84. package/node_modules/@alanszp/errors/node_modules/@types/node/timers/promises.d.ts +93 -0
  85. package/node_modules/@alanszp/errors/node_modules/@types/node/timers.d.ts +240 -0
  86. package/node_modules/@alanszp/errors/node_modules/@types/node/tls.d.ts +1210 -0
  87. package/node_modules/@alanszp/errors/node_modules/@types/node/trace_events.d.ts +182 -0
  88. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  89. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
  90. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
  91. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
  92. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
  93. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
  94. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/console.d.ts +415 -0
  95. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
  96. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
  97. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
  98. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
  99. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
  100. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
  101. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
  102. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  103. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/events.d.ts +879 -0
  104. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
  105. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
  106. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
  107. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  108. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
  109. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
  110. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/https.d.ts +550 -0
  111. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  112. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
  113. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/module.d.ts +315 -0
  114. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/net.d.ts +949 -0
  115. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/os.d.ts +478 -0
  116. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  117. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
  118. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
  119. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  120. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
  121. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
  122. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
  123. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
  124. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  125. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
  126. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
  127. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
  128. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  129. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
  130. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  131. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
  132. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
  133. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  134. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  135. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/url.d.ts +927 -0
  136. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
  137. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
  138. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
  139. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
  140. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
  141. package/node_modules/@alanszp/errors/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  142. package/node_modules/@alanszp/errors/node_modules/@types/node/tty.d.ts +208 -0
  143. package/node_modules/@alanszp/errors/node_modules/@types/node/url.d.ts +927 -0
  144. package/node_modules/@alanszp/errors/node_modules/@types/node/util.d.ts +2183 -0
  145. package/node_modules/@alanszp/errors/node_modules/@types/node/v8.d.ts +764 -0
  146. package/node_modules/@alanszp/errors/node_modules/@types/node/vm.d.ts +903 -0
  147. package/node_modules/@alanszp/errors/node_modules/@types/node/wasi.d.ts +179 -0
  148. package/node_modules/@alanszp/errors/node_modules/@types/node/worker_threads.d.ts +691 -0
  149. package/node_modules/@alanszp/errors/node_modules/@types/node/zlib.d.ts +517 -0
  150. package/node_modules/@alanszp/errors/package.json +27 -0
  151. package/node_modules/@alanszp/errors/src/errors/BaseError.ts +14 -0
  152. package/node_modules/@alanszp/errors/src/errors/RenderableError.ts +7 -0
  153. package/node_modules/@alanszp/errors/src/errors/http/BadRequestError.ts +21 -0
  154. package/node_modules/@alanszp/errors/src/errors/http/HttpError.ts +19 -0
  155. package/node_modules/@alanszp/errors/src/errors/http/InternalServerError.ts +34 -0
  156. package/node_modules/@alanszp/errors/src/errors/http/NotFoundError.ts +7 -0
  157. package/node_modules/@alanszp/errors/src/errors/http/UnauthorizedError.ts +21 -0
  158. package/node_modules/@alanszp/errors/src/errors/http/index.ts +5 -0
  159. package/node_modules/@alanszp/errors/src/index.ts +3 -0
  160. package/node_modules/@alanszp/errors/tsconfig.json +15 -0
  161. package/node_modules/@ampproject/remapping/LICENSE +202 -0
  162. package/node_modules/@ampproject/remapping/README.md +218 -0
  163. package/node_modules/@ampproject/remapping/dist/remapping.mjs +191 -0
  164. package/node_modules/@ampproject/remapping/dist/remapping.mjs.map +1 -0
  165. package/node_modules/@ampproject/remapping/dist/remapping.umd.js +196 -0
  166. package/node_modules/@ampproject/remapping/dist/remapping.umd.js.map +1 -0
  167. package/node_modules/@ampproject/remapping/dist/types/build-source-map-tree.d.ts +14 -0
  168. package/node_modules/@ampproject/remapping/dist/types/remapping.d.ts +19 -0
  169. package/node_modules/@ampproject/remapping/dist/types/source-map-tree.d.ts +42 -0
  170. package/node_modules/@ampproject/remapping/dist/types/source-map.d.ts +17 -0
  171. package/node_modules/@ampproject/remapping/dist/types/types.d.ts +14 -0
  172. package/node_modules/@ampproject/remapping/package.json +75 -0
  173. package/node_modules/@babel/code-frame/LICENSE +22 -0
  174. package/node_modules/@babel/code-frame/README.md +19 -0
  175. package/node_modules/@babel/code-frame/lib/index.js +157 -0
  176. package/node_modules/@babel/code-frame/lib/index.js.map +1 -0
  177. package/node_modules/@babel/code-frame/package.json +30 -0
  178. package/node_modules/@babel/compat-data/LICENSE +22 -0
  179. package/node_modules/@babel/compat-data/README.md +19 -0
  180. package/node_modules/@babel/compat-data/corejs2-built-ins.js +2 -0
  181. package/node_modules/@babel/compat-data/corejs3-shipped-proposals.js +2 -0
  182. package/node_modules/@babel/compat-data/data/corejs2-built-ins.json +2081 -0
  183. package/node_modules/@babel/compat-data/data/corejs3-shipped-proposals.json +5 -0
  184. package/node_modules/@babel/compat-data/data/native-modules.json +18 -0
  185. package/node_modules/@babel/compat-data/data/overlapping-plugins.json +31 -0
  186. package/node_modules/@babel/compat-data/data/plugin-bugfixes.json +201 -0
  187. package/node_modules/@babel/compat-data/data/plugins.json +777 -0
  188. package/node_modules/@babel/compat-data/native-modules.js +1 -0
  189. package/node_modules/@babel/compat-data/overlapping-plugins.js +1 -0
  190. package/node_modules/@babel/compat-data/package.json +40 -0
  191. package/node_modules/@babel/compat-data/plugin-bugfixes.js +1 -0
  192. package/node_modules/@babel/compat-data/plugins.js +1 -0
  193. package/node_modules/@babel/core/LICENSE +22 -0
  194. package/node_modules/@babel/core/README.md +19 -0
  195. package/node_modules/@babel/core/cjs-proxy.cjs +53 -0
  196. package/node_modules/@babel/core/lib/config/cache-contexts.js +3 -0
  197. package/node_modules/@babel/core/lib/config/cache-contexts.js.map +1 -0
  198. package/node_modules/@babel/core/lib/config/caching.js +261 -0
  199. package/node_modules/@babel/core/lib/config/caching.js.map +1 -0
  200. package/node_modules/@babel/core/lib/config/config-chain.js +469 -0
  201. package/node_modules/@babel/core/lib/config/config-chain.js.map +1 -0
  202. package/node_modules/@babel/core/lib/config/config-descriptors.js +190 -0
  203. package/node_modules/@babel/core/lib/config/config-descriptors.js.map +1 -0
  204. package/node_modules/@babel/core/lib/config/files/configuration.js +286 -0
  205. package/node_modules/@babel/core/lib/config/files/configuration.js.map +1 -0
  206. package/node_modules/@babel/core/lib/config/files/import.cjs +6 -0
  207. package/node_modules/@babel/core/lib/config/files/import.cjs.map +1 -0
  208. package/node_modules/@babel/core/lib/config/files/index-browser.js +58 -0
  209. package/node_modules/@babel/core/lib/config/files/index-browser.js.map +1 -0
  210. package/node_modules/@babel/core/lib/config/files/index.js +78 -0
  211. package/node_modules/@babel/core/lib/config/files/index.js.map +1 -0
  212. package/node_modules/@babel/core/lib/config/files/module-types.js +173 -0
  213. package/node_modules/@babel/core/lib/config/files/module-types.js.map +1 -0
  214. package/node_modules/@babel/core/lib/config/files/package.js +61 -0
  215. package/node_modules/@babel/core/lib/config/files/package.js.map +1 -0
  216. package/node_modules/@babel/core/lib/config/files/plugins.js +217 -0
  217. package/node_modules/@babel/core/lib/config/files/plugins.js.map +1 -0
  218. package/node_modules/@babel/core/lib/config/files/types.js +3 -0
  219. package/node_modules/@babel/core/lib/config/files/types.js.map +1 -0
  220. package/node_modules/@babel/core/lib/config/files/utils.js +36 -0
  221. package/node_modules/@babel/core/lib/config/files/utils.js.map +1 -0
  222. package/node_modules/@babel/core/lib/config/full.js +310 -0
  223. package/node_modules/@babel/core/lib/config/full.js.map +1 -0
  224. package/node_modules/@babel/core/lib/config/helpers/config-api.js +84 -0
  225. package/node_modules/@babel/core/lib/config/helpers/config-api.js.map +1 -0
  226. package/node_modules/@babel/core/lib/config/helpers/deep-array.js +23 -0
  227. package/node_modules/@babel/core/lib/config/helpers/deep-array.js.map +1 -0
  228. package/node_modules/@babel/core/lib/config/helpers/environment.js +12 -0
  229. package/node_modules/@babel/core/lib/config/helpers/environment.js.map +1 -0
  230. package/node_modules/@babel/core/lib/config/index.js +93 -0
  231. package/node_modules/@babel/core/lib/config/index.js.map +1 -0
  232. package/node_modules/@babel/core/lib/config/item.js +67 -0
  233. package/node_modules/@babel/core/lib/config/item.js.map +1 -0
  234. package/node_modules/@babel/core/lib/config/partial.js +158 -0
  235. package/node_modules/@babel/core/lib/config/partial.js.map +1 -0
  236. package/node_modules/@babel/core/lib/config/pattern-to-regex.js +38 -0
  237. package/node_modules/@babel/core/lib/config/pattern-to-regex.js.map +1 -0
  238. package/node_modules/@babel/core/lib/config/plugin.js +33 -0
  239. package/node_modules/@babel/core/lib/config/plugin.js.map +1 -0
  240. package/node_modules/@babel/core/lib/config/printer.js +113 -0
  241. package/node_modules/@babel/core/lib/config/printer.js.map +1 -0
  242. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js +41 -0
  243. package/node_modules/@babel/core/lib/config/resolve-targets-browser.js.map +1 -0
  244. package/node_modules/@babel/core/lib/config/resolve-targets.js +61 -0
  245. package/node_modules/@babel/core/lib/config/resolve-targets.js.map +1 -0
  246. package/node_modules/@babel/core/lib/config/util.js +31 -0
  247. package/node_modules/@babel/core/lib/config/util.js.map +1 -0
  248. package/node_modules/@babel/core/lib/config/validation/option-assertions.js +277 -0
  249. package/node_modules/@babel/core/lib/config/validation/option-assertions.js.map +1 -0
  250. package/node_modules/@babel/core/lib/config/validation/options.js +192 -0
  251. package/node_modules/@babel/core/lib/config/validation/options.js.map +1 -0
  252. package/node_modules/@babel/core/lib/config/validation/plugins.js +67 -0
  253. package/node_modules/@babel/core/lib/config/validation/plugins.js.map +1 -0
  254. package/node_modules/@babel/core/lib/config/validation/removed.js +68 -0
  255. package/node_modules/@babel/core/lib/config/validation/removed.js.map +1 -0
  256. package/node_modules/@babel/core/lib/errors/config-error.js +18 -0
  257. package/node_modules/@babel/core/lib/errors/config-error.js.map +1 -0
  258. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js +98 -0
  259. package/node_modules/@babel/core/lib/errors/rewrite-stack-trace.js.map +1 -0
  260. package/node_modules/@babel/core/lib/gensync-utils/async.js +90 -0
  261. package/node_modules/@babel/core/lib/gensync-utils/async.js.map +1 -0
  262. package/node_modules/@babel/core/lib/gensync-utils/fs.js +31 -0
  263. package/node_modules/@babel/core/lib/gensync-utils/fs.js.map +1 -0
  264. package/node_modules/@babel/core/lib/gensync-utils/functional.js +58 -0
  265. package/node_modules/@babel/core/lib/gensync-utils/functional.js.map +1 -0
  266. package/node_modules/@babel/core/lib/index.js +242 -0
  267. package/node_modules/@babel/core/lib/index.js.map +1 -0
  268. package/node_modules/@babel/core/lib/parse.js +47 -0
  269. package/node_modules/@babel/core/lib/parse.js.map +1 -0
  270. package/node_modules/@babel/core/lib/parser/index.js +79 -0
  271. package/node_modules/@babel/core/lib/parser/index.js.map +1 -0
  272. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js +329 -0
  273. package/node_modules/@babel/core/lib/parser/util/missing-plugin-helper.js.map +1 -0
  274. package/node_modules/@babel/core/lib/tools/build-external-helpers.js +143 -0
  275. package/node_modules/@babel/core/lib/tools/build-external-helpers.js.map +1 -0
  276. package/node_modules/@babel/core/lib/transform-ast.js +50 -0
  277. package/node_modules/@babel/core/lib/transform-ast.js.map +1 -0
  278. package/node_modules/@babel/core/lib/transform-file-browser.js +23 -0
  279. package/node_modules/@babel/core/lib/transform-file-browser.js.map +1 -0
  280. package/node_modules/@babel/core/lib/transform-file.js +40 -0
  281. package/node_modules/@babel/core/lib/transform-file.js.map +1 -0
  282. package/node_modules/@babel/core/lib/transform.js +49 -0
  283. package/node_modules/@babel/core/lib/transform.js.map +1 -0
  284. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js +77 -0
  285. package/node_modules/@babel/core/lib/transformation/block-hoist-plugin.js.map +1 -0
  286. package/node_modules/@babel/core/lib/transformation/file/file.js +211 -0
  287. package/node_modules/@babel/core/lib/transformation/file/file.js.map +1 -0
  288. package/node_modules/@babel/core/lib/transformation/file/generate.js +84 -0
  289. package/node_modules/@babel/core/lib/transformation/file/generate.js.map +1 -0
  290. package/node_modules/@babel/core/lib/transformation/file/merge-map.js +37 -0
  291. package/node_modules/@babel/core/lib/transformation/file/merge-map.js.map +1 -0
  292. package/node_modules/@babel/core/lib/transformation/index.js +101 -0
  293. package/node_modules/@babel/core/lib/transformation/index.js.map +1 -0
  294. package/node_modules/@babel/core/lib/transformation/normalize-file.js +129 -0
  295. package/node_modules/@babel/core/lib/transformation/normalize-file.js.map +1 -0
  296. package/node_modules/@babel/core/lib/transformation/normalize-opts.js +59 -0
  297. package/node_modules/@babel/core/lib/transformation/normalize-opts.js.map +1 -0
  298. package/node_modules/@babel/core/lib/transformation/plugin-pass.js +48 -0
  299. package/node_modules/@babel/core/lib/transformation/plugin-pass.js.map +1 -0
  300. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js +36 -0
  301. package/node_modules/@babel/core/lib/transformation/util/clone-deep.js.map +1 -0
  302. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +1033 -0
  303. package/node_modules/@babel/core/lib/vendor/import-meta-resolve.js.map +1 -0
  304. package/node_modules/@babel/core/package.json +82 -0
  305. package/node_modules/@babel/generator/LICENSE +22 -0
  306. package/node_modules/@babel/generator/README.md +19 -0
  307. package/node_modules/@babel/generator/lib/buffer.js +323 -0
  308. package/node_modules/@babel/generator/lib/buffer.js.map +1 -0
  309. package/node_modules/@babel/generator/lib/generators/base.js +92 -0
  310. package/node_modules/@babel/generator/lib/generators/base.js.map +1 -0
  311. package/node_modules/@babel/generator/lib/generators/classes.js +177 -0
  312. package/node_modules/@babel/generator/lib/generators/classes.js.map +1 -0
  313. package/node_modules/@babel/generator/lib/generators/expressions.js +309 -0
  314. package/node_modules/@babel/generator/lib/generators/expressions.js.map +1 -0
  315. package/node_modules/@babel/generator/lib/generators/flow.js +668 -0
  316. package/node_modules/@babel/generator/lib/generators/flow.js.map +1 -0
  317. package/node_modules/@babel/generator/lib/generators/index.js +128 -0
  318. package/node_modules/@babel/generator/lib/generators/index.js.map +1 -0
  319. package/node_modules/@babel/generator/lib/generators/jsx.js +123 -0
  320. package/node_modules/@babel/generator/lib/generators/jsx.js.map +1 -0
  321. package/node_modules/@babel/generator/lib/generators/methods.js +173 -0
  322. package/node_modules/@babel/generator/lib/generators/methods.js.map +1 -0
  323. package/node_modules/@babel/generator/lib/generators/modules.js +274 -0
  324. package/node_modules/@babel/generator/lib/generators/modules.js.map +1 -0
  325. package/node_modules/@babel/generator/lib/generators/statements.js +275 -0
  326. package/node_modules/@babel/generator/lib/generators/statements.js.map +1 -0
  327. package/node_modules/@babel/generator/lib/generators/template-literals.js +30 -0
  328. package/node_modules/@babel/generator/lib/generators/template-literals.js.map +1 -0
  329. package/node_modules/@babel/generator/lib/generators/types.js +221 -0
  330. package/node_modules/@babel/generator/lib/generators/types.js.map +1 -0
  331. package/node_modules/@babel/generator/lib/generators/typescript.js +687 -0
  332. package/node_modules/@babel/generator/lib/generators/typescript.js.map +1 -0
  333. package/node_modules/@babel/generator/lib/index.js +89 -0
  334. package/node_modules/@babel/generator/lib/index.js.map +1 -0
  335. package/node_modules/@babel/generator/lib/node/index.js +76 -0
  336. package/node_modules/@babel/generator/lib/node/index.js.map +1 -0
  337. package/node_modules/@babel/generator/lib/node/parentheses.js +225 -0
  338. package/node_modules/@babel/generator/lib/node/parentheses.js.map +1 -0
  339. package/node_modules/@babel/generator/lib/node/whitespace.js +145 -0
  340. package/node_modules/@babel/generator/lib/node/whitespace.js.map +1 -0
  341. package/node_modules/@babel/generator/lib/printer.js +684 -0
  342. package/node_modules/@babel/generator/lib/printer.js.map +1 -0
  343. package/node_modules/@babel/generator/lib/source-map.js +85 -0
  344. package/node_modules/@babel/generator/lib/source-map.js.map +1 -0
  345. package/node_modules/@babel/generator/package.json +38 -0
  346. package/node_modules/@babel/helper-annotate-as-pure/LICENSE +22 -0
  347. package/node_modules/@babel/helper-annotate-as-pure/README.md +19 -0
  348. package/node_modules/@babel/helper-annotate-as-pure/lib/index.js +23 -0
  349. package/node_modules/@babel/helper-annotate-as-pure/lib/index.js.map +1 -0
  350. package/node_modules/@babel/helper-annotate-as-pure/package.json +24 -0
  351. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/LICENSE +22 -0
  352. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/README.md +19 -0
  353. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js +75 -0
  354. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/explode-assignable-expression.js.map +1 -0
  355. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js +42 -0
  356. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/lib/index.js.map +1 -0
  357. package/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/package.json +27 -0
  358. package/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  359. package/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  360. package/node_modules/@babel/helper-compilation-targets/lib/debug.js +28 -0
  361. package/node_modules/@babel/helper-compilation-targets/lib/debug.js.map +1 -0
  362. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js +67 -0
  363. package/node_modules/@babel/helper-compilation-targets/lib/filter-items.js.map +1 -0
  364. package/node_modules/@babel/helper-compilation-targets/lib/index.js +224 -0
  365. package/node_modules/@babel/helper-compilation-targets/lib/index.js.map +1 -0
  366. package/node_modules/@babel/helper-compilation-targets/lib/options.js +24 -0
  367. package/node_modules/@babel/helper-compilation-targets/lib/options.js.map +1 -0
  368. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js +40 -0
  369. package/node_modules/@babel/helper-compilation-targets/lib/pretty.js.map +1 -0
  370. package/node_modules/@babel/helper-compilation-targets/lib/targets.js +28 -0
  371. package/node_modules/@babel/helper-compilation-targets/lib/targets.js.map +1 -0
  372. package/node_modules/@babel/helper-compilation-targets/lib/utils.js +58 -0
  373. package/node_modules/@babel/helper-compilation-targets/lib/utils.js.map +1 -0
  374. package/node_modules/@babel/helper-compilation-targets/package.json +40 -0
  375. package/node_modules/@babel/helper-create-class-features-plugin/LICENSE +22 -0
  376. package/node_modules/@babel/helper-create-class-features-plugin/README.md +19 -0
  377. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js +137 -0
  378. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators-2018-09.js.map +1 -0
  379. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js +950 -0
  380. package/node_modules/@babel/helper-create-class-features-plugin/lib/decorators.js.map +1 -0
  381. package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js +132 -0
  382. package/node_modules/@babel/helper-create-class-features-plugin/lib/features.js.map +1 -0
  383. package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js +845 -0
  384. package/node_modules/@babel/helper-create-class-features-plugin/lib/fields.js.map +1 -0
  385. package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js +242 -0
  386. package/node_modules/@babel/helper-create-class-features-plugin/lib/index.js.map +1 -0
  387. package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js +124 -0
  388. package/node_modules/@babel/helper-create-class-features-plugin/lib/misc.js.map +1 -0
  389. package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js +13 -0
  390. package/node_modules/@babel/helper-create-class-features-plugin/lib/typescript.js.map +1 -0
  391. package/node_modules/@babel/helper-create-class-features-plugin/package.json +45 -0
  392. package/node_modules/@babel/helper-create-regexp-features-plugin/LICENSE +22 -0
  393. package/node_modules/@babel/helper-create-regexp-features-plugin/README.md +19 -0
  394. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js +33 -0
  395. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/features.js.map +1 -0
  396. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js +116 -0
  397. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/index.js.map +1 -0
  398. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js +71 -0
  399. package/node_modules/@babel/helper-create-regexp-features-plugin/lib/util.js.map +1 -0
  400. package/node_modules/@babel/helper-create-regexp-features-plugin/package.json +36 -0
  401. package/node_modules/@babel/helper-define-polyfill-provider/LICENSE +22 -0
  402. package/node_modules/@babel/helper-define-polyfill-provider/README.md +15 -0
  403. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs +761 -0
  404. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.browser.mjs.map +1 -0
  405. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs +805 -0
  406. package/node_modules/@babel/helper-define-polyfill-provider/esm/index.node.mjs.map +1 -0
  407. package/node_modules/@babel/helper-define-polyfill-provider/lib/browser/dependencies.js +22 -0
  408. package/node_modules/@babel/helper-define-polyfill-provider/lib/debug-utils.js +15 -0
  409. package/node_modules/@babel/helper-define-polyfill-provider/lib/define-provider.js +9 -0
  410. package/node_modules/@babel/helper-define-polyfill-provider/lib/imports-injector.js +107 -0
  411. package/node_modules/@babel/helper-define-polyfill-provider/lib/index.js +278 -0
  412. package/node_modules/@babel/helper-define-polyfill-provider/lib/meta-resolver.js +52 -0
  413. package/node_modules/@babel/helper-define-polyfill-provider/lib/node/dependencies.js +67 -0
  414. package/node_modules/@babel/helper-define-polyfill-provider/lib/normalize-options.js +70 -0
  415. package/node_modules/@babel/helper-define-polyfill-provider/lib/types.js +3 -0
  416. package/node_modules/@babel/helper-define-polyfill-provider/lib/utils.js +165 -0
  417. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/entry.js +26 -0
  418. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/index.js +9 -0
  419. package/node_modules/@babel/helper-define-polyfill-provider/lib/visitors/usage.js +91 -0
  420. package/node_modules/@babel/helper-define-polyfill-provider/package.json +59 -0
  421. package/node_modules/@babel/helper-environment-visitor/LICENSE +22 -0
  422. package/node_modules/@babel/helper-environment-visitor/README.md +19 -0
  423. package/node_modules/@babel/helper-environment-visitor/lib/index.js +52 -0
  424. package/node_modules/@babel/helper-environment-visitor/lib/index.js.map +1 -0
  425. package/node_modules/@babel/helper-environment-visitor/package.json +29 -0
  426. package/node_modules/@babel/helper-function-name/LICENSE +22 -0
  427. package/node_modules/@babel/helper-function-name/README.md +19 -0
  428. package/node_modules/@babel/helper-function-name/lib/index.js +170 -0
  429. package/node_modules/@babel/helper-function-name/lib/index.js.map +1 -0
  430. package/node_modules/@babel/helper-function-name/package.json +25 -0
  431. package/node_modules/@babel/helper-hoist-variables/LICENSE +22 -0
  432. package/node_modules/@babel/helper-hoist-variables/README.md +19 -0
  433. package/node_modules/@babel/helper-hoist-variables/lib/index.js +50 -0
  434. package/node_modules/@babel/helper-hoist-variables/lib/index.js.map +1 -0
  435. package/node_modules/@babel/helper-hoist-variables/package.json +28 -0
  436. package/node_modules/@babel/helper-member-expression-to-functions/LICENSE +22 -0
  437. package/node_modules/@babel/helper-member-expression-to-functions/README.md +19 -0
  438. package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js +397 -0
  439. package/node_modules/@babel/helper-member-expression-to-functions/lib/index.js.map +1 -0
  440. package/node_modules/@babel/helper-member-expression-to-functions/package.json +27 -0
  441. package/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  442. package/node_modules/@babel/helper-module-imports/README.md +19 -0
  443. package/node_modules/@babel/helper-module-imports/lib/import-builder.js +122 -0
  444. package/node_modules/@babel/helper-module-imports/lib/import-builder.js.map +1 -0
  445. package/node_modules/@babel/helper-module-imports/lib/import-injector.js +240 -0
  446. package/node_modules/@babel/helper-module-imports/lib/import-injector.js.map +1 -0
  447. package/node_modules/@babel/helper-module-imports/lib/index.js +37 -0
  448. package/node_modules/@babel/helper-module-imports/lib/index.js.map +1 -0
  449. package/node_modules/@babel/helper-module-imports/lib/is-module.js +11 -0
  450. package/node_modules/@babel/helper-module-imports/lib/is-module.js.map +1 -0
  451. package/node_modules/@babel/helper-module-imports/package.json +28 -0
  452. package/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  453. package/node_modules/@babel/helper-module-transforms/README.md +19 -0
  454. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js +48 -0
  455. package/node_modules/@babel/helper-module-transforms/lib/dynamic-import.js.map +1 -0
  456. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js +48 -0
  457. package/node_modules/@babel/helper-module-transforms/lib/get-module-name.js.map +1 -0
  458. package/node_modules/@babel/helper-module-transforms/lib/index.js +380 -0
  459. package/node_modules/@babel/helper-module-transforms/lib/index.js.map +1 -0
  460. package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js +31 -0
  461. package/node_modules/@babel/helper-module-transforms/lib/lazy-modules.js.map +1 -0
  462. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js +358 -0
  463. package/node_modules/@babel/helper-module-transforms/lib/normalize-and-load-metadata.js.map +1 -0
  464. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js +376 -0
  465. package/node_modules/@babel/helper-module-transforms/lib/rewrite-live-references.js.map +1 -0
  466. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js +24 -0
  467. package/node_modules/@babel/helper-module-transforms/lib/rewrite-this.js.map +1 -0
  468. package/node_modules/@babel/helper-module-transforms/package.json +35 -0
  469. package/node_modules/@babel/helper-optimise-call-expression/LICENSE +22 -0
  470. package/node_modules/@babel/helper-optimise-call-expression/README.md +19 -0
  471. package/node_modules/@babel/helper-optimise-call-expression/lib/index.js +33 -0
  472. package/node_modules/@babel/helper-optimise-call-expression/lib/index.js.map +1 -0
  473. package/node_modules/@babel/helper-optimise-call-expression/package.json +28 -0
  474. package/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  475. package/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  476. package/node_modules/@babel/helper-plugin-utils/lib/index.js +81 -0
  477. package/node_modules/@babel/helper-plugin-utils/lib/index.js.map +1 -0
  478. package/node_modules/@babel/helper-plugin-utils/package.json +21 -0
  479. package/node_modules/@babel/helper-remap-async-to-generator/LICENSE +22 -0
  480. package/node_modules/@babel/helper-remap-async-to-generator/README.md +19 -0
  481. package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js +64 -0
  482. package/node_modules/@babel/helper-remap-async-to-generator/lib/index.js.map +1 -0
  483. package/node_modules/@babel/helper-remap-async-to-generator/package.json +33 -0
  484. package/node_modules/@babel/helper-replace-supers/LICENSE +22 -0
  485. package/node_modules/@babel/helper-replace-supers/README.md +19 -0
  486. package/node_modules/@babel/helper-replace-supers/lib/index.js +227 -0
  487. package/node_modules/@babel/helper-replace-supers/lib/index.js.map +1 -0
  488. package/node_modules/@babel/helper-replace-supers/package.json +32 -0
  489. package/node_modules/@babel/helper-simple-access/LICENSE +22 -0
  490. package/node_modules/@babel/helper-simple-access/README.md +19 -0
  491. package/node_modules/@babel/helper-simple-access/lib/index.js +91 -0
  492. package/node_modules/@babel/helper-simple-access/lib/index.js.map +1 -0
  493. package/node_modules/@babel/helper-simple-access/package.json +28 -0
  494. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/LICENSE +22 -0
  495. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/README.md +19 -0
  496. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js +34 -0
  497. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/lib/index.js.map +1 -0
  498. package/node_modules/@babel/helper-skip-transparent-expression-wrappers/package.json +30 -0
  499. package/node_modules/@babel/helper-split-export-declaration/LICENSE +22 -0
  500. package/node_modules/@babel/helper-split-export-declaration/README.md +19 -0
  501. package/node_modules/@babel/helper-split-export-declaration/lib/index.js +59 -0
  502. package/node_modules/@babel/helper-split-export-declaration/lib/index.js.map +1 -0
  503. package/node_modules/@babel/helper-split-export-declaration/package.json +24 -0
  504. package/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  505. package/node_modules/@babel/helper-string-parser/README.md +19 -0
  506. package/node_modules/@babel/helper-string-parser/lib/index.js +295 -0
  507. package/node_modules/@babel/helper-string-parser/lib/index.js.map +1 -0
  508. package/node_modules/@babel/helper-string-parser/package.json +28 -0
  509. package/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  510. package/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  511. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js +70 -0
  512. package/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +1 -0
  513. package/node_modules/@babel/helper-validator-identifier/lib/index.js +57 -0
  514. package/node_modules/@babel/helper-validator-identifier/lib/index.js.map +1 -0
  515. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js +35 -0
  516. package/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +1 -0
  517. package/node_modules/@babel/helper-validator-identifier/package.json +28 -0
  518. package/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +73 -0
  519. package/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  520. package/node_modules/@babel/helper-validator-option/README.md +19 -0
  521. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js +39 -0
  522. package/node_modules/@babel/helper-validator-option/lib/find-suggestion.js.map +1 -0
  523. package/node_modules/@babel/helper-validator-option/lib/index.js +21 -0
  524. package/node_modules/@babel/helper-validator-option/lib/index.js.map +1 -0
  525. package/node_modules/@babel/helper-validator-option/lib/validator.js +48 -0
  526. package/node_modules/@babel/helper-validator-option/lib/validator.js.map +1 -0
  527. package/node_modules/@babel/helper-validator-option/package.json +24 -0
  528. package/node_modules/@babel/helper-wrap-function/LICENSE +22 -0
  529. package/node_modules/@babel/helper-wrap-function/README.md +19 -0
  530. package/node_modules/@babel/helper-wrap-function/lib/index.js +123 -0
  531. package/node_modules/@babel/helper-wrap-function/lib/index.js.map +1 -0
  532. package/node_modules/@babel/helper-wrap-function/package.json +29 -0
  533. package/node_modules/@babel/helpers/LICENSE +22 -0
  534. package/node_modules/@babel/helpers/README.md +19 -0
  535. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js +92 -0
  536. package/node_modules/@babel/helpers/lib/helpers/AsyncGenerator.js.map +1 -0
  537. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js +12 -0
  538. package/node_modules/@babel/helpers/lib/helpers/OverloadYield.js.map +1 -0
  539. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js +459 -0
  540. package/node_modules/@babel/helpers/lib/helpers/applyDecs.js.map +1 -0
  541. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js +363 -0
  542. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203.js.map +1 -0
  543. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js +376 -0
  544. package/node_modules/@babel/helpers/lib/helpers/applyDecs2203R.js.map +1 -0
  545. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js +421 -0
  546. package/node_modules/@babel/helpers/lib/helpers/applyDecs2301.js.map +1 -0
  547. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js +235 -0
  548. package/node_modules/@babel/helpers/lib/helpers/applyDecs2305.js.map +1 -0
  549. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js +52 -0
  550. package/node_modules/@babel/helpers/lib/helpers/asyncGeneratorDelegate.js.map +1 -0
  551. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js +70 -0
  552. package/node_modules/@babel/helpers/lib/helpers/asyncIterator.js.map +1 -0
  553. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js +12 -0
  554. package/node_modules/@babel/helpers/lib/helpers/awaitAsyncGenerator.js.map +1 -0
  555. package/node_modules/@babel/helpers/lib/helpers/callSuper.js +15 -0
  556. package/node_modules/@babel/helpers/lib/helpers/callSuper.js.map +1 -0
  557. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js +14 -0
  558. package/node_modules/@babel/helpers/lib/helpers/checkInRHS.js.map +1 -0
  559. package/node_modules/@babel/helpers/lib/helpers/construct.js +20 -0
  560. package/node_modules/@babel/helpers/lib/helpers/construct.js.map +1 -0
  561. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js +16 -0
  562. package/node_modules/@babel/helpers/lib/helpers/defineAccessor.js.map +1 -0
  563. package/node_modules/@babel/helpers/lib/helpers/dispose.js +47 -0
  564. package/node_modules/@babel/helpers/lib/helpers/dispose.js.map +1 -0
  565. package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js +35 -0
  566. package/node_modules/@babel/helpers/lib/helpers/importDeferProxy.js.map +1 -0
  567. package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js +49 -0
  568. package/node_modules/@babel/helpers/lib/helpers/interopRequireWildcard.js.map +1 -0
  569. package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js +16 -0
  570. package/node_modules/@babel/helpers/lib/helpers/isNativeReflectConstruct.js.map +1 -0
  571. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js +41 -0
  572. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimit.js.map +1 -0
  573. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js +18 -0
  574. package/node_modules/@babel/helpers/lib/helpers/iterableToArrayLimitLoose.js.map +1 -0
  575. package/node_modules/@babel/helpers/lib/helpers/jsx.js +47 -0
  576. package/node_modules/@babel/helpers/lib/helpers/jsx.js.map +1 -0
  577. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js +39 -0
  578. package/node_modules/@babel/helpers/lib/helpers/objectSpread2.js.map +1 -0
  579. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js +499 -0
  580. package/node_modules/@babel/helpers/lib/helpers/regeneratorRuntime.js.map +1 -0
  581. package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js +21 -0
  582. package/node_modules/@babel/helpers/lib/helpers/setFunctionName.js.map +1 -0
  583. package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js +18 -0
  584. package/node_modules/@babel/helpers/lib/helpers/toPrimitive.js.map +1 -0
  585. package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js +13 -0
  586. package/node_modules/@babel/helpers/lib/helpers/toPropertyKey.js.map +1 -0
  587. package/node_modules/@babel/helpers/lib/helpers/typeof.js +22 -0
  588. package/node_modules/@babel/helpers/lib/helpers/typeof.js.map +1 -0
  589. package/node_modules/@babel/helpers/lib/helpers/using.js +29 -0
  590. package/node_modules/@babel/helpers/lib/helpers/using.js.map +1 -0
  591. package/node_modules/@babel/helpers/lib/helpers/usingCtx.js +68 -0
  592. package/node_modules/@babel/helpers/lib/helpers/usingCtx.js.map +1 -0
  593. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js +66 -0
  594. package/node_modules/@babel/helpers/lib/helpers/wrapRegExp.js.map +1 -0
  595. package/node_modules/@babel/helpers/lib/helpers-generated.js +49 -0
  596. package/node_modules/@babel/helpers/lib/helpers-generated.js.map +1 -0
  597. package/node_modules/@babel/helpers/lib/helpers.js +1677 -0
  598. package/node_modules/@babel/helpers/lib/helpers.js.map +1 -0
  599. package/node_modules/@babel/helpers/lib/index.js +241 -0
  600. package/node_modules/@babel/helpers/lib/index.js.map +1 -0
  601. package/node_modules/@babel/helpers/package.json +32 -0
  602. package/node_modules/@babel/helpers/scripts/generate-helpers.js +119 -0
  603. package/node_modules/@babel/helpers/scripts/generate-regenerator-runtime.js +63 -0
  604. package/node_modules/@babel/helpers/scripts/package.json +1 -0
  605. package/node_modules/@babel/highlight/LICENSE +22 -0
  606. package/node_modules/@babel/highlight/README.md +19 -0
  607. package/node_modules/@babel/highlight/lib/index.js +105 -0
  608. package/node_modules/@babel/highlight/lib/index.js.map +1 -0
  609. package/node_modules/@babel/highlight/package.json +29 -0
  610. package/node_modules/@babel/parser/CHANGELOG.md +1073 -0
  611. package/node_modules/@babel/parser/LICENSE +19 -0
  612. package/node_modules/@babel/parser/README.md +19 -0
  613. package/node_modules/@babel/parser/bin/babel-parser.js +15 -0
  614. package/node_modules/@babel/parser/index.cjs +5 -0
  615. package/node_modules/@babel/parser/lib/index.js +13980 -0
  616. package/node_modules/@babel/parser/lib/index.js.map +1 -0
  617. package/node_modules/@babel/parser/package.json +46 -0
  618. package/node_modules/@babel/parser/typings/babel-parser.d.ts +251 -0
  619. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/LICENSE +22 -0
  620. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/README.md +19 -0
  621. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js +47 -0
  622. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/lib/index.js.map +1 -0
  623. package/node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/package.json +41 -0
  624. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/LICENSE +22 -0
  625. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/README.md +19 -0
  626. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js +66 -0
  627. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/lib/index.js.map +1 -0
  628. package/node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/package.json +42 -0
  629. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/LICENSE +22 -0
  630. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/README.md +19 -0
  631. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js +172 -0
  632. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/lib/index.js.map +1 -0
  633. package/node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/package.json +41 -0
  634. package/node_modules/@babel/plugin-proposal-private-property-in-object/LICENSE +22 -0
  635. package/node_modules/@babel/plugin-proposal-private-property-in-object/README.md +23 -0
  636. package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js +36 -0
  637. package/node_modules/@babel/plugin-proposal-private-property-in-object/lib/index.js.map +1 -0
  638. package/node_modules/@babel/plugin-proposal-private-property-in-object/package.json +27 -0
  639. package/node_modules/@babel/plugin-syntax-async-generators/LICENSE +22 -0
  640. package/node_modules/@babel/plugin-syntax-async-generators/README.md +19 -0
  641. package/node_modules/@babel/plugin-syntax-async-generators/lib/index.js +22 -0
  642. package/node_modules/@babel/plugin-syntax-async-generators/package.json +23 -0
  643. package/node_modules/@babel/plugin-syntax-class-properties/LICENSE +22 -0
  644. package/node_modules/@babel/plugin-syntax-class-properties/README.md +19 -0
  645. package/node_modules/@babel/plugin-syntax-class-properties/lib/index.js +22 -0
  646. package/node_modules/@babel/plugin-syntax-class-properties/package.json +28 -0
  647. package/node_modules/@babel/plugin-syntax-class-static-block/LICENSE +22 -0
  648. package/node_modules/@babel/plugin-syntax-class-static-block/README.md +19 -0
  649. package/node_modules/@babel/plugin-syntax-class-static-block/lib/index.js +22 -0
  650. package/node_modules/@babel/plugin-syntax-class-static-block/package.json +32 -0
  651. package/node_modules/@babel/plugin-syntax-dynamic-import/LICENSE +22 -0
  652. package/node_modules/@babel/plugin-syntax-dynamic-import/README.md +19 -0
  653. package/node_modules/@babel/plugin-syntax-dynamic-import/lib/index.js +22 -0
  654. package/node_modules/@babel/plugin-syntax-dynamic-import/package.json +23 -0
  655. package/node_modules/@babel/plugin-syntax-export-namespace-from/LICENSE +22 -0
  656. package/node_modules/@babel/plugin-syntax-export-namespace-from/README.md +19 -0
  657. package/node_modules/@babel/plugin-syntax-export-namespace-from/lib/index.js +22 -0
  658. package/node_modules/@babel/plugin-syntax-export-namespace-from/package.json +24 -0
  659. package/node_modules/@babel/plugin-syntax-import-assertions/LICENSE +22 -0
  660. package/node_modules/@babel/plugin-syntax-import-assertions/README.md +19 -0
  661. package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js +18 -0
  662. package/node_modules/@babel/plugin-syntax-import-assertions/lib/index.js.map +1 -0
  663. package/node_modules/@babel/plugin-syntax-import-assertions/package.json +32 -0
  664. package/node_modules/@babel/plugin-syntax-import-attributes/LICENSE +22 -0
  665. package/node_modules/@babel/plugin-syntax-import-attributes/README.md +19 -0
  666. package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js +30 -0
  667. package/node_modules/@babel/plugin-syntax-import-attributes/lib/index.js.map +1 -0
  668. package/node_modules/@babel/plugin-syntax-import-attributes/package.json +36 -0
  669. package/node_modules/@babel/plugin-syntax-import-meta/LICENSE +22 -0
  670. package/node_modules/@babel/plugin-syntax-import-meta/README.md +19 -0
  671. package/node_modules/@babel/plugin-syntax-import-meta/lib/index.js +22 -0
  672. package/node_modules/@babel/plugin-syntax-import-meta/package.json +28 -0
  673. package/node_modules/@babel/plugin-syntax-json-strings/LICENSE +22 -0
  674. package/node_modules/@babel/plugin-syntax-json-strings/README.md +19 -0
  675. package/node_modules/@babel/plugin-syntax-json-strings/lib/index.js +22 -0
  676. package/node_modules/@babel/plugin-syntax-json-strings/package.json +23 -0
  677. package/node_modules/@babel/plugin-syntax-jsx/LICENSE +22 -0
  678. package/node_modules/@babel/plugin-syntax-jsx/README.md +19 -0
  679. package/node_modules/@babel/plugin-syntax-jsx/lib/index.js +23 -0
  680. package/node_modules/@babel/plugin-syntax-jsx/lib/index.js.map +1 -0
  681. package/node_modules/@babel/plugin-syntax-jsx/package.json +33 -0
  682. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/LICENSE +22 -0
  683. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/README.md +19 -0
  684. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/lib/index.js +22 -0
  685. package/node_modules/@babel/plugin-syntax-logical-assignment-operators/package.json +28 -0
  686. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/LICENSE +22 -0
  687. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/README.md +19 -0
  688. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/lib/index.js +22 -0
  689. package/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/package.json +23 -0
  690. package/node_modules/@babel/plugin-syntax-numeric-separator/LICENSE +22 -0
  691. package/node_modules/@babel/plugin-syntax-numeric-separator/README.md +19 -0
  692. package/node_modules/@babel/plugin-syntax-numeric-separator/lib/index.js +22 -0
  693. package/node_modules/@babel/plugin-syntax-numeric-separator/package.json +28 -0
  694. package/node_modules/@babel/plugin-syntax-object-rest-spread/LICENSE +22 -0
  695. package/node_modules/@babel/plugin-syntax-object-rest-spread/README.md +19 -0
  696. package/node_modules/@babel/plugin-syntax-object-rest-spread/lib/index.js +22 -0
  697. package/node_modules/@babel/plugin-syntax-object-rest-spread/package.json +23 -0
  698. package/node_modules/@babel/plugin-syntax-optional-catch-binding/LICENSE +22 -0
  699. package/node_modules/@babel/plugin-syntax-optional-catch-binding/README.md +19 -0
  700. package/node_modules/@babel/plugin-syntax-optional-catch-binding/lib/index.js +22 -0
  701. package/node_modules/@babel/plugin-syntax-optional-catch-binding/package.json +23 -0
  702. package/node_modules/@babel/plugin-syntax-optional-chaining/LICENSE +22 -0
  703. package/node_modules/@babel/plugin-syntax-optional-chaining/README.md +19 -0
  704. package/node_modules/@babel/plugin-syntax-optional-chaining/lib/index.js +22 -0
  705. package/node_modules/@babel/plugin-syntax-optional-chaining/package.json +23 -0
  706. package/node_modules/@babel/plugin-syntax-private-property-in-object/LICENSE +22 -0
  707. package/node_modules/@babel/plugin-syntax-private-property-in-object/README.md +19 -0
  708. package/node_modules/@babel/plugin-syntax-private-property-in-object/lib/index.js +22 -0
  709. package/node_modules/@babel/plugin-syntax-private-property-in-object/package.json +32 -0
  710. package/node_modules/@babel/plugin-syntax-top-level-await/LICENSE +22 -0
  711. package/node_modules/@babel/plugin-syntax-top-level-await/README.md +19 -0
  712. package/node_modules/@babel/plugin-syntax-top-level-await/lib/index.js +22 -0
  713. package/node_modules/@babel/plugin-syntax-top-level-await/package.json +32 -0
  714. package/node_modules/@babel/plugin-syntax-typescript/LICENSE +22 -0
  715. package/node_modules/@babel/plugin-syntax-typescript/README.md +19 -0
  716. package/node_modules/@babel/plugin-syntax-typescript/lib/index.js +55 -0
  717. package/node_modules/@babel/plugin-syntax-typescript/lib/index.js.map +1 -0
  718. package/node_modules/@babel/plugin-syntax-typescript/package.json +35 -0
  719. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/LICENSE +22 -0
  720. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/README.md +19 -0
  721. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/lib/index.js +25 -0
  722. package/node_modules/@babel/plugin-syntax-unicode-sets-regex/package.json +49 -0
  723. package/node_modules/@babel/plugin-transform-arrow-functions/LICENSE +22 -0
  724. package/node_modules/@babel/plugin-transform-arrow-functions/README.md +19 -0
  725. package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js +29 -0
  726. package/node_modules/@babel/plugin-transform-arrow-functions/lib/index.js.map +1 -0
  727. package/node_modules/@babel/plugin-transform-arrow-functions/package.json +36 -0
  728. package/node_modules/@babel/plugin-transform-async-generator-functions/LICENSE +22 -0
  729. package/node_modules/@babel/plugin-transform-async-generator-functions/README.md +19 -0
  730. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js +77 -0
  731. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/for-await.js.map +1 -0
  732. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js +84 -0
  733. package/node_modules/@babel/plugin-transform-async-generator-functions/lib/index.js.map +1 -0
  734. package/node_modules/@babel/plugin-transform-async-generator-functions/package.json +39 -0
  735. package/node_modules/@babel/plugin-transform-async-to-generator/LICENSE +22 -0
  736. package/node_modules/@babel/plugin-transform-async-to-generator/README.md +19 -0
  737. package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js +52 -0
  738. package/node_modules/@babel/plugin-transform-async-to-generator/lib/index.js.map +1 -0
  739. package/node_modules/@babel/plugin-transform-async-to-generator/package.json +36 -0
  740. package/node_modules/@babel/plugin-transform-block-scoped-functions/LICENSE +22 -0
  741. package/node_modules/@babel/plugin-transform-block-scoped-functions/README.md +19 -0
  742. package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js +43 -0
  743. package/node_modules/@babel/plugin-transform-block-scoped-functions/lib/index.js.map +1 -0
  744. package/node_modules/@babel/plugin-transform-block-scoped-functions/package.json +34 -0
  745. package/node_modules/@babel/plugin-transform-block-scoping/LICENSE +22 -0
  746. package/node_modules/@babel/plugin-transform-block-scoping/README.md +19 -0
  747. package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js +100 -0
  748. package/node_modules/@babel/plugin-transform-block-scoping/lib/annex-B_3_3.js.map +1 -0
  749. package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js +184 -0
  750. package/node_modules/@babel/plugin-transform-block-scoping/lib/index.js.map +1 -0
  751. package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js +294 -0
  752. package/node_modules/@babel/plugin-transform-block-scoping/lib/loop.js.map +1 -0
  753. package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js +133 -0
  754. package/node_modules/@babel/plugin-transform-block-scoping/lib/validation.js.map +1 -0
  755. package/node_modules/@babel/plugin-transform-block-scoping/package.json +35 -0
  756. package/node_modules/@babel/plugin-transform-class-properties/LICENSE +22 -0
  757. package/node_modules/@babel/plugin-transform-class-properties/README.md +19 -0
  758. package/node_modules/@babel/plugin-transform-class-properties/lib/index.js +22 -0
  759. package/node_modules/@babel/plugin-transform-class-properties/lib/index.js.map +1 -0
  760. package/node_modules/@babel/plugin-transform-class-properties/package.json +35 -0
  761. package/node_modules/@babel/plugin-transform-class-static-block/LICENSE +22 -0
  762. package/node_modules/@babel/plugin-transform-class-static-block/README.md +19 -0
  763. package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js +62 -0
  764. package/node_modules/@babel/plugin-transform-class-static-block/lib/index.js.map +1 -0
  765. package/node_modules/@babel/plugin-transform-class-static-block/package.json +42 -0
  766. package/node_modules/@babel/plugin-transform-classes/LICENSE +22 -0
  767. package/node_modules/@babel/plugin-transform-classes/README.md +19 -0
  768. package/node_modules/@babel/plugin-transform-classes/lib/index.js +72 -0
  769. package/node_modules/@babel/plugin-transform-classes/lib/index.js.map +1 -0
  770. package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js +73 -0
  771. package/node_modules/@babel/plugin-transform-classes/lib/inline-callSuper-helpers.js.map +1 -0
  772. package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js +511 -0
  773. package/node_modules/@babel/plugin-transform-classes/lib/transformClass.js.map +1 -0
  774. package/node_modules/@babel/plugin-transform-classes/package.json +42 -0
  775. package/node_modules/@babel/plugin-transform-computed-properties/LICENSE +22 -0
  776. package/node_modules/@babel/plugin-transform-computed-properties/README.md +19 -0
  777. package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js +168 -0
  778. package/node_modules/@babel/plugin-transform-computed-properties/lib/index.js.map +1 -0
  779. package/node_modules/@babel/plugin-transform-computed-properties/package.json +35 -0
  780. package/node_modules/@babel/plugin-transform-destructuring/LICENSE +22 -0
  781. package/node_modules/@babel/plugin-transform-destructuring/README.md +19 -0
  782. package/node_modules/@babel/plugin-transform-destructuring/lib/index.js +545 -0
  783. package/node_modules/@babel/plugin-transform-destructuring/lib/index.js.map +1 -0
  784. package/node_modules/@babel/plugin-transform-destructuring/package.json +35 -0
  785. package/node_modules/@babel/plugin-transform-dotall-regex/LICENSE +22 -0
  786. package/node_modules/@babel/plugin-transform-dotall-regex/README.md +19 -0
  787. package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js +17 -0
  788. package/node_modules/@babel/plugin-transform-dotall-regex/lib/index.js.map +1 -0
  789. package/node_modules/@babel/plugin-transform-dotall-regex/package.json +40 -0
  790. package/node_modules/@babel/plugin-transform-duplicate-keys/LICENSE +22 -0
  791. package/node_modules/@babel/plugin-transform-duplicate-keys/README.md +19 -0
  792. package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js +60 -0
  793. package/node_modules/@babel/plugin-transform-duplicate-keys/lib/index.js.map +1 -0
  794. package/node_modules/@babel/plugin-transform-duplicate-keys/package.json +34 -0
  795. package/node_modules/@babel/plugin-transform-dynamic-import/LICENSE +22 -0
  796. package/node_modules/@babel/plugin-transform-dynamic-import/README.md +19 -0
  797. package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js +40 -0
  798. package/node_modules/@babel/plugin-transform-dynamic-import/lib/index.js.map +1 -0
  799. package/node_modules/@babel/plugin-transform-dynamic-import/package.json +34 -0
  800. package/node_modules/@babel/plugin-transform-exponentiation-operator/LICENSE +22 -0
  801. package/node_modules/@babel/plugin-transform-exponentiation-operator/README.md +19 -0
  802. package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js +23 -0
  803. package/node_modules/@babel/plugin-transform-exponentiation-operator/lib/index.js.map +1 -0
  804. package/node_modules/@babel/plugin-transform-exponentiation-operator/package.json +35 -0
  805. package/node_modules/@babel/plugin-transform-export-namespace-from/LICENSE +22 -0
  806. package/node_modules/@babel/plugin-transform-export-namespace-from/README.md +19 -0
  807. package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js +46 -0
  808. package/node_modules/@babel/plugin-transform-export-namespace-from/lib/index.js.map +1 -0
  809. package/node_modules/@babel/plugin-transform-export-namespace-from/package.json +35 -0
  810. package/node_modules/@babel/plugin-transform-for-of/LICENSE +22 -0
  811. package/node_modules/@babel/plugin-transform-for-of/README.md +19 -0
  812. package/node_modules/@babel/plugin-transform-for-of/lib/index.js +194 -0
  813. package/node_modules/@babel/plugin-transform-for-of/lib/index.js.map +1 -0
  814. package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js +153 -0
  815. package/node_modules/@babel/plugin-transform-for-of/lib/no-helper-implementation.js.map +1 -0
  816. package/node_modules/@babel/plugin-transform-for-of/package.json +35 -0
  817. package/node_modules/@babel/plugin-transform-function-name/LICENSE +22 -0
  818. package/node_modules/@babel/plugin-transform-function-name/README.md +19 -0
  819. package/node_modules/@babel/plugin-transform-function-name/lib/index.js +35 -0
  820. package/node_modules/@babel/plugin-transform-function-name/lib/index.js.map +1 -0
  821. package/node_modules/@babel/plugin-transform-function-name/package.json +36 -0
  822. package/node_modules/@babel/plugin-transform-json-strings/LICENSE +22 -0
  823. package/node_modules/@babel/plugin-transform-json-strings/README.md +19 -0
  824. package/node_modules/@babel/plugin-transform-json-strings/lib/index.js +33 -0
  825. package/node_modules/@babel/plugin-transform-json-strings/lib/index.js.map +1 -0
  826. package/node_modules/@babel/plugin-transform-json-strings/package.json +35 -0
  827. package/node_modules/@babel/plugin-transform-literals/LICENSE +22 -0
  828. package/node_modules/@babel/plugin-transform-literals/README.md +19 -0
  829. package/node_modules/@babel/plugin-transform-literals/lib/index.js +31 -0
  830. package/node_modules/@babel/plugin-transform-literals/lib/index.js.map +1 -0
  831. package/node_modules/@babel/plugin-transform-literals/package.json +34 -0
  832. package/node_modules/@babel/plugin-transform-logical-assignment-operators/LICENSE +22 -0
  833. package/node_modules/@babel/plugin-transform-logical-assignment-operators/README.md +19 -0
  834. package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js +55 -0
  835. package/node_modules/@babel/plugin-transform-logical-assignment-operators/lib/index.js.map +1 -0
  836. package/node_modules/@babel/plugin-transform-logical-assignment-operators/package.json +36 -0
  837. package/node_modules/@babel/plugin-transform-member-expression-literals/LICENSE +22 -0
  838. package/node_modules/@babel/plugin-transform-member-expression-literals/README.md +19 -0
  839. package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js +29 -0
  840. package/node_modules/@babel/plugin-transform-member-expression-literals/lib/index.js.map +1 -0
  841. package/node_modules/@babel/plugin-transform-member-expression-literals/package.json +34 -0
  842. package/node_modules/@babel/plugin-transform-modules-amd/LICENSE +22 -0
  843. package/node_modules/@babel/plugin-transform-modules-amd/README.md +19 -0
  844. package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js +144 -0
  845. package/node_modules/@babel/plugin-transform-modules-amd/lib/index.js.map +1 -0
  846. package/node_modules/@babel/plugin-transform-modules-amd/package.json +36 -0
  847. package/node_modules/@babel/plugin-transform-modules-commonjs/LICENSE +22 -0
  848. package/node_modules/@babel/plugin-transform-modules-commonjs/README.md +19 -0
  849. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js +16 -0
  850. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/dynamic-import.js.map +1 -0
  851. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js +37 -0
  852. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/hooks.js.map +1 -0
  853. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js +197 -0
  854. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/index.js.map +1 -0
  855. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js +44 -0
  856. package/node_modules/@babel/plugin-transform-modules-commonjs/lib/lazy.js.map +1 -0
  857. package/node_modules/@babel/plugin-transform-modules-commonjs/package.json +37 -0
  858. package/node_modules/@babel/plugin-transform-modules-systemjs/LICENSE +22 -0
  859. package/node_modules/@babel/plugin-transform-modules-systemjs/README.md +19 -0
  860. package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js +403 -0
  861. package/node_modules/@babel/plugin-transform-modules-systemjs/lib/index.js.map +1 -0
  862. package/node_modules/@babel/plugin-transform-modules-systemjs/package.json +39 -0
  863. package/node_modules/@babel/plugin-transform-modules-umd/LICENSE +22 -0
  864. package/node_modules/@babel/plugin-transform-modules-umd/README.md +19 -0
  865. package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js +156 -0
  866. package/node_modules/@babel/plugin-transform-modules-umd/lib/index.js.map +1 -0
  867. package/node_modules/@babel/plugin-transform-modules-umd/package.json +36 -0
  868. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/LICENSE +22 -0
  869. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/README.md +19 -0
  870. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js +26 -0
  871. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/lib/index.js.map +1 -0
  872. package/node_modules/@babel/plugin-transform-named-capturing-groups-regex/package.json +40 -0
  873. package/node_modules/@babel/plugin-transform-new-target/LICENSE +22 -0
  874. package/node_modules/@babel/plugin-transform-new-target/README.md +19 -0
  875. package/node_modules/@babel/plugin-transform-new-target/lib/index.js +71 -0
  876. package/node_modules/@babel/plugin-transform-new-target/lib/index.js.map +1 -0
  877. package/node_modules/@babel/plugin-transform-new-target/package.json +36 -0
  878. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/LICENSE +22 -0
  879. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/README.md +19 -0
  880. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js +48 -0
  881. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/lib/index.js.map +1 -0
  882. package/node_modules/@babel/plugin-transform-nullish-coalescing-operator/package.json +35 -0
  883. package/node_modules/@babel/plugin-transform-numeric-separator/LICENSE +22 -0
  884. package/node_modules/@babel/plugin-transform-numeric-separator/README.md +19 -0
  885. package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js +31 -0
  886. package/node_modules/@babel/plugin-transform-numeric-separator/lib/index.js.map +1 -0
  887. package/node_modules/@babel/plugin-transform-numeric-separator/package.json +37 -0
  888. package/node_modules/@babel/plugin-transform-object-rest-spread/LICENSE +22 -0
  889. package/node_modules/@babel/plugin-transform-object-rest-spread/README.md +19 -0
  890. package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js +451 -0
  891. package/node_modules/@babel/plugin-transform-object-rest-spread/lib/index.js.map +1 -0
  892. package/node_modules/@babel/plugin-transform-object-rest-spread/package.json +39 -0
  893. package/node_modules/@babel/plugin-transform-object-super/LICENSE +22 -0
  894. package/node_modules/@babel/plugin-transform-object-super/README.md +19 -0
  895. package/node_modules/@babel/plugin-transform-object-super/lib/index.js +67 -0
  896. package/node_modules/@babel/plugin-transform-object-super/lib/index.js.map +1 -0
  897. package/node_modules/@babel/plugin-transform-object-super/package.json +35 -0
  898. package/node_modules/@babel/plugin-transform-optional-catch-binding/LICENSE +22 -0
  899. package/node_modules/@babel/plugin-transform-optional-catch-binding/README.md +19 -0
  900. package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js +25 -0
  901. package/node_modules/@babel/plugin-transform-optional-catch-binding/lib/index.js.map +1 -0
  902. package/node_modules/@babel/plugin-transform-optional-catch-binding/package.json +35 -0
  903. package/node_modules/@babel/plugin-transform-optional-chaining/LICENSE +22 -0
  904. package/node_modules/@babel/plugin-transform-optional-chaining/README.md +19 -0
  905. package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js +240 -0
  906. package/node_modules/@babel/plugin-transform-optional-chaining/lib/index.js.map +1 -0
  907. package/node_modules/@babel/plugin-transform-optional-chaining/package.json +38 -0
  908. package/node_modules/@babel/plugin-transform-parameters/LICENSE +22 -0
  909. package/node_modules/@babel/plugin-transform-parameters/README.md +19 -0
  910. package/node_modules/@babel/plugin-transform-parameters/lib/index.js +42 -0
  911. package/node_modules/@babel/plugin-transform-parameters/lib/index.js.map +1 -0
  912. package/node_modules/@babel/plugin-transform-parameters/lib/params.js +143 -0
  913. package/node_modules/@babel/plugin-transform-parameters/lib/params.js.map +1 -0
  914. package/node_modules/@babel/plugin-transform-parameters/lib/rest.js +284 -0
  915. package/node_modules/@babel/plugin-transform-parameters/lib/rest.js.map +1 -0
  916. package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js +64 -0
  917. package/node_modules/@babel/plugin-transform-parameters/lib/shadow-utils.js.map +1 -0
  918. package/node_modules/@babel/plugin-transform-parameters/package.json +34 -0
  919. package/node_modules/@babel/plugin-transform-private-methods/LICENSE +22 -0
  920. package/node_modules/@babel/plugin-transform-private-methods/README.md +19 -0
  921. package/node_modules/@babel/plugin-transform-private-methods/lib/index.js +22 -0
  922. package/node_modules/@babel/plugin-transform-private-methods/lib/index.js.map +1 -0
  923. package/node_modules/@babel/plugin-transform-private-methods/package.json +35 -0
  924. package/node_modules/@babel/plugin-transform-private-property-in-object/LICENSE +22 -0
  925. package/node_modules/@babel/plugin-transform-private-property-in-object/README.md +19 -0
  926. package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js +126 -0
  927. package/node_modules/@babel/plugin-transform-private-property-in-object/lib/index.js.map +1 -0
  928. package/node_modules/@babel/plugin-transform-private-property-in-object/package.json +37 -0
  929. package/node_modules/@babel/plugin-transform-property-literals/LICENSE +22 -0
  930. package/node_modules/@babel/plugin-transform-property-literals/README.md +19 -0
  931. package/node_modules/@babel/plugin-transform-property-literals/lib/index.js +28 -0
  932. package/node_modules/@babel/plugin-transform-property-literals/lib/index.js.map +1 -0
  933. package/node_modules/@babel/plugin-transform-property-literals/package.json +34 -0
  934. package/node_modules/@babel/plugin-transform-regenerator/LICENSE +22 -0
  935. package/node_modules/@babel/plugin-transform-regenerator/README.md +19 -0
  936. package/node_modules/@babel/plugin-transform-regenerator/lib/index.js +43 -0
  937. package/node_modules/@babel/plugin-transform-regenerator/lib/index.js.map +1 -0
  938. package/node_modules/@babel/plugin-transform-regenerator/package.json +32 -0
  939. package/node_modules/@babel/plugin-transform-reserved-words/LICENSE +22 -0
  940. package/node_modules/@babel/plugin-transform-reserved-words/README.md +19 -0
  941. package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js +23 -0
  942. package/node_modules/@babel/plugin-transform-reserved-words/lib/index.js.map +1 -0
  943. package/node_modules/@babel/plugin-transform-reserved-words/package.json +34 -0
  944. package/node_modules/@babel/plugin-transform-shorthand-properties/LICENSE +22 -0
  945. package/node_modules/@babel/plugin-transform-shorthand-properties/README.md +19 -0
  946. package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js +50 -0
  947. package/node_modules/@babel/plugin-transform-shorthand-properties/lib/index.js.map +1 -0
  948. package/node_modules/@babel/plugin-transform-shorthand-properties/package.json +34 -0
  949. package/node_modules/@babel/plugin-transform-spread/LICENSE +22 -0
  950. package/node_modules/@babel/plugin-transform-spread/README.md +19 -0
  951. package/node_modules/@babel/plugin-transform-spread/lib/index.js +144 -0
  952. package/node_modules/@babel/plugin-transform-spread/lib/index.js.map +1 -0
  953. package/node_modules/@babel/plugin-transform-spread/package.json +35 -0
  954. package/node_modules/@babel/plugin-transform-sticky-regex/LICENSE +22 -0
  955. package/node_modules/@babel/plugin-transform-sticky-regex/README.md +19 -0
  956. package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js +25 -0
  957. package/node_modules/@babel/plugin-transform-sticky-regex/lib/index.js.map +1 -0
  958. package/node_modules/@babel/plugin-transform-sticky-regex/package.json +34 -0
  959. package/node_modules/@babel/plugin-transform-template-literals/LICENSE +22 -0
  960. package/node_modules/@babel/plugin-transform-template-literals/README.md +19 -0
  961. package/node_modules/@babel/plugin-transform-template-literals/lib/index.js +108 -0
  962. package/node_modules/@babel/plugin-transform-template-literals/lib/index.js.map +1 -0
  963. package/node_modules/@babel/plugin-transform-template-literals/package.json +34 -0
  964. package/node_modules/@babel/plugin-transform-typeof-symbol/LICENSE +22 -0
  965. package/node_modules/@babel/plugin-transform-typeof-symbol/README.md +19 -0
  966. package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js +61 -0
  967. package/node_modules/@babel/plugin-transform-typeof-symbol/lib/index.js.map +1 -0
  968. package/node_modules/@babel/plugin-transform-typeof-symbol/package.json +37 -0
  969. package/node_modules/@babel/plugin-transform-typescript/LICENSE +22 -0
  970. package/node_modules/@babel/plugin-transform-typescript/README.md +19 -0
  971. package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js +58 -0
  972. package/node_modules/@babel/plugin-transform-typescript/lib/const-enum.js.map +1 -0
  973. package/node_modules/@babel/plugin-transform-typescript/lib/enum.js +302 -0
  974. package/node_modules/@babel/plugin-transform-typescript/lib/enum.js.map +1 -0
  975. package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js +22 -0
  976. package/node_modules/@babel/plugin-transform-typescript/lib/global-types.js.map +1 -0
  977. package/node_modules/@babel/plugin-transform-typescript/lib/index.js +484 -0
  978. package/node_modules/@babel/plugin-transform-typescript/lib/index.js.map +1 -0
  979. package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js +165 -0
  980. package/node_modules/@babel/plugin-transform-typescript/lib/namespace.js.map +1 -0
  981. package/node_modules/@babel/plugin-transform-typescript/package.json +40 -0
  982. package/node_modules/@babel/plugin-transform-unicode-escapes/LICENSE +22 -0
  983. package/node_modules/@babel/plugin-transform-unicode-escapes/README.md +19 -0
  984. package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js +118 -0
  985. package/node_modules/@babel/plugin-transform-unicode-escapes/lib/index.js.map +1 -0
  986. package/node_modules/@babel/plugin-transform-unicode-escapes/package.json +34 -0
  987. package/node_modules/@babel/plugin-transform-unicode-property-regex/LICENSE +22 -0
  988. package/node_modules/@babel/plugin-transform-unicode-property-regex/README.md +19 -0
  989. package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js +26 -0
  990. package/node_modules/@babel/plugin-transform-unicode-property-regex/lib/index.js.map +1 -0
  991. package/node_modules/@babel/plugin-transform-unicode-property-regex/package.json +41 -0
  992. package/node_modules/@babel/plugin-transform-unicode-regex/LICENSE +22 -0
  993. package/node_modules/@babel/plugin-transform-unicode-regex/README.md +19 -0
  994. package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js +17 -0
  995. package/node_modules/@babel/plugin-transform-unicode-regex/lib/index.js.map +1 -0
  996. package/node_modules/@babel/plugin-transform-unicode-regex/package.json +35 -0
  997. package/node_modules/@babel/plugin-transform-unicode-sets-regex/LICENSE +22 -0
  998. package/node_modules/@babel/plugin-transform-unicode-sets-regex/README.md +19 -0
  999. package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js +20 -0
  1000. package/node_modules/@babel/plugin-transform-unicode-sets-regex/lib/index.js.map +1 -0
  1001. package/node_modules/@babel/plugin-transform-unicode-sets-regex/package.json +49 -0
  1002. package/node_modules/@babel/preset-env/LICENSE +22 -0
  1003. package/node_modules/@babel/preset-env/README.md +19 -0
  1004. package/node_modules/@babel/preset-env/data/built-in-modules.js +3 -0
  1005. package/node_modules/@babel/preset-env/data/built-in-modules.json.js +3 -0
  1006. package/node_modules/@babel/preset-env/data/built-ins.js +4 -0
  1007. package/node_modules/@babel/preset-env/data/built-ins.json.js +4 -0
  1008. package/node_modules/@babel/preset-env/data/core-js-compat.js +1 -0
  1009. package/node_modules/@babel/preset-env/data/corejs2-built-ins.js +3 -0
  1010. package/node_modules/@babel/preset-env/data/corejs2-built-ins.json.js +3 -0
  1011. package/node_modules/@babel/preset-env/data/package.json +1 -0
  1012. package/node_modules/@babel/preset-env/data/plugins.js +3 -0
  1013. package/node_modules/@babel/preset-env/data/plugins.json.js +3 -0
  1014. package/node_modules/@babel/preset-env/data/shipped-proposals.js +2 -0
  1015. package/node_modules/@babel/preset-env/data/unreleased-labels.js +3 -0
  1016. package/node_modules/@babel/preset-env/lib/available-plugins.js +159 -0
  1017. package/node_modules/@babel/preset-env/lib/available-plugins.js.map +1 -0
  1018. package/node_modules/@babel/preset-env/lib/debug.js +37 -0
  1019. package/node_modules/@babel/preset-env/lib/debug.js.map +1 -0
  1020. package/node_modules/@babel/preset-env/lib/filter-items.js +31 -0
  1021. package/node_modules/@babel/preset-env/lib/filter-items.js.map +1 -0
  1022. package/node_modules/@babel/preset-env/lib/index.js +344 -0
  1023. package/node_modules/@babel/preset-env/lib/index.js.map +1 -0
  1024. package/node_modules/@babel/preset-env/lib/module-transformations.js +15 -0
  1025. package/node_modules/@babel/preset-env/lib/module-transformations.js.map +1 -0
  1026. package/node_modules/@babel/preset-env/lib/normalize-options.js +153 -0
  1027. package/node_modules/@babel/preset-env/lib/normalize-options.js.map +1 -0
  1028. package/node_modules/@babel/preset-env/lib/options.js +43 -0
  1029. package/node_modules/@babel/preset-env/lib/options.js.map +1 -0
  1030. package/node_modules/@babel/preset-env/lib/plugins-compat-data.js +26 -0
  1031. package/node_modules/@babel/preset-env/lib/plugins-compat-data.js.map +1 -0
  1032. package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs +18 -0
  1033. package/node_modules/@babel/preset-env/lib/polyfills/babel-7-plugins.cjs.map +1 -0
  1034. package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs +69 -0
  1035. package/node_modules/@babel/preset-env/lib/polyfills/babel-polyfill.cjs.map +1 -0
  1036. package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs +44 -0
  1037. package/node_modules/@babel/preset-env/lib/polyfills/regenerator.cjs.map +1 -0
  1038. package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs +22 -0
  1039. package/node_modules/@babel/preset-env/lib/polyfills/utils.cjs.map +1 -0
  1040. package/node_modules/@babel/preset-env/lib/shipped-proposals.js +29 -0
  1041. package/node_modules/@babel/preset-env/lib/shipped-proposals.js.map +1 -0
  1042. package/node_modules/@babel/preset-env/lib/targets-parser.js +20 -0
  1043. package/node_modules/@babel/preset-env/lib/targets-parser.js.map +1 -0
  1044. package/node_modules/@babel/preset-env/package.json +113 -0
  1045. package/node_modules/@babel/preset-modules/LICENSE +21 -0
  1046. package/node_modules/@babel/preset-modules/README.md +171 -0
  1047. package/node_modules/@babel/preset-modules/lib/index.js +27 -0
  1048. package/node_modules/@babel/preset-modules/lib/plugins/transform-async-arrows-in-class/index.js +45 -0
  1049. package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-default-parameters/index.js +36 -0
  1050. package/node_modules/@babel/preset-modules/lib/plugins/transform-edge-function-name/index.js +42 -0
  1051. package/node_modules/@babel/preset-modules/lib/plugins/transform-jsx-spread/index.js +115 -0
  1052. package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-block-shadowing/index.js +47 -0
  1053. package/node_modules/@babel/preset-modules/lib/plugins/transform-safari-for-shadowing/index.js +42 -0
  1054. package/node_modules/@babel/preset-modules/lib/plugins/transform-tagged-template-caching/index.js +75 -0
  1055. package/node_modules/@babel/preset-modules/package.json +104 -0
  1056. package/node_modules/@babel/preset-typescript/LICENSE +22 -0
  1057. package/node_modules/@babel/preset-typescript/README.md +19 -0
  1058. package/node_modules/@babel/preset-typescript/lib/index.js +146 -0
  1059. package/node_modules/@babel/preset-typescript/lib/index.js.map +1 -0
  1060. package/node_modules/@babel/preset-typescript/package.json +40 -0
  1061. package/node_modules/@babel/regjsgen/LICENSE-MIT.txt +22 -0
  1062. package/node_modules/@babel/regjsgen/README.md +44 -0
  1063. package/node_modules/@babel/regjsgen/package.json +43 -0
  1064. package/node_modules/@babel/regjsgen/regjsgen.js +425 -0
  1065. package/node_modules/@babel/runtime/LICENSE +22 -0
  1066. package/node_modules/@babel/runtime/README.md +19 -0
  1067. package/node_modules/@babel/runtime/helpers/AsyncGenerator.js +64 -0
  1068. package/node_modules/@babel/runtime/helpers/AwaitValue.js +4 -0
  1069. package/node_modules/@babel/runtime/helpers/OverloadYield.js +4 -0
  1070. package/node_modules/@babel/runtime/helpers/applyDecoratedDescriptor.js +24 -0
  1071. package/node_modules/@babel/runtime/helpers/applyDecs.js +236 -0
  1072. package/node_modules/@babel/runtime/helpers/applyDecs2203.js +184 -0
  1073. package/node_modules/@babel/runtime/helpers/applyDecs2203R.js +191 -0
  1074. package/node_modules/@babel/runtime/helpers/applyDecs2301.js +222 -0
  1075. package/node_modules/@babel/runtime/helpers/applyDecs2305.js +133 -0
  1076. package/node_modules/@babel/runtime/helpers/arrayLikeToArray.js +6 -0
  1077. package/node_modules/@babel/runtime/helpers/arrayWithHoles.js +4 -0
  1078. package/node_modules/@babel/runtime/helpers/arrayWithoutHoles.js +5 -0
  1079. package/node_modules/@babel/runtime/helpers/assertThisInitialized.js +7 -0
  1080. package/node_modules/@babel/runtime/helpers/asyncGeneratorDelegate.js +24 -0
  1081. package/node_modules/@babel/runtime/helpers/asyncIterator.js +45 -0
  1082. package/node_modules/@babel/runtime/helpers/asyncToGenerator.js +31 -0
  1083. package/node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js +5 -0
  1084. package/node_modules/@babel/runtime/helpers/callSuper.js +7 -0
  1085. package/node_modules/@babel/runtime/helpers/checkInRHS.js +6 -0
  1086. package/node_modules/@babel/runtime/helpers/checkPrivateRedeclaration.js +6 -0
  1087. package/node_modules/@babel/runtime/helpers/classApplyDescriptorDestructureSet.js +18 -0
  1088. package/node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js +7 -0
  1089. package/node_modules/@babel/runtime/helpers/classApplyDescriptorSet.js +11 -0
  1090. package/node_modules/@babel/runtime/helpers/classCallCheck.js +6 -0
  1091. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticAccess.js +6 -0
  1092. package/node_modules/@babel/runtime/helpers/classCheckPrivateStaticFieldDescriptor.js +6 -0
  1093. package/node_modules/@babel/runtime/helpers/classExtractFieldDescriptor.js +7 -0
  1094. package/node_modules/@babel/runtime/helpers/classNameTDZError.js +4 -0
  1095. package/node_modules/@babel/runtime/helpers/classPrivateFieldDestructureSet.js +7 -0
  1096. package/node_modules/@babel/runtime/helpers/classPrivateFieldGet.js +7 -0
  1097. package/node_modules/@babel/runtime/helpers/classPrivateFieldInitSpec.js +6 -0
  1098. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseBase.js +7 -0
  1099. package/node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js +5 -0
  1100. package/node_modules/@babel/runtime/helpers/classPrivateFieldSet.js +8 -0
  1101. package/node_modules/@babel/runtime/helpers/classPrivateMethodGet.js +7 -0
  1102. package/node_modules/@babel/runtime/helpers/classPrivateMethodInitSpec.js +6 -0
  1103. package/node_modules/@babel/runtime/helpers/classPrivateMethodSet.js +4 -0
  1104. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldDestructureSet.js +9 -0
  1105. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecGet.js +9 -0
  1106. package/node_modules/@babel/runtime/helpers/classStaticPrivateFieldSpecSet.js +10 -0
  1107. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodGet.js +6 -0
  1108. package/node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js +4 -0
  1109. package/node_modules/@babel/runtime/helpers/construct.js +10 -0
  1110. package/node_modules/@babel/runtime/helpers/createClass.js +19 -0
  1111. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelper.js +53 -0
  1112. package/node_modules/@babel/runtime/helpers/createForOfIteratorHelperLoose.js +20 -0
  1113. package/node_modules/@babel/runtime/helpers/createSuper.js +18 -0
  1114. package/node_modules/@babel/runtime/helpers/decorate.js +343 -0
  1115. package/node_modules/@babel/runtime/helpers/defaults.js +12 -0
  1116. package/node_modules/@babel/runtime/helpers/defineAccessor.js +8 -0
  1117. package/node_modules/@babel/runtime/helpers/defineEnumerableProperties.js +20 -0
  1118. package/node_modules/@babel/runtime/helpers/defineProperty.js +16 -0
  1119. package/node_modules/@babel/runtime/helpers/dispose.js +28 -0
  1120. package/node_modules/@babel/runtime/helpers/esm/AsyncGenerator.js +63 -0
  1121. package/node_modules/@babel/runtime/helpers/esm/AwaitValue.js +3 -0
  1122. package/node_modules/@babel/runtime/helpers/esm/OverloadYield.js +3 -0
  1123. package/node_modules/@babel/runtime/helpers/esm/applyDecoratedDescriptor.js +23 -0
  1124. package/node_modules/@babel/runtime/helpers/esm/applyDecs.js +235 -0
  1125. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203.js +183 -0
  1126. package/node_modules/@babel/runtime/helpers/esm/applyDecs2203R.js +190 -0
  1127. package/node_modules/@babel/runtime/helpers/esm/applyDecs2301.js +221 -0
  1128. package/node_modules/@babel/runtime/helpers/esm/applyDecs2305.js +132 -0
  1129. package/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js +5 -0
  1130. package/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js +3 -0
  1131. package/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js +4 -0
  1132. package/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js +6 -0
  1133. package/node_modules/@babel/runtime/helpers/esm/asyncGeneratorDelegate.js +23 -0
  1134. package/node_modules/@babel/runtime/helpers/esm/asyncIterator.js +44 -0
  1135. package/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.js +30 -0
  1136. package/node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js +4 -0
  1137. package/node_modules/@babel/runtime/helpers/esm/callSuper.js +6 -0
  1138. package/node_modules/@babel/runtime/helpers/esm/checkInRHS.js +5 -0
  1139. package/node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js +5 -0
  1140. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorDestructureSet.js +17 -0
  1141. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js +6 -0
  1142. package/node_modules/@babel/runtime/helpers/esm/classApplyDescriptorSet.js +10 -0
  1143. package/node_modules/@babel/runtime/helpers/esm/classCallCheck.js +5 -0
  1144. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js +5 -0
  1145. package/node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js +5 -0
  1146. package/node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js +6 -0
  1147. package/node_modules/@babel/runtime/helpers/esm/classNameTDZError.js +3 -0
  1148. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldDestructureSet.js +6 -0
  1149. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldGet.js +6 -0
  1150. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js +5 -0
  1151. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js +6 -0
  1152. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js +4 -0
  1153. package/node_modules/@babel/runtime/helpers/esm/classPrivateFieldSet.js +7 -0
  1154. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js +6 -0
  1155. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js +5 -0
  1156. package/node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js +3 -0
  1157. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldDestructureSet.js +8 -0
  1158. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecGet.js +8 -0
  1159. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateFieldSpecSet.js +9 -0
  1160. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js +5 -0
  1161. package/node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js +3 -0
  1162. package/node_modules/@babel/runtime/helpers/esm/construct.js +9 -0
  1163. package/node_modules/@babel/runtime/helpers/esm/createClass.js +18 -0
  1164. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelper.js +52 -0
  1165. package/node_modules/@babel/runtime/helpers/esm/createForOfIteratorHelperLoose.js +19 -0
  1166. package/node_modules/@babel/runtime/helpers/esm/createSuper.js +17 -0
  1167. package/node_modules/@babel/runtime/helpers/esm/decorate.js +342 -0
  1168. package/node_modules/@babel/runtime/helpers/esm/defaults.js +11 -0
  1169. package/node_modules/@babel/runtime/helpers/esm/defineAccessor.js +7 -0
  1170. package/node_modules/@babel/runtime/helpers/esm/defineEnumerableProperties.js +19 -0
  1171. package/node_modules/@babel/runtime/helpers/esm/defineProperty.js +15 -0
  1172. package/node_modules/@babel/runtime/helpers/esm/dispose.js +27 -0
  1173. package/node_modules/@babel/runtime/helpers/esm/extends.js +14 -0
  1174. package/node_modules/@babel/runtime/helpers/esm/get.js +17 -0
  1175. package/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js +6 -0
  1176. package/node_modules/@babel/runtime/helpers/esm/identity.js +3 -0
  1177. package/node_modules/@babel/runtime/helpers/esm/importDeferProxy.js +26 -0
  1178. package/node_modules/@babel/runtime/helpers/esm/inherits.js +17 -0
  1179. package/node_modules/@babel/runtime/helpers/esm/inheritsLoose.js +6 -0
  1180. package/node_modules/@babel/runtime/helpers/esm/initializerDefineProperty.js +9 -0
  1181. package/node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js +3 -0
  1182. package/node_modules/@babel/runtime/helpers/esm/instanceof.js +7 -0
  1183. package/node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js +5 -0
  1184. package/node_modules/@babel/runtime/helpers/esm/interopRequireWildcard.js +26 -0
  1185. package/node_modules/@babel/runtime/helpers/esm/isNativeFunction.js +7 -0
  1186. package/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.js +8 -0
  1187. package/node_modules/@babel/runtime/helpers/esm/iterableToArray.js +3 -0
  1188. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.js +27 -0
  1189. package/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimitLoose.js +9 -0
  1190. package/node_modules/@babel/runtime/helpers/esm/jsx.js +21 -0
  1191. package/node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js +8 -0
  1192. package/node_modules/@babel/runtime/helpers/esm/newArrowCheck.js +5 -0
  1193. package/node_modules/@babel/runtime/helpers/esm/nonIterableRest.js +3 -0
  1194. package/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js +3 -0
  1195. package/node_modules/@babel/runtime/helpers/esm/nullishReceiverError.js +3 -0
  1196. package/node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js +3 -0
  1197. package/node_modules/@babel/runtime/helpers/esm/objectSpread.js +16 -0
  1198. package/node_modules/@babel/runtime/helpers/esm/objectSpread2.js +22 -0
  1199. package/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.js +16 -0
  1200. package/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.js +12 -0
  1201. package/node_modules/@babel/runtime/helpers/esm/package.json +3 -0
  1202. package/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.js +10 -0
  1203. package/node_modules/@babel/runtime/helpers/esm/readOnlyError.js +3 -0
  1204. package/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.js +303 -0
  1205. package/node_modules/@babel/runtime/helpers/esm/set.js +40 -0
  1206. package/node_modules/@babel/runtime/helpers/esm/setFunctionName.js +11 -0
  1207. package/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js +7 -0
  1208. package/node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js +7 -0
  1209. package/node_modules/@babel/runtime/helpers/esm/slicedToArray.js +7 -0
  1210. package/node_modules/@babel/runtime/helpers/esm/slicedToArrayLoose.js +7 -0
  1211. package/node_modules/@babel/runtime/helpers/esm/superPropBase.js +8 -0
  1212. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js +10 -0
  1213. package/node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js +7 -0
  1214. package/node_modules/@babel/runtime/helpers/esm/tdz.js +3 -0
  1215. package/node_modules/@babel/runtime/helpers/esm/temporalRef.js +5 -0
  1216. package/node_modules/@babel/runtime/helpers/esm/temporalUndefined.js +1 -0
  1217. package/node_modules/@babel/runtime/helpers/esm/toArray.js +7 -0
  1218. package/node_modules/@babel/runtime/helpers/esm/toConsumableArray.js +7 -0
  1219. package/node_modules/@babel/runtime/helpers/esm/toPrimitive.js +11 -0
  1220. package/node_modules/@babel/runtime/helpers/esm/toPropertyKey.js +6 -0
  1221. package/node_modules/@babel/runtime/helpers/esm/typeof.js +9 -0
  1222. package/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.js +9 -0
  1223. package/node_modules/@babel/runtime/helpers/esm/using.js +11 -0
  1224. package/node_modules/@babel/runtime/helpers/esm/usingCtx.js +43 -0
  1225. package/node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js +6 -0
  1226. package/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.js +30 -0
  1227. package/node_modules/@babel/runtime/helpers/esm/wrapRegExp.js +50 -0
  1228. package/node_modules/@babel/runtime/helpers/esm/writeOnlyError.js +3 -0
  1229. package/node_modules/@babel/runtime/helpers/extends.js +15 -0
  1230. package/node_modules/@babel/runtime/helpers/get.js +18 -0
  1231. package/node_modules/@babel/runtime/helpers/getPrototypeOf.js +7 -0
  1232. package/node_modules/@babel/runtime/helpers/identity.js +4 -0
  1233. package/node_modules/@babel/runtime/helpers/importDeferProxy.js +27 -0
  1234. package/node_modules/@babel/runtime/helpers/inherits.js +18 -0
  1235. package/node_modules/@babel/runtime/helpers/inheritsLoose.js +7 -0
  1236. package/node_modules/@babel/runtime/helpers/initializerDefineProperty.js +10 -0
  1237. package/node_modules/@babel/runtime/helpers/initializerWarningHelper.js +4 -0
  1238. package/node_modules/@babel/runtime/helpers/instanceof.js +8 -0
  1239. package/node_modules/@babel/runtime/helpers/interopRequireDefault.js +6 -0
  1240. package/node_modules/@babel/runtime/helpers/interopRequireWildcard.js +27 -0
  1241. package/node_modules/@babel/runtime/helpers/isNativeFunction.js +8 -0
  1242. package/node_modules/@babel/runtime/helpers/isNativeReflectConstruct.js +9 -0
  1243. package/node_modules/@babel/runtime/helpers/iterableToArray.js +4 -0
  1244. package/node_modules/@babel/runtime/helpers/iterableToArrayLimit.js +28 -0
  1245. package/node_modules/@babel/runtime/helpers/iterableToArrayLimitLoose.js +10 -0
  1246. package/node_modules/@babel/runtime/helpers/jsx.js +22 -0
  1247. package/node_modules/@babel/runtime/helpers/maybeArrayLike.js +9 -0
  1248. package/node_modules/@babel/runtime/helpers/newArrowCheck.js +6 -0
  1249. package/node_modules/@babel/runtime/helpers/nonIterableRest.js +4 -0
  1250. package/node_modules/@babel/runtime/helpers/nonIterableSpread.js +4 -0
  1251. package/node_modules/@babel/runtime/helpers/nullishReceiverError.js +4 -0
  1252. package/node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js +4 -0
  1253. package/node_modules/@babel/runtime/helpers/objectSpread.js +17 -0
  1254. package/node_modules/@babel/runtime/helpers/objectSpread2.js +23 -0
  1255. package/node_modules/@babel/runtime/helpers/objectWithoutProperties.js +17 -0
  1256. package/node_modules/@babel/runtime/helpers/objectWithoutPropertiesLoose.js +13 -0
  1257. package/node_modules/@babel/runtime/helpers/possibleConstructorReturn.js +11 -0
  1258. package/node_modules/@babel/runtime/helpers/readOnlyError.js +4 -0
  1259. package/node_modules/@babel/runtime/helpers/regeneratorRuntime.js +304 -0
  1260. package/node_modules/@babel/runtime/helpers/set.js +41 -0
  1261. package/node_modules/@babel/runtime/helpers/setFunctionName.js +12 -0
  1262. package/node_modules/@babel/runtime/helpers/setPrototypeOf.js +8 -0
  1263. package/node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js +8 -0
  1264. package/node_modules/@babel/runtime/helpers/slicedToArray.js +8 -0
  1265. package/node_modules/@babel/runtime/helpers/slicedToArrayLoose.js +8 -0
  1266. package/node_modules/@babel/runtime/helpers/superPropBase.js +9 -0
  1267. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteral.js +11 -0
  1268. package/node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js +8 -0
  1269. package/node_modules/@babel/runtime/helpers/tdz.js +4 -0
  1270. package/node_modules/@babel/runtime/helpers/temporalRef.js +6 -0
  1271. package/node_modules/@babel/runtime/helpers/temporalUndefined.js +2 -0
  1272. package/node_modules/@babel/runtime/helpers/toArray.js +8 -0
  1273. package/node_modules/@babel/runtime/helpers/toConsumableArray.js +8 -0
  1274. package/node_modules/@babel/runtime/helpers/toPrimitive.js +12 -0
  1275. package/node_modules/@babel/runtime/helpers/toPropertyKey.js +7 -0
  1276. package/node_modules/@babel/runtime/helpers/typeof.js +10 -0
  1277. package/node_modules/@babel/runtime/helpers/unsupportedIterableToArray.js +10 -0
  1278. package/node_modules/@babel/runtime/helpers/using.js +12 -0
  1279. package/node_modules/@babel/runtime/helpers/usingCtx.js +44 -0
  1280. package/node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js +7 -0
  1281. package/node_modules/@babel/runtime/helpers/wrapNativeSuper.js +31 -0
  1282. package/node_modules/@babel/runtime/helpers/wrapRegExp.js +51 -0
  1283. package/node_modules/@babel/runtime/helpers/writeOnlyError.js +4 -0
  1284. package/node_modules/@babel/runtime/package.json +1002 -0
  1285. package/node_modules/@babel/runtime/regenerator/index.js +15 -0
  1286. package/node_modules/@babel/template/LICENSE +22 -0
  1287. package/node_modules/@babel/template/README.md +19 -0
  1288. package/node_modules/@babel/template/lib/builder.js +69 -0
  1289. package/node_modules/@babel/template/lib/builder.js.map +1 -0
  1290. package/node_modules/@babel/template/lib/formatters.js +61 -0
  1291. package/node_modules/@babel/template/lib/formatters.js.map +1 -0
  1292. package/node_modules/@babel/template/lib/index.js +23 -0
  1293. package/node_modules/@babel/template/lib/index.js.map +1 -0
  1294. package/node_modules/@babel/template/lib/literal.js +69 -0
  1295. package/node_modules/@babel/template/lib/literal.js.map +1 -0
  1296. package/node_modules/@babel/template/lib/options.js +73 -0
  1297. package/node_modules/@babel/template/lib/options.js.map +1 -0
  1298. package/node_modules/@babel/template/lib/parse.js +160 -0
  1299. package/node_modules/@babel/template/lib/parse.js.map +1 -0
  1300. package/node_modules/@babel/template/lib/populate.js +122 -0
  1301. package/node_modules/@babel/template/lib/populate.js.map +1 -0
  1302. package/node_modules/@babel/template/lib/string.js +20 -0
  1303. package/node_modules/@babel/template/lib/string.js.map +1 -0
  1304. package/node_modules/@babel/template/package.json +27 -0
  1305. package/node_modules/@babel/traverse/LICENSE +22 -0
  1306. package/node_modules/@babel/traverse/README.md +19 -0
  1307. package/node_modules/@babel/traverse/lib/cache.js +44 -0
  1308. package/node_modules/@babel/traverse/lib/cache.js.map +1 -0
  1309. package/node_modules/@babel/traverse/lib/context.js +115 -0
  1310. package/node_modules/@babel/traverse/lib/context.js.map +1 -0
  1311. package/node_modules/@babel/traverse/lib/hub.js +19 -0
  1312. package/node_modules/@babel/traverse/lib/hub.js.map +1 -0
  1313. package/node_modules/@babel/traverse/lib/index.js +94 -0
  1314. package/node_modules/@babel/traverse/lib/index.js.map +1 -0
  1315. package/node_modules/@babel/traverse/lib/path/ancestry.js +141 -0
  1316. package/node_modules/@babel/traverse/lib/path/ancestry.js.map +1 -0
  1317. package/node_modules/@babel/traverse/lib/path/comments.js +52 -0
  1318. package/node_modules/@babel/traverse/lib/path/comments.js.map +1 -0
  1319. package/node_modules/@babel/traverse/lib/path/context.js +222 -0
  1320. package/node_modules/@babel/traverse/lib/path/context.js.map +1 -0
  1321. package/node_modules/@babel/traverse/lib/path/conversion.js +468 -0
  1322. package/node_modules/@babel/traverse/lib/path/conversion.js.map +1 -0
  1323. package/node_modules/@babel/traverse/lib/path/evaluation.js +347 -0
  1324. package/node_modules/@babel/traverse/lib/path/evaluation.js.map +1 -0
  1325. package/node_modules/@babel/traverse/lib/path/family.js +336 -0
  1326. package/node_modules/@babel/traverse/lib/path/family.js.map +1 -0
  1327. package/node_modules/@babel/traverse/lib/path/index.js +189 -0
  1328. package/node_modules/@babel/traverse/lib/path/index.js.map +1 -0
  1329. package/node_modules/@babel/traverse/lib/path/inference/index.js +149 -0
  1330. package/node_modules/@babel/traverse/lib/path/inference/index.js.map +1 -0
  1331. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js +151 -0
  1332. package/node_modules/@babel/traverse/lib/path/inference/inferer-reference.js.map +1 -0
  1333. package/node_modules/@babel/traverse/lib/path/inference/inferers.js +207 -0
  1334. package/node_modules/@babel/traverse/lib/path/inference/inferers.js.map +1 -0
  1335. package/node_modules/@babel/traverse/lib/path/inference/util.js +30 -0
  1336. package/node_modules/@babel/traverse/lib/path/inference/util.js.map +1 -0
  1337. package/node_modules/@babel/traverse/lib/path/introspection.js +384 -0
  1338. package/node_modules/@babel/traverse/lib/path/introspection.js.map +1 -0
  1339. package/node_modules/@babel/traverse/lib/path/lib/hoister.js +171 -0
  1340. package/node_modules/@babel/traverse/lib/path/lib/hoister.js.map +1 -0
  1341. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js +37 -0
  1342. package/node_modules/@babel/traverse/lib/path/lib/removal-hooks.js.map +1 -0
  1343. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +161 -0
  1344. package/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js.map +1 -0
  1345. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js +26 -0
  1346. package/node_modules/@babel/traverse/lib/path/lib/virtual-types.js.map +1 -0
  1347. package/node_modules/@babel/traverse/lib/path/modification.js +225 -0
  1348. package/node_modules/@babel/traverse/lib/path/modification.js.map +1 -0
  1349. package/node_modules/@babel/traverse/lib/path/removal.js +66 -0
  1350. package/node_modules/@babel/traverse/lib/path/removal.js.map +1 -0
  1351. package/node_modules/@babel/traverse/lib/path/replacement.js +264 -0
  1352. package/node_modules/@babel/traverse/lib/path/replacement.js.map +1 -0
  1353. package/node_modules/@babel/traverse/lib/scope/binding.js +83 -0
  1354. package/node_modules/@babel/traverse/lib/scope/binding.js.map +1 -0
  1355. package/node_modules/@babel/traverse/lib/scope/index.js +888 -0
  1356. package/node_modules/@babel/traverse/lib/scope/index.js.map +1 -0
  1357. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js +113 -0
  1358. package/node_modules/@babel/traverse/lib/scope/lib/renamer.js.map +1 -0
  1359. package/node_modules/@babel/traverse/lib/traverse-node.js +29 -0
  1360. package/node_modules/@babel/traverse/lib/traverse-node.js.map +1 -0
  1361. package/node_modules/@babel/traverse/lib/types.js +3 -0
  1362. package/node_modules/@babel/traverse/lib/types.js.map +1 -0
  1363. package/node_modules/@babel/traverse/lib/visitors.js +221 -0
  1364. package/node_modules/@babel/traverse/lib/visitors.js.map +1 -0
  1365. package/node_modules/@babel/traverse/package.json +38 -0
  1366. package/node_modules/@babel/types/LICENSE +22 -0
  1367. package/node_modules/@babel/types/README.md +19 -0
  1368. package/node_modules/@babel/types/lib/asserts/assertNode.js +16 -0
  1369. package/node_modules/@babel/types/lib/asserts/assertNode.js.map +1 -0
  1370. package/node_modules/@babel/types/lib/asserts/generated/index.js +1235 -0
  1371. package/node_modules/@babel/types/lib/asserts/generated/index.js.map +1 -0
  1372. package/node_modules/@babel/types/lib/ast-types/generated/index.js +3 -0
  1373. package/node_modules/@babel/types/lib/ast-types/generated/index.js.map +1 -0
  1374. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js +18 -0
  1375. package/node_modules/@babel/types/lib/builders/flow/createFlowUnionType.js.map +1 -0
  1376. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js +31 -0
  1377. package/node_modules/@babel/types/lib/builders/flow/createTypeAnnotationBasedOnTypeof.js.map +1 -0
  1378. package/node_modules/@babel/types/lib/builders/generated/index.js +1991 -0
  1379. package/node_modules/@babel/types/lib/builders/generated/index.js.map +1 -0
  1380. package/node_modules/@babel/types/lib/builders/generated/uppercase.js +1532 -0
  1381. package/node_modules/@babel/types/lib/builders/generated/uppercase.js.map +1 -0
  1382. package/node_modules/@babel/types/lib/builders/productions.js +12 -0
  1383. package/node_modules/@babel/types/lib/builders/productions.js.map +1 -0
  1384. package/node_modules/@babel/types/lib/builders/react/buildChildren.js +24 -0
  1385. package/node_modules/@babel/types/lib/builders/react/buildChildren.js.map +1 -0
  1386. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js +22 -0
  1387. package/node_modules/@babel/types/lib/builders/typescript/createTSUnionType.js.map +1 -0
  1388. package/node_modules/@babel/types/lib/builders/validateNode.js +17 -0
  1389. package/node_modules/@babel/types/lib/builders/validateNode.js.map +1 -0
  1390. package/node_modules/@babel/types/lib/clone/clone.js +12 -0
  1391. package/node_modules/@babel/types/lib/clone/clone.js.map +1 -0
  1392. package/node_modules/@babel/types/lib/clone/cloneDeep.js +12 -0
  1393. package/node_modules/@babel/types/lib/clone/cloneDeep.js.map +1 -0
  1394. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js +12 -0
  1395. package/node_modules/@babel/types/lib/clone/cloneDeepWithoutLoc.js.map +1 -0
  1396. package/node_modules/@babel/types/lib/clone/cloneNode.js +100 -0
  1397. package/node_modules/@babel/types/lib/clone/cloneNode.js.map +1 -0
  1398. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js +12 -0
  1399. package/node_modules/@babel/types/lib/clone/cloneWithoutLoc.js.map +1 -0
  1400. package/node_modules/@babel/types/lib/comments/addComment.js +15 -0
  1401. package/node_modules/@babel/types/lib/comments/addComment.js.map +1 -0
  1402. package/node_modules/@babel/types/lib/comments/addComments.js +22 -0
  1403. package/node_modules/@babel/types/lib/comments/addComments.js.map +1 -0
  1404. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js +12 -0
  1405. package/node_modules/@babel/types/lib/comments/inheritInnerComments.js.map +1 -0
  1406. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js +12 -0
  1407. package/node_modules/@babel/types/lib/comments/inheritLeadingComments.js.map +1 -0
  1408. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js +12 -0
  1409. package/node_modules/@babel/types/lib/comments/inheritTrailingComments.js.map +1 -0
  1410. package/node_modules/@babel/types/lib/comments/inheritsComments.js +17 -0
  1411. package/node_modules/@babel/types/lib/comments/inheritsComments.js.map +1 -0
  1412. package/node_modules/@babel/types/lib/comments/removeComments.js +15 -0
  1413. package/node_modules/@babel/types/lib/comments/removeComments.js.map +1 -0
  1414. package/node_modules/@babel/types/lib/constants/generated/index.js +59 -0
  1415. package/node_modules/@babel/types/lib/constants/generated/index.js.map +1 -0
  1416. package/node_modules/@babel/types/lib/constants/index.js +31 -0
  1417. package/node_modules/@babel/types/lib/constants/index.js.map +1 -0
  1418. package/node_modules/@babel/types/lib/converters/ensureBlock.js +14 -0
  1419. package/node_modules/@babel/types/lib/converters/ensureBlock.js.map +1 -0
  1420. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js +65 -0
  1421. package/node_modules/@babel/types/lib/converters/gatherSequenceExpressions.js.map +1 -0
  1422. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js +14 -0
  1423. package/node_modules/@babel/types/lib/converters/toBindingIdentifierName.js.map +1 -0
  1424. package/node_modules/@babel/types/lib/converters/toBlock.js +29 -0
  1425. package/node_modules/@babel/types/lib/converters/toBlock.js.map +1 -0
  1426. package/node_modules/@babel/types/lib/converters/toComputedKey.js +14 -0
  1427. package/node_modules/@babel/types/lib/converters/toComputedKey.js.map +1 -0
  1428. package/node_modules/@babel/types/lib/converters/toExpression.js +27 -0
  1429. package/node_modules/@babel/types/lib/converters/toExpression.js.map +1 -0
  1430. package/node_modules/@babel/types/lib/converters/toIdentifier.js +25 -0
  1431. package/node_modules/@babel/types/lib/converters/toIdentifier.js.map +1 -0
  1432. package/node_modules/@babel/types/lib/converters/toKeyAlias.js +38 -0
  1433. package/node_modules/@babel/types/lib/converters/toKeyAlias.js.map +1 -0
  1434. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js +20 -0
  1435. package/node_modules/@babel/types/lib/converters/toSequenceExpression.js.map +1 -0
  1436. package/node_modules/@babel/types/lib/converters/toStatement.js +39 -0
  1437. package/node_modules/@babel/types/lib/converters/toStatement.js.map +1 -0
  1438. package/node_modules/@babel/types/lib/converters/valueToNode.js +76 -0
  1439. package/node_modules/@babel/types/lib/converters/valueToNode.js.map +1 -0
  1440. package/node_modules/@babel/types/lib/definitions/core.js +1689 -0
  1441. package/node_modules/@babel/types/lib/definitions/core.js.map +1 -0
  1442. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js +11 -0
  1443. package/node_modules/@babel/types/lib/definitions/deprecated-aliases.js.map +1 -0
  1444. package/node_modules/@babel/types/lib/definitions/experimental.js +134 -0
  1445. package/node_modules/@babel/types/lib/definitions/experimental.js.map +1 -0
  1446. package/node_modules/@babel/types/lib/definitions/flow.js +488 -0
  1447. package/node_modules/@babel/types/lib/definitions/flow.js.map +1 -0
  1448. package/node_modules/@babel/types/lib/definitions/index.js +96 -0
  1449. package/node_modules/@babel/types/lib/definitions/index.js.map +1 -0
  1450. package/node_modules/@babel/types/lib/definitions/jsx.js +158 -0
  1451. package/node_modules/@babel/types/lib/definitions/jsx.js.map +1 -0
  1452. package/node_modules/@babel/types/lib/definitions/misc.js +32 -0
  1453. package/node_modules/@babel/types/lib/definitions/misc.js.map +1 -0
  1454. package/node_modules/@babel/types/lib/definitions/placeholders.js +27 -0
  1455. package/node_modules/@babel/types/lib/definitions/placeholders.js.map +1 -0
  1456. package/node_modules/@babel/types/lib/definitions/typescript.js +489 -0
  1457. package/node_modules/@babel/types/lib/definitions/typescript.js.map +1 -0
  1458. package/node_modules/@babel/types/lib/definitions/utils.js +273 -0
  1459. package/node_modules/@babel/types/lib/definitions/utils.js.map +1 -0
  1460. package/node_modules/@babel/types/lib/index-legacy.d.ts +2757 -0
  1461. package/node_modules/@babel/types/lib/index.d.ts +3260 -0
  1462. package/node_modules/@babel/types/lib/index.js +576 -0
  1463. package/node_modules/@babel/types/lib/index.js.flow +2611 -0
  1464. package/node_modules/@babel/types/lib/index.js.map +1 -0
  1465. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js +15 -0
  1466. package/node_modules/@babel/types/lib/modifications/appendToMemberExpression.js.map +1 -0
  1467. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js +65 -0
  1468. package/node_modules/@babel/types/lib/modifications/flow/removeTypeDuplicates.js.map +1 -0
  1469. package/node_modules/@babel/types/lib/modifications/inherits.js +28 -0
  1470. package/node_modules/@babel/types/lib/modifications/inherits.js.map +1 -0
  1471. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js +17 -0
  1472. package/node_modules/@babel/types/lib/modifications/prependToMemberExpression.js.map +1 -0
  1473. package/node_modules/@babel/types/lib/modifications/removeProperties.js +24 -0
  1474. package/node_modules/@babel/types/lib/modifications/removeProperties.js.map +1 -0
  1475. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js +14 -0
  1476. package/node_modules/@babel/types/lib/modifications/removePropertiesDeep.js.map +1 -0
  1477. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js +65 -0
  1478. package/node_modules/@babel/types/lib/modifications/typescript/removeTypeDuplicates.js.map +1 -0
  1479. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js +96 -0
  1480. package/node_modules/@babel/types/lib/retrievers/getBindingIdentifiers.js.map +1 -0
  1481. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js +13 -0
  1482. package/node_modules/@babel/types/lib/retrievers/getOuterBindingIdentifiers.js.map +1 -0
  1483. package/node_modules/@babel/types/lib/traverse/traverse.js +50 -0
  1484. package/node_modules/@babel/types/lib/traverse/traverse.js.map +1 -0
  1485. package/node_modules/@babel/types/lib/traverse/traverseFast.js +26 -0
  1486. package/node_modules/@babel/types/lib/traverse/traverseFast.js.map +1 -0
  1487. package/node_modules/@babel/types/lib/utils/deprecationWarning.js +44 -0
  1488. package/node_modules/@babel/types/lib/utils/deprecationWarning.js.map +1 -0
  1489. package/node_modules/@babel/types/lib/utils/inherit.js +13 -0
  1490. package/node_modules/@babel/types/lib/utils/inherit.js.map +1 -0
  1491. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js +40 -0
  1492. package/node_modules/@babel/types/lib/utils/react/cleanJSXElementLiteralChild.js.map +1 -0
  1493. package/node_modules/@babel/types/lib/utils/shallowEqual.js +17 -0
  1494. package/node_modules/@babel/types/lib/utils/shallowEqual.js.map +1 -0
  1495. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js +13 -0
  1496. package/node_modules/@babel/types/lib/validators/buildMatchMemberExpression.js.map +1 -0
  1497. package/node_modules/@babel/types/lib/validators/generated/index.js +2752 -0
  1498. package/node_modules/@babel/types/lib/validators/generated/index.js.map +1 -0
  1499. package/node_modules/@babel/types/lib/validators/is.js +27 -0
  1500. package/node_modules/@babel/types/lib/validators/is.js.map +1 -0
  1501. package/node_modules/@babel/types/lib/validators/isBinding.js +27 -0
  1502. package/node_modules/@babel/types/lib/validators/isBinding.js.map +1 -0
  1503. package/node_modules/@babel/types/lib/validators/isBlockScoped.js +13 -0
  1504. package/node_modules/@babel/types/lib/validators/isBlockScoped.js.map +1 -0
  1505. package/node_modules/@babel/types/lib/validators/isImmutable.js +21 -0
  1506. package/node_modules/@babel/types/lib/validators/isImmutable.js.map +1 -0
  1507. package/node_modules/@babel/types/lib/validators/isLet.js +13 -0
  1508. package/node_modules/@babel/types/lib/validators/isLet.js.map +1 -0
  1509. package/node_modules/@babel/types/lib/validators/isNode.js +12 -0
  1510. package/node_modules/@babel/types/lib/validators/isNode.js.map +1 -0
  1511. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js +57 -0
  1512. package/node_modules/@babel/types/lib/validators/isNodesEquivalent.js.map +1 -0
  1513. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js +19 -0
  1514. package/node_modules/@babel/types/lib/validators/isPlaceholderType.js.map +1 -0
  1515. package/node_modules/@babel/types/lib/validators/isReferenced.js +96 -0
  1516. package/node_modules/@babel/types/lib/validators/isReferenced.js.map +1 -0
  1517. package/node_modules/@babel/types/lib/validators/isScope.js +18 -0
  1518. package/node_modules/@babel/types/lib/validators/isScope.js.map +1 -0
  1519. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js +14 -0
  1520. package/node_modules/@babel/types/lib/validators/isSpecifierDefault.js.map +1 -0
  1521. package/node_modules/@babel/types/lib/validators/isType.js +22 -0
  1522. package/node_modules/@babel/types/lib/validators/isType.js.map +1 -0
  1523. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js +13 -0
  1524. package/node_modules/@babel/types/lib/validators/isValidES3Identifier.js.map +1 -0
  1525. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js +18 -0
  1526. package/node_modules/@babel/types/lib/validators/isValidIdentifier.js.map +1 -0
  1527. package/node_modules/@babel/types/lib/validators/isVar.js +15 -0
  1528. package/node_modules/@babel/types/lib/validators/isVar.js.map +1 -0
  1529. package/node_modules/@babel/types/lib/validators/matchesPattern.js +36 -0
  1530. package/node_modules/@babel/types/lib/validators/matchesPattern.js.map +1 -0
  1531. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js +11 -0
  1532. package/node_modules/@babel/types/lib/validators/react/isCompatTag.js.map +1 -0
  1533. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js +11 -0
  1534. package/node_modules/@babel/types/lib/validators/react/isReactComponent.js.map +1 -0
  1535. package/node_modules/@babel/types/lib/validators/validate.js +30 -0
  1536. package/node_modules/@babel/types/lib/validators/validate.js.map +1 -0
  1537. package/node_modules/@babel/types/package.json +40 -0
  1538. package/node_modules/@bcoe/v8-coverage/.editorconfig +9 -0
  1539. package/node_modules/@bcoe/v8-coverage/.gitattributes +2 -0
  1540. package/node_modules/@bcoe/v8-coverage/CHANGELOG.md +250 -0
  1541. package/node_modules/@bcoe/v8-coverage/LICENSE.md +21 -0
  1542. package/node_modules/@bcoe/v8-coverage/LICENSE.txt +14 -0
  1543. package/node_modules/@bcoe/v8-coverage/README.md +11 -0
  1544. package/node_modules/@bcoe/v8-coverage/dist/lib/CHANGELOG.md +250 -0
  1545. package/node_modules/@bcoe/v8-coverage/dist/lib/LICENSE.md +21 -0
  1546. package/node_modules/@bcoe/v8-coverage/dist/lib/README.md +11 -0
  1547. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/ascii.ts +146 -0
  1548. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/clone.ts +70 -0
  1549. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/compare.ts +40 -0
  1550. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/index.ts +6 -0
  1551. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/merge.ts +343 -0
  1552. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/normalize.ts +84 -0
  1553. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/range-tree.ts +156 -0
  1554. package/node_modules/@bcoe/v8-coverage/dist/lib/_src/types.ts +26 -0
  1555. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.d.ts +12 -0
  1556. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.js +136 -0
  1557. package/node_modules/@bcoe/v8-coverage/dist/lib/ascii.mjs +130 -0
  1558. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.d.ts +29 -0
  1559. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.js +70 -0
  1560. package/node_modules/@bcoe/v8-coverage/dist/lib/clone.mjs +64 -0
  1561. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.d.ts +21 -0
  1562. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.js +46 -0
  1563. package/node_modules/@bcoe/v8-coverage/dist/lib/compare.mjs +41 -0
  1564. package/node_modules/@bcoe/v8-coverage/dist/lib/index.d.ts +6 -0
  1565. package/node_modules/@bcoe/v8-coverage/dist/lib/index.js +24 -0
  1566. package/node_modules/@bcoe/v8-coverage/dist/lib/index.mjs +7 -0
  1567. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.d.ts +39 -0
  1568. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.js +302 -0
  1569. package/node_modules/@bcoe/v8-coverage/dist/lib/merge.mjs +297 -0
  1570. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.d.ts +53 -0
  1571. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.js +87 -0
  1572. package/node_modules/@bcoe/v8-coverage/dist/lib/normalize.mjs +79 -0
  1573. package/node_modules/@bcoe/v8-coverage/dist/lib/package.json +44 -0
  1574. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.d.ts +24 -0
  1575. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.js +139 -0
  1576. package/node_modules/@bcoe/v8-coverage/dist/lib/range-tree.mjs +136 -0
  1577. package/node_modules/@bcoe/v8-coverage/dist/lib/tsconfig.json +62 -0
  1578. package/node_modules/@bcoe/v8-coverage/dist/lib/types.d.ts +22 -0
  1579. package/node_modules/@bcoe/v8-coverage/dist/lib/types.js +4 -0
  1580. package/node_modules/@bcoe/v8-coverage/dist/lib/types.mjs +3 -0
  1581. package/node_modules/@bcoe/v8-coverage/gulpfile.ts +95 -0
  1582. package/node_modules/@bcoe/v8-coverage/package.json +48 -0
  1583. package/node_modules/@bcoe/v8-coverage/tsconfig.json +59 -0
  1584. package/node_modules/@cspotcode/source-map-consumer/README.md +7 -0
  1585. package/node_modules/@cspotcode/source-map-consumer/lib/array-set.js +100 -0
  1586. package/node_modules/@cspotcode/source-map-consumer/lib/binary-search.js +107 -0
  1587. package/node_modules/@cspotcode/source-map-consumer/lib/mappings.wasm +0 -0
  1588. package/node_modules/@cspotcode/source-map-consumer/lib/read-wasm.js +25 -0
  1589. package/node_modules/@cspotcode/source-map-consumer/lib/source-map-consumer.js +1229 -0
  1590. package/node_modules/@cspotcode/source-map-consumer/lib/util.js +546 -0
  1591. package/node_modules/@cspotcode/source-map-consumer/lib/wasm.js +153 -0
  1592. package/node_modules/@cspotcode/source-map-consumer/package.json +91 -0
  1593. package/node_modules/@cspotcode/source-map-consumer/source-map.d.ts +369 -0
  1594. package/node_modules/@cspotcode/source-map-consumer/source-map.js +6 -0
  1595. package/node_modules/@cspotcode/source-map-support/LICENSE.md +21 -0
  1596. package/node_modules/@cspotcode/source-map-support/README.md +289 -0
  1597. package/node_modules/@cspotcode/source-map-support/package.json +46 -0
  1598. package/node_modules/@cspotcode/source-map-support/register-hook-require.d.ts +7 -0
  1599. package/node_modules/@cspotcode/source-map-support/register-hook-require.js +3 -0
  1600. package/node_modules/@cspotcode/source-map-support/register.d.ts +7 -0
  1601. package/node_modules/@cspotcode/source-map-support/register.js +1 -0
  1602. package/node_modules/@cspotcode/source-map-support/source-map-support.d.ts +68 -0
  1603. package/node_modules/@cspotcode/source-map-support/source-map-support.js +806 -0
  1604. package/node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md +41 -0
  1605. package/node_modules/@istanbuljs/load-nyc-config/LICENSE +16 -0
  1606. package/node_modules/@istanbuljs/load-nyc-config/README.md +64 -0
  1607. package/node_modules/@istanbuljs/load-nyc-config/index.js +166 -0
  1608. package/node_modules/@istanbuljs/load-nyc-config/load-esm.js +12 -0
  1609. package/node_modules/@istanbuljs/load-nyc-config/package.json +49 -0
  1610. package/node_modules/@istanbuljs/schema/CHANGELOG.md +44 -0
  1611. package/node_modules/@istanbuljs/schema/LICENSE +21 -0
  1612. package/node_modules/@istanbuljs/schema/README.md +30 -0
  1613. package/node_modules/@istanbuljs/schema/default-exclude.js +22 -0
  1614. package/node_modules/@istanbuljs/schema/default-extension.js +10 -0
  1615. package/node_modules/@istanbuljs/schema/index.js +466 -0
  1616. package/node_modules/@istanbuljs/schema/package.json +30 -0
  1617. package/node_modules/@jest/console/LICENSE +21 -0
  1618. package/node_modules/@jest/console/build/BufferedConsole.js +197 -0
  1619. package/node_modules/@jest/console/build/CustomConsole.js +182 -0
  1620. package/node_modules/@jest/console/build/NullConsole.js +35 -0
  1621. package/node_modules/@jest/console/build/getConsoleOutput.js +70 -0
  1622. package/node_modules/@jest/console/build/index.d.ts +131 -0
  1623. package/node_modules/@jest/console/build/index.js +36 -0
  1624. package/node_modules/@jest/console/build/types.js +1 -0
  1625. package/node_modules/@jest/console/package.json +37 -0
  1626. package/node_modules/@jest/core/LICENSE +21 -0
  1627. package/node_modules/@jest/core/README.md +3 -0
  1628. package/node_modules/@jest/core/build/FailedTestsCache.js +46 -0
  1629. package/node_modules/@jest/core/build/FailedTestsInteractiveMode.js +195 -0
  1630. package/node_modules/@jest/core/build/ReporterDispatcher.js +87 -0
  1631. package/node_modules/@jest/core/build/SearchSource.js +408 -0
  1632. package/node_modules/@jest/core/build/SnapshotInteractiveMode.js +238 -0
  1633. package/node_modules/@jest/core/build/TestNamePatternPrompt.js +39 -0
  1634. package/node_modules/@jest/core/build/TestPathPatternPrompt.js +39 -0
  1635. package/node_modules/@jest/core/build/TestScheduler.js +463 -0
  1636. package/node_modules/@jest/core/build/cli/index.js +417 -0
  1637. package/node_modules/@jest/core/build/collectHandles.js +266 -0
  1638. package/node_modules/@jest/core/build/getChangedFilesPromise.js +65 -0
  1639. package/node_modules/@jest/core/build/getConfigsOfProjectsToRun.js +40 -0
  1640. package/node_modules/@jest/core/build/getNoTestFound.js +80 -0
  1641. package/node_modules/@jest/core/build/getNoTestFoundFailed.js +43 -0
  1642. package/node_modules/@jest/core/build/getNoTestFoundPassWithNoTests.js +26 -0
  1643. package/node_modules/@jest/core/build/getNoTestFoundRelatedToChangedFiles.js +48 -0
  1644. package/node_modules/@jest/core/build/getNoTestFoundVerbose.js +91 -0
  1645. package/node_modules/@jest/core/build/getNoTestsFoundMessage.js +64 -0
  1646. package/node_modules/@jest/core/build/getProjectDisplayName.js +16 -0
  1647. package/node_modules/@jest/core/build/getProjectNamesMissingWarning.js +49 -0
  1648. package/node_modules/@jest/core/build/getSelectProjectsMessage.js +71 -0
  1649. package/node_modules/@jest/core/build/index.d.ts +118 -0
  1650. package/node_modules/@jest/core/build/index.js +36 -0
  1651. package/node_modules/@jest/core/build/lib/activeFiltersMessage.js +52 -0
  1652. package/node_modules/@jest/core/build/lib/createContext.js +31 -0
  1653. package/node_modules/@jest/core/build/lib/handleDeprecationWarnings.js +65 -0
  1654. package/node_modules/@jest/core/build/lib/isValidPath.js +26 -0
  1655. package/node_modules/@jest/core/build/lib/logDebugMessages.js +24 -0
  1656. package/node_modules/@jest/core/build/lib/updateGlobalConfig.js +95 -0
  1657. package/node_modules/@jest/core/build/lib/watchPluginsHelpers.js +56 -0
  1658. package/node_modules/@jest/core/build/plugins/FailedTestsInteractive.js +96 -0
  1659. package/node_modules/@jest/core/build/plugins/Quit.js +42 -0
  1660. package/node_modules/@jest/core/build/plugins/TestNamePattern.js +70 -0
  1661. package/node_modules/@jest/core/build/plugins/TestPathPattern.js +70 -0
  1662. package/node_modules/@jest/core/build/plugins/UpdateSnapshots.js +51 -0
  1663. package/node_modules/@jest/core/build/plugins/UpdateSnapshotsInteractive.js +99 -0
  1664. package/node_modules/@jest/core/build/runGlobalHook.js +133 -0
  1665. package/node_modules/@jest/core/build/runJest.js +391 -0
  1666. package/node_modules/@jest/core/build/testSchedulerHelper.js +57 -0
  1667. package/node_modules/@jest/core/build/types.js +1 -0
  1668. package/node_modules/@jest/core/build/version.js +18 -0
  1669. package/node_modules/@jest/core/build/watch.js +666 -0
  1670. package/node_modules/@jest/core/package.json +102 -0
  1671. package/node_modules/@jest/environment/LICENSE +21 -0
  1672. package/node_modules/@jest/environment/build/index.d.ts +418 -0
  1673. package/node_modules/@jest/environment/build/index.js +1 -0
  1674. package/node_modules/@jest/environment/package.json +32 -0
  1675. package/node_modules/@jest/expect/LICENSE +21 -0
  1676. package/node_modules/@jest/expect/README.md +5 -0
  1677. package/node_modules/@jest/expect/build/index.d.ts +68 -0
  1678. package/node_modules/@jest/expect/build/index.js +40 -0
  1679. package/node_modules/@jest/expect/build/types.js +1 -0
  1680. package/node_modules/@jest/expect/package.json +34 -0
  1681. package/node_modules/@jest/expect-utils/LICENSE +21 -0
  1682. package/node_modules/@jest/expect-utils/README.md +5 -0
  1683. package/node_modules/@jest/expect-utils/build/immutableUtils.js +66 -0
  1684. package/node_modules/@jest/expect-utils/build/index.d.ts +93 -0
  1685. package/node_modules/@jest/expect-utils/build/index.js +34 -0
  1686. package/node_modules/@jest/expect-utils/build/jasmineUtils.js +210 -0
  1687. package/node_modules/@jest/expect-utils/build/types.js +1 -0
  1688. package/node_modules/@jest/expect-utils/build/utils.js +394 -0
  1689. package/node_modules/@jest/expect-utils/package.json +35 -0
  1690. package/node_modules/@jest/fake-timers/LICENSE +21 -0
  1691. package/node_modules/@jest/fake-timers/build/index.d.ts +110 -0
  1692. package/node_modules/@jest/fake-timers/build/index.js +22 -0
  1693. package/node_modules/@jest/fake-timers/build/legacyFakeTimers.js +545 -0
  1694. package/node_modules/@jest/fake-timers/build/modernFakeTimers.js +191 -0
  1695. package/node_modules/@jest/fake-timers/package.json +38 -0
  1696. package/node_modules/@jest/globals/LICENSE +21 -0
  1697. package/node_modules/@jest/globals/build/index.d.ts +71 -0
  1698. package/node_modules/@jest/globals/build/index.js +14 -0
  1699. package/node_modules/@jest/globals/package.json +32 -0
  1700. package/node_modules/@jest/reporters/LICENSE +21 -0
  1701. package/node_modules/@jest/reporters/assets/jest_logo.png +0 -0
  1702. package/node_modules/@jest/reporters/build/BaseReporter.js +48 -0
  1703. package/node_modules/@jest/reporters/build/CoverageReporter.js +561 -0
  1704. package/node_modules/@jest/reporters/build/CoverageWorker.js +89 -0
  1705. package/node_modules/@jest/reporters/build/DefaultReporter.js +229 -0
  1706. package/node_modules/@jest/reporters/build/GitHubActionsReporter.js +381 -0
  1707. package/node_modules/@jest/reporters/build/NotifyReporter.js +218 -0
  1708. package/node_modules/@jest/reporters/build/Status.js +214 -0
  1709. package/node_modules/@jest/reporters/build/SummaryReporter.js +239 -0
  1710. package/node_modules/@jest/reporters/build/VerboseReporter.js +175 -0
  1711. package/node_modules/@jest/reporters/build/formatTestPath.js +84 -0
  1712. package/node_modules/@jest/reporters/build/generateEmptyCoverage.js +151 -0
  1713. package/node_modules/@jest/reporters/build/getResultHeader.js +65 -0
  1714. package/node_modules/@jest/reporters/build/getSnapshotStatus.js +92 -0
  1715. package/node_modules/@jest/reporters/build/getSnapshotSummary.js +169 -0
  1716. package/node_modules/@jest/reporters/build/getSummary.js +206 -0
  1717. package/node_modules/@jest/reporters/build/getWatermarks.js +38 -0
  1718. package/node_modules/@jest/reporters/build/index.d.ts +325 -0
  1719. package/node_modules/@jest/reporters/build/index.js +88 -0
  1720. package/node_modules/@jest/reporters/build/printDisplayName.js +35 -0
  1721. package/node_modules/@jest/reporters/build/relativePath.js +72 -0
  1722. package/node_modules/@jest/reporters/build/trimAndFormatPath.js +118 -0
  1723. package/node_modules/@jest/reporters/build/types.js +1 -0
  1724. package/node_modules/@jest/reporters/build/wrapAnsiString.js +69 -0
  1725. package/node_modules/@jest/reporters/package.json +82 -0
  1726. package/node_modules/@jest/schemas/LICENSE +21 -0
  1727. package/node_modules/@jest/schemas/README.md +3 -0
  1728. package/node_modules/@jest/schemas/build/index.d.ts +72 -0
  1729. package/node_modules/@jest/schemas/build/index.js +65 -0
  1730. package/node_modules/@jest/schemas/package.json +29 -0
  1731. package/node_modules/@jest/source-map/LICENSE +21 -0
  1732. package/node_modules/@jest/source-map/build/getCallsite.js +85 -0
  1733. package/node_modules/@jest/source-map/build/index.d.ts +16 -0
  1734. package/node_modules/@jest/source-map/build/index.js +15 -0
  1735. package/node_modules/@jest/source-map/build/types.js +1 -0
  1736. package/node_modules/@jest/source-map/package.json +34 -0
  1737. package/node_modules/@jest/test-result/LICENSE +21 -0
  1738. package/node_modules/@jest/test-result/build/formatTestResults.js +69 -0
  1739. package/node_modules/@jest/test-result/build/helpers.js +175 -0
  1740. package/node_modules/@jest/test-result/build/index.d.ts +232 -0
  1741. package/node_modules/@jest/test-result/build/index.js +40 -0
  1742. package/node_modules/@jest/test-result/build/types.js +1 -0
  1743. package/node_modules/@jest/test-result/package.json +36 -0
  1744. package/node_modules/@jest/test-sequencer/LICENSE +21 -0
  1745. package/node_modules/@jest/test-sequencer/build/index.d.ts +91 -0
  1746. package/node_modules/@jest/test-sequencer/build/index.js +287 -0
  1747. package/node_modules/@jest/test-sequencer/package.json +36 -0
  1748. package/node_modules/@jest/transform/LICENSE +21 -0
  1749. package/node_modules/@jest/transform/build/ScriptTransformer.js +1000 -0
  1750. package/node_modules/@jest/transform/build/enhanceUnexpectedTokenMessage.js +76 -0
  1751. package/node_modules/@jest/transform/build/index.d.ts +240 -0
  1752. package/node_modules/@jest/transform/build/index.js +37 -0
  1753. package/node_modules/@jest/transform/build/runtimeErrorsAndWarnings.js +94 -0
  1754. package/node_modules/@jest/transform/build/shouldInstrument.js +177 -0
  1755. package/node_modules/@jest/transform/build/types.js +1 -0
  1756. package/node_modules/@jest/transform/package.json +52 -0
  1757. package/node_modules/@jest/types/LICENSE +21 -0
  1758. package/node_modules/@jest/types/README.md +30 -0
  1759. package/node_modules/@jest/types/build/Circus.js +1 -0
  1760. package/node_modules/@jest/types/build/Config.js +1 -0
  1761. package/node_modules/@jest/types/build/Global.js +1 -0
  1762. package/node_modules/@jest/types/build/TestResult.js +1 -0
  1763. package/node_modules/@jest/types/build/Transform.js +1 -0
  1764. package/node_modules/@jest/types/build/index.d.ts +1204 -0
  1765. package/node_modules/@jest/types/build/index.js +1 -0
  1766. package/node_modules/@jest/types/package.json +38 -0
  1767. package/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  1768. package/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  1769. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs +230 -0
  1770. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs.map +1 -0
  1771. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js +236 -0
  1772. package/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.umd.js.map +1 -0
  1773. package/node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts +90 -0
  1774. package/node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts +12 -0
  1775. package/node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts +35 -0
  1776. package/node_modules/@jridgewell/gen-mapping/package.json +77 -0
  1777. package/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  1778. package/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  1779. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs +242 -0
  1780. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs.map +1 -0
  1781. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js +250 -0
  1782. package/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.umd.js.map +1 -0
  1783. package/node_modules/@jridgewell/resolve-uri/dist/types/resolve-uri.d.ts +4 -0
  1784. package/node_modules/@jridgewell/resolve-uri/package.json +69 -0
  1785. package/node_modules/@jridgewell/set-array/LICENSE +19 -0
  1786. package/node_modules/@jridgewell/set-array/README.md +37 -0
  1787. package/node_modules/@jridgewell/set-array/dist/set-array.mjs +48 -0
  1788. package/node_modules/@jridgewell/set-array/dist/set-array.mjs.map +1 -0
  1789. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js +58 -0
  1790. package/node_modules/@jridgewell/set-array/dist/set-array.umd.js.map +1 -0
  1791. package/node_modules/@jridgewell/set-array/dist/types/set-array.d.ts +26 -0
  1792. package/node_modules/@jridgewell/set-array/package.json +66 -0
  1793. package/node_modules/@jridgewell/sourcemap-codec/LICENSE +21 -0
  1794. package/node_modules/@jridgewell/sourcemap-codec/README.md +200 -0
  1795. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs +164 -0
  1796. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs.map +1 -0
  1797. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js +175 -0
  1798. package/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.umd.js.map +1 -0
  1799. package/node_modules/@jridgewell/sourcemap-codec/dist/types/sourcemap-codec.d.ts +6 -0
  1800. package/node_modules/@jridgewell/sourcemap-codec/package.json +75 -0
  1801. package/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  1802. package/node_modules/@jridgewell/trace-mapping/README.md +252 -0
  1803. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs +552 -0
  1804. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs.map +1 -0
  1805. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js +560 -0
  1806. package/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.umd.js.map +1 -0
  1807. package/node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts +8 -0
  1808. package/node_modules/@jridgewell/trace-mapping/dist/types/binary-search.d.ts +32 -0
  1809. package/node_modules/@jridgewell/trace-mapping/dist/types/by-source.d.ts +7 -0
  1810. package/node_modules/@jridgewell/trace-mapping/dist/types/resolve.d.ts +1 -0
  1811. package/node_modules/@jridgewell/trace-mapping/dist/types/sort.d.ts +2 -0
  1812. package/node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts +16 -0
  1813. package/node_modules/@jridgewell/trace-mapping/dist/types/strip-filename.d.ts +4 -0
  1814. package/node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts +74 -0
  1815. package/node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts +92 -0
  1816. package/node_modules/@jridgewell/trace-mapping/package.json +75 -0
  1817. package/node_modules/@sinclair/typebox/compiler/compiler.d.ts +28 -0
  1818. package/node_modules/@sinclair/typebox/compiler/compiler.js +404 -0
  1819. package/node_modules/@sinclair/typebox/compiler/index.d.ts +2 -0
  1820. package/node_modules/@sinclair/typebox/compiler/index.js +47 -0
  1821. package/node_modules/@sinclair/typebox/conditional/conditional.d.ts +17 -0
  1822. package/node_modules/@sinclair/typebox/conditional/conditional.js +91 -0
  1823. package/node_modules/@sinclair/typebox/conditional/index.d.ts +2 -0
  1824. package/node_modules/@sinclair/typebox/conditional/index.js +45 -0
  1825. package/node_modules/@sinclair/typebox/conditional/structural.d.ts +11 -0
  1826. package/node_modules/@sinclair/typebox/conditional/structural.js +657 -0
  1827. package/node_modules/@sinclair/typebox/errors/errors.d.ts +59 -0
  1828. package/node_modules/@sinclair/typebox/errors/errors.js +382 -0
  1829. package/node_modules/@sinclair/typebox/errors/index.d.ts +1 -0
  1830. package/node_modules/@sinclair/typebox/errors/index.js +44 -0
  1831. package/node_modules/@sinclair/typebox/format/format.d.ts +12 -0
  1832. package/node_modules/@sinclair/typebox/format/format.js +55 -0
  1833. package/node_modules/@sinclair/typebox/format/index.d.ts +1 -0
  1834. package/node_modules/@sinclair/typebox/format/index.js +44 -0
  1835. package/node_modules/@sinclair/typebox/guard/guard.d.ts +56 -0
  1836. package/node_modules/@sinclair/typebox/guard/guard.js +348 -0
  1837. package/node_modules/@sinclair/typebox/guard/index.d.ts +1 -0
  1838. package/node_modules/@sinclair/typebox/guard/index.js +44 -0
  1839. package/node_modules/@sinclair/typebox/license +23 -0
  1840. package/node_modules/@sinclair/typebox/package.json +40 -0
  1841. package/node_modules/@sinclair/typebox/readme.md +1152 -0
  1842. package/node_modules/@sinclair/typebox/typebox.d.ts +406 -0
  1843. package/node_modules/@sinclair/typebox/typebox.js +383 -0
  1844. package/node_modules/@sinclair/typebox/value/cast.d.ts +26 -0
  1845. package/node_modules/@sinclair/typebox/value/cast.js +355 -0
  1846. package/node_modules/@sinclair/typebox/value/check.d.ts +8 -0
  1847. package/node_modules/@sinclair/typebox/value/check.js +322 -0
  1848. package/node_modules/@sinclair/typebox/value/clone.d.ts +3 -0
  1849. package/node_modules/@sinclair/typebox/value/clone.js +65 -0
  1850. package/node_modules/@sinclair/typebox/value/create.d.ts +14 -0
  1851. package/node_modules/@sinclair/typebox/value/create.js +357 -0
  1852. package/node_modules/@sinclair/typebox/value/delta.d.ts +22 -0
  1853. package/node_modules/@sinclair/typebox/value/delta.js +168 -0
  1854. package/node_modules/@sinclair/typebox/value/equal.d.ts +3 -0
  1855. package/node_modules/@sinclair/typebox/value/equal.js +74 -0
  1856. package/node_modules/@sinclair/typebox/value/index.d.ts +3 -0
  1857. package/node_modules/@sinclair/typebox/value/index.js +48 -0
  1858. package/node_modules/@sinclair/typebox/value/is.d.ts +10 -0
  1859. package/node_modules/@sinclair/typebox/value/is.js +49 -0
  1860. package/node_modules/@sinclair/typebox/value/pointer.d.ts +24 -0
  1861. package/node_modules/@sinclair/typebox/value/pointer.js +142 -0
  1862. package/node_modules/@sinclair/typebox/value/value.d.ts +31 -0
  1863. package/node_modules/@sinclair/typebox/value/value.js +81 -0
  1864. package/node_modules/@sinonjs/commons/LICENSE +29 -0
  1865. package/node_modules/@sinonjs/commons/README.md +16 -0
  1866. package/node_modules/@sinonjs/commons/lib/called-in-order.js +55 -0
  1867. package/node_modules/@sinonjs/commons/lib/called-in-order.test.js +121 -0
  1868. package/node_modules/@sinonjs/commons/lib/class-name.js +13 -0
  1869. package/node_modules/@sinonjs/commons/lib/class-name.test.js +37 -0
  1870. package/node_modules/@sinonjs/commons/lib/deprecated.js +48 -0
  1871. package/node_modules/@sinonjs/commons/lib/deprecated.test.js +101 -0
  1872. package/node_modules/@sinonjs/commons/lib/every.js +26 -0
  1873. package/node_modules/@sinonjs/commons/lib/every.test.js +41 -0
  1874. package/node_modules/@sinonjs/commons/lib/function-name.js +28 -0
  1875. package/node_modules/@sinonjs/commons/lib/function-name.test.js +76 -0
  1876. package/node_modules/@sinonjs/commons/lib/global.js +21 -0
  1877. package/node_modules/@sinonjs/commons/lib/global.test.js +16 -0
  1878. package/node_modules/@sinonjs/commons/lib/index.js +14 -0
  1879. package/node_modules/@sinonjs/commons/lib/index.test.js +31 -0
  1880. package/node_modules/@sinonjs/commons/lib/order-by-first-call.js +34 -0
  1881. package/node_modules/@sinonjs/commons/lib/order-by-first-call.test.js +52 -0
  1882. package/node_modules/@sinonjs/commons/lib/prototypes/README.md +43 -0
  1883. package/node_modules/@sinonjs/commons/lib/prototypes/array.js +5 -0
  1884. package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.js +40 -0
  1885. package/node_modules/@sinonjs/commons/lib/prototypes/copy-prototype-methods.test.js +12 -0
  1886. package/node_modules/@sinonjs/commons/lib/prototypes/function.js +5 -0
  1887. package/node_modules/@sinonjs/commons/lib/prototypes/index.js +10 -0
  1888. package/node_modules/@sinonjs/commons/lib/prototypes/index.test.js +61 -0
  1889. package/node_modules/@sinonjs/commons/lib/prototypes/map.js +5 -0
  1890. package/node_modules/@sinonjs/commons/lib/prototypes/object.js +5 -0
  1891. package/node_modules/@sinonjs/commons/lib/prototypes/set.js +5 -0
  1892. package/node_modules/@sinonjs/commons/lib/prototypes/string.js +5 -0
  1893. package/node_modules/@sinonjs/commons/lib/prototypes/throws-on-proto.js +24 -0
  1894. package/node_modules/@sinonjs/commons/lib/type-of.js +12 -0
  1895. package/node_modules/@sinonjs/commons/lib/type-of.test.js +51 -0
  1896. package/node_modules/@sinonjs/commons/lib/value-to-string.js +16 -0
  1897. package/node_modules/@sinonjs/commons/lib/value-to-string.test.js +20 -0
  1898. package/node_modules/@sinonjs/commons/package.json +57 -0
  1899. package/node_modules/@sinonjs/commons/types/called-in-order.d.ts +34 -0
  1900. package/node_modules/@sinonjs/commons/types/class-name.d.ts +7 -0
  1901. package/node_modules/@sinonjs/commons/types/deprecated.d.ts +3 -0
  1902. package/node_modules/@sinonjs/commons/types/every.d.ts +2 -0
  1903. package/node_modules/@sinonjs/commons/types/function-name.d.ts +2 -0
  1904. package/node_modules/@sinonjs/commons/types/global.d.ts +6 -0
  1905. package/node_modules/@sinonjs/commons/types/index.d.ts +17 -0
  1906. package/node_modules/@sinonjs/commons/types/order-by-first-call.d.ts +24 -0
  1907. package/node_modules/@sinonjs/commons/types/prototypes/array.d.ts +2 -0
  1908. package/node_modules/@sinonjs/commons/types/prototypes/copy-prototype-methods.d.ts +2 -0
  1909. package/node_modules/@sinonjs/commons/types/prototypes/function.d.ts +2 -0
  1910. package/node_modules/@sinonjs/commons/types/prototypes/index.d.ts +7 -0
  1911. package/node_modules/@sinonjs/commons/types/prototypes/map.d.ts +2 -0
  1912. package/node_modules/@sinonjs/commons/types/prototypes/object.d.ts +2 -0
  1913. package/node_modules/@sinonjs/commons/types/prototypes/set.d.ts +2 -0
  1914. package/node_modules/@sinonjs/commons/types/prototypes/string.d.ts +2 -0
  1915. package/node_modules/@sinonjs/commons/types/prototypes/throws-on-proto.d.ts +10 -0
  1916. package/node_modules/@sinonjs/commons/types/type-of.d.ts +2 -0
  1917. package/node_modules/@sinonjs/commons/types/value-to-string.d.ts +7 -0
  1918. package/node_modules/@sinonjs/fake-timers/LICENSE +11 -0
  1919. package/node_modules/@sinonjs/fake-timers/README.md +358 -0
  1920. package/node_modules/@sinonjs/fake-timers/package.json +65 -0
  1921. package/node_modules/@tsconfig/node10/LICENSE +21 -0
  1922. package/node_modules/@tsconfig/node10/README.md +39 -0
  1923. package/node_modules/@tsconfig/node10/package.json +1 -0
  1924. package/node_modules/@tsconfig/node10/tsconfig.json +15 -0
  1925. package/node_modules/@tsconfig/node12/LICENSE +21 -0
  1926. package/node_modules/@tsconfig/node12/README.md +39 -0
  1927. package/node_modules/@tsconfig/node12/package.json +1 -0
  1928. package/node_modules/@tsconfig/node12/tsconfig.json +15 -0
  1929. package/node_modules/@tsconfig/node14/LICENSE +21 -0
  1930. package/node_modules/@tsconfig/node14/README.md +39 -0
  1931. package/node_modules/@tsconfig/node14/package.json +1 -0
  1932. package/node_modules/@tsconfig/node14/tsconfig.json +15 -0
  1933. package/node_modules/@tsconfig/node16/LICENSE +21 -0
  1934. package/node_modules/@tsconfig/node16/README.md +39 -0
  1935. package/node_modules/@tsconfig/node16/package.json +1 -0
  1936. package/node_modules/@tsconfig/node16/tsconfig.json +15 -0
  1937. package/node_modules/@types/babel__core/LICENSE +21 -0
  1938. package/node_modules/@types/babel__core/README.md +16 -0
  1939. package/node_modules/@types/babel__core/index.d.ts +799 -0
  1940. package/node_modules/@types/babel__core/package.json +51 -0
  1941. package/node_modules/@types/babel__generator/LICENSE +21 -0
  1942. package/node_modules/@types/babel__generator/README.md +16 -0
  1943. package/node_modules/@types/babel__generator/index.d.ts +211 -0
  1944. package/node_modules/@types/babel__generator/package.json +42 -0
  1945. package/node_modules/@types/babel__template/LICENSE +21 -0
  1946. package/node_modules/@types/babel__template/README.md +16 -0
  1947. package/node_modules/@types/babel__template/index.d.ts +100 -0
  1948. package/node_modules/@types/babel__template/package.json +43 -0
  1949. package/node_modules/@types/babel__traverse/LICENSE +21 -0
  1950. package/node_modules/@types/babel__traverse/README.md +16 -0
  1951. package/node_modules/@types/babel__traverse/index.d.ts +1172 -0
  1952. package/node_modules/@types/babel__traverse/package.json +69 -0
  1953. package/node_modules/@types/babel__traverse/ts4.1/index.d.ts +1160 -0
  1954. package/node_modules/@types/graceful-fs/LICENSE +21 -0
  1955. package/node_modules/@types/graceful-fs/README.md +16 -0
  1956. package/node_modules/@types/graceful-fs/index.d.ts +19 -0
  1957. package/node_modules/@types/graceful-fs/package.json +31 -0
  1958. package/node_modules/@types/istanbul-lib-coverage/LICENSE +21 -0
  1959. package/node_modules/@types/istanbul-lib-coverage/README.md +16 -0
  1960. package/node_modules/@types/istanbul-lib-coverage/index.d.ts +117 -0
  1961. package/node_modules/@types/istanbul-lib-coverage/package.json +25 -0
  1962. package/node_modules/@types/istanbul-lib-report/LICENSE +21 -0
  1963. package/node_modules/@types/istanbul-lib-report/README.md +16 -0
  1964. package/node_modules/@types/istanbul-lib-report/index.d.ts +191 -0
  1965. package/node_modules/@types/istanbul-lib-report/package.json +31 -0
  1966. package/node_modules/@types/istanbul-reports/LICENSE +21 -0
  1967. package/node_modules/@types/istanbul-reports/README.md +94 -0
  1968. package/node_modules/@types/istanbul-reports/index.d.ts +74 -0
  1969. package/node_modules/@types/istanbul-reports/package.json +32 -0
  1970. package/node_modules/@types/jest/LICENSE +21 -0
  1971. package/node_modules/@types/jest/README.md +16 -0
  1972. package/node_modules/@types/jest/index.d.ts +1748 -0
  1973. package/node_modules/@types/jest/package.json +159 -0
  1974. package/node_modules/@types/lru-cache/LICENSE +21 -0
  1975. package/node_modules/@types/lru-cache/README.md +16 -0
  1976. package/node_modules/@types/lru-cache/index.d.ts +193 -0
  1977. package/node_modules/@types/lru-cache/package.json +30 -0
  1978. package/node_modules/@types/node/LICENSE +21 -0
  1979. package/node_modules/@types/node/README.md +15 -0
  1980. package/node_modules/@types/node/assert/strict.d.ts +8 -0
  1981. package/node_modules/@types/node/assert.d.ts +996 -0
  1982. package/node_modules/@types/node/async_hooks.d.ts +539 -0
  1983. package/node_modules/@types/node/buffer.d.ts +2362 -0
  1984. package/node_modules/@types/node/child_process.d.ts +1540 -0
  1985. package/node_modules/@types/node/cluster.d.ts +432 -0
  1986. package/node_modules/@types/node/console.d.ts +415 -0
  1987. package/node_modules/@types/node/constants.d.ts +19 -0
  1988. package/node_modules/@types/node/crypto.d.ts +4487 -0
  1989. package/node_modules/@types/node/dgram.d.ts +596 -0
  1990. package/node_modules/@types/node/diagnostics_channel.d.ts +545 -0
  1991. package/node_modules/@types/node/dns/promises.d.ts +425 -0
  1992. package/node_modules/@types/node/dns.d.ts +809 -0
  1993. package/node_modules/@types/node/dom-events.d.ts +122 -0
  1994. package/node_modules/@types/node/domain.d.ts +170 -0
  1995. package/node_modules/@types/node/events.d.ts +879 -0
  1996. package/node_modules/@types/node/fs/promises.d.ts +1239 -0
  1997. package/node_modules/@types/node/fs.d.ts +4311 -0
  1998. package/node_modules/@types/node/globals.d.ts +411 -0
  1999. package/node_modules/@types/node/globals.global.d.ts +1 -0
  2000. package/node_modules/@types/node/http.d.ts +1887 -0
  2001. package/node_modules/@types/node/http2.d.ts +2382 -0
  2002. package/node_modules/@types/node/https.d.ts +550 -0
  2003. package/node_modules/@types/node/index.d.ts +88 -0
  2004. package/node_modules/@types/node/inspector.d.ts +2747 -0
  2005. package/node_modules/@types/node/module.d.ts +315 -0
  2006. package/node_modules/@types/node/net.d.ts +949 -0
  2007. package/node_modules/@types/node/os.d.ts +478 -0
  2008. package/node_modules/@types/node/package.json +229 -0
  2009. package/node_modules/@types/node/path.d.ts +191 -0
  2010. package/node_modules/@types/node/perf_hooks.d.ts +645 -0
  2011. package/node_modules/@types/node/process.d.ts +1561 -0
  2012. package/node_modules/@types/node/punycode.d.ts +117 -0
  2013. package/node_modules/@types/node/querystring.d.ts +141 -0
  2014. package/node_modules/@types/node/readline/promises.d.ts +150 -0
  2015. package/node_modules/@types/node/readline.d.ts +539 -0
  2016. package/node_modules/@types/node/repl.d.ts +430 -0
  2017. package/node_modules/@types/node/stream/consumers.d.ts +12 -0
  2018. package/node_modules/@types/node/stream/promises.d.ts +83 -0
  2019. package/node_modules/@types/node/stream/web.d.ts +366 -0
  2020. package/node_modules/@types/node/stream.d.ts +1701 -0
  2021. package/node_modules/@types/node/string_decoder.d.ts +67 -0
  2022. package/node_modules/@types/node/test.d.ts +1465 -0
  2023. package/node_modules/@types/node/timers/promises.d.ts +93 -0
  2024. package/node_modules/@types/node/timers.d.ts +240 -0
  2025. package/node_modules/@types/node/tls.d.ts +1210 -0
  2026. package/node_modules/@types/node/trace_events.d.ts +182 -0
  2027. package/node_modules/@types/node/ts4.8/assert/strict.d.ts +8 -0
  2028. package/node_modules/@types/node/ts4.8/assert.d.ts +996 -0
  2029. package/node_modules/@types/node/ts4.8/async_hooks.d.ts +539 -0
  2030. package/node_modules/@types/node/ts4.8/buffer.d.ts +2362 -0
  2031. package/node_modules/@types/node/ts4.8/child_process.d.ts +1540 -0
  2032. package/node_modules/@types/node/ts4.8/cluster.d.ts +432 -0
  2033. package/node_modules/@types/node/ts4.8/console.d.ts +415 -0
  2034. package/node_modules/@types/node/ts4.8/constants.d.ts +19 -0
  2035. package/node_modules/@types/node/ts4.8/crypto.d.ts +4487 -0
  2036. package/node_modules/@types/node/ts4.8/dgram.d.ts +596 -0
  2037. package/node_modules/@types/node/ts4.8/diagnostics_channel.d.ts +545 -0
  2038. package/node_modules/@types/node/ts4.8/dns/promises.d.ts +425 -0
  2039. package/node_modules/@types/node/ts4.8/dns.d.ts +809 -0
  2040. package/node_modules/@types/node/ts4.8/dom-events.d.ts +122 -0
  2041. package/node_modules/@types/node/ts4.8/domain.d.ts +170 -0
  2042. package/node_modules/@types/node/ts4.8/events.d.ts +879 -0
  2043. package/node_modules/@types/node/ts4.8/fs/promises.d.ts +1239 -0
  2044. package/node_modules/@types/node/ts4.8/fs.d.ts +4311 -0
  2045. package/node_modules/@types/node/ts4.8/globals.d.ts +411 -0
  2046. package/node_modules/@types/node/ts4.8/globals.global.d.ts +1 -0
  2047. package/node_modules/@types/node/ts4.8/http.d.ts +1887 -0
  2048. package/node_modules/@types/node/ts4.8/http2.d.ts +2382 -0
  2049. package/node_modules/@types/node/ts4.8/https.d.ts +550 -0
  2050. package/node_modules/@types/node/ts4.8/index.d.ts +88 -0
  2051. package/node_modules/@types/node/ts4.8/inspector.d.ts +2747 -0
  2052. package/node_modules/@types/node/ts4.8/module.d.ts +315 -0
  2053. package/node_modules/@types/node/ts4.8/net.d.ts +949 -0
  2054. package/node_modules/@types/node/ts4.8/os.d.ts +478 -0
  2055. package/node_modules/@types/node/ts4.8/path.d.ts +191 -0
  2056. package/node_modules/@types/node/ts4.8/perf_hooks.d.ts +645 -0
  2057. package/node_modules/@types/node/ts4.8/process.d.ts +1561 -0
  2058. package/node_modules/@types/node/ts4.8/punycode.d.ts +117 -0
  2059. package/node_modules/@types/node/ts4.8/querystring.d.ts +141 -0
  2060. package/node_modules/@types/node/ts4.8/readline/promises.d.ts +150 -0
  2061. package/node_modules/@types/node/ts4.8/readline.d.ts +539 -0
  2062. package/node_modules/@types/node/ts4.8/repl.d.ts +430 -0
  2063. package/node_modules/@types/node/ts4.8/stream/consumers.d.ts +12 -0
  2064. package/node_modules/@types/node/ts4.8/stream/promises.d.ts +83 -0
  2065. package/node_modules/@types/node/ts4.8/stream/web.d.ts +366 -0
  2066. package/node_modules/@types/node/ts4.8/stream.d.ts +1701 -0
  2067. package/node_modules/@types/node/ts4.8/string_decoder.d.ts +67 -0
  2068. package/node_modules/@types/node/ts4.8/test.d.ts +1465 -0
  2069. package/node_modules/@types/node/ts4.8/timers/promises.d.ts +93 -0
  2070. package/node_modules/@types/node/ts4.8/timers.d.ts +240 -0
  2071. package/node_modules/@types/node/ts4.8/tls.d.ts +1210 -0
  2072. package/node_modules/@types/node/ts4.8/trace_events.d.ts +182 -0
  2073. package/node_modules/@types/node/ts4.8/tty.d.ts +208 -0
  2074. package/node_modules/@types/node/ts4.8/url.d.ts +927 -0
  2075. package/node_modules/@types/node/ts4.8/util.d.ts +2183 -0
  2076. package/node_modules/@types/node/ts4.8/v8.d.ts +764 -0
  2077. package/node_modules/@types/node/ts4.8/vm.d.ts +903 -0
  2078. package/node_modules/@types/node/ts4.8/wasi.d.ts +179 -0
  2079. package/node_modules/@types/node/ts4.8/worker_threads.d.ts +691 -0
  2080. package/node_modules/@types/node/ts4.8/zlib.d.ts +517 -0
  2081. package/node_modules/@types/node/tty.d.ts +208 -0
  2082. package/node_modules/@types/node/url.d.ts +927 -0
  2083. package/node_modules/@types/node/util.d.ts +2183 -0
  2084. package/node_modules/@types/node/v8.d.ts +764 -0
  2085. package/node_modules/@types/node/vm.d.ts +903 -0
  2086. package/node_modules/@types/node/wasi.d.ts +179 -0
  2087. package/node_modules/@types/node/worker_threads.d.ts +691 -0
  2088. package/node_modules/@types/node/zlib.d.ts +517 -0
  2089. package/node_modules/@types/stack-utils/LICENSE +21 -0
  2090. package/node_modules/@types/stack-utils/README.md +85 -0
  2091. package/node_modules/@types/stack-utils/index.d.ts +65 -0
  2092. package/node_modules/@types/stack-utils/package.json +25 -0
  2093. package/node_modules/@types/yargs/LICENSE +21 -0
  2094. package/node_modules/@types/yargs/README.md +16 -0
  2095. package/node_modules/@types/yargs/helpers.d.mts +1 -0
  2096. package/node_modules/@types/yargs/helpers.d.ts +5 -0
  2097. package/node_modules/@types/yargs/index.d.mts +43 -0
  2098. package/node_modules/@types/yargs/index.d.ts +906 -0
  2099. package/node_modules/@types/yargs/package.json +94 -0
  2100. package/node_modules/@types/yargs/ts4.1/index.d.ts +857 -0
  2101. package/node_modules/@types/yargs/yargs.d.ts +9 -0
  2102. package/node_modules/@types/yargs-parser/LICENSE +21 -0
  2103. package/node_modules/@types/yargs-parser/README.md +16 -0
  2104. package/node_modules/@types/yargs-parser/index.d.ts +112 -0
  2105. package/node_modules/@types/yargs-parser/package.json +25 -0
  2106. package/package.json +10 -4
  2107. package/src/cache/index.ts +4 -3
  2108. package/src/utils/withNonBusinessDays.test.ts +3 -2
  2109. package/src/utils/withNonBusinessDays.ts +10 -8
@@ -0,0 +1,3260 @@
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
+
324
+ /**
325
+ * Takes an array of `types` and flattens them, removing duplicates and
326
+ * returns a `UnionTypeAnnotation` node containing them.
327
+ */
328
+ declare function createFlowUnionType<T extends FlowType>(types: [T] | Array<T>): T | UnionTypeAnnotation;
329
+
330
+ /**
331
+ * Takes an array of `types` and flattens them, removing duplicates and
332
+ * returns a `UnionTypeAnnotation` node containing them.
333
+ */
334
+ declare function createTSUnionType(typeAnnotations: Array<TSTypeAnnotation | TSType>): TSType;
335
+
336
+ declare function arrayExpression(elements?: Array<null | Expression | SpreadElement>): ArrayExpression;
337
+ declare function assignmentExpression(operator: string, left: LVal | OptionalMemberExpression, right: Expression): AssignmentExpression;
338
+ declare function binaryExpression(operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>", left: Expression | PrivateName, right: Expression): BinaryExpression;
339
+ declare function interpreterDirective(value: string): InterpreterDirective;
340
+ declare function directive(value: DirectiveLiteral): Directive;
341
+ declare function directiveLiteral(value: string): DirectiveLiteral;
342
+ declare function blockStatement(body: Array<Statement>, directives?: Array<Directive>): BlockStatement;
343
+ declare function breakStatement(label?: Identifier | null): BreakStatement;
344
+ declare function callExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>): CallExpression;
345
+ declare function catchClause(param: Identifier | ArrayPattern | ObjectPattern | null | undefined, body: BlockStatement): CatchClause;
346
+ declare function conditionalExpression(test: Expression, consequent: Expression, alternate: Expression): ConditionalExpression;
347
+ declare function continueStatement(label?: Identifier | null): ContinueStatement;
348
+ declare function debuggerStatement(): DebuggerStatement;
349
+ declare function doWhileStatement(test: Expression, body: Statement): DoWhileStatement;
350
+ declare function emptyStatement(): EmptyStatement;
351
+ declare function expressionStatement(expression: Expression): ExpressionStatement;
352
+ declare function file(program: Program, comments?: Array<CommentBlock | CommentLine> | null, tokens?: Array<any> | null): File;
353
+ declare function forInStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement): ForInStatement;
354
+ declare function forStatement(init: VariableDeclaration | Expression | null | undefined, test: Expression | null | undefined, update: Expression | null | undefined, body: Statement): ForStatement;
355
+ declare function functionDeclaration(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionDeclaration;
356
+ declare function functionExpression(id: Identifier | null | undefined, params: Array<Identifier | Pattern | RestElement>, body: BlockStatement, generator?: boolean, async?: boolean): FunctionExpression;
357
+ declare function identifier(name: string): Identifier;
358
+ declare function ifStatement(test: Expression, consequent: Statement, alternate?: Statement | null): IfStatement;
359
+ declare function labeledStatement(label: Identifier, body: Statement): LabeledStatement;
360
+ declare function stringLiteral(value: string): StringLiteral;
361
+ declare function numericLiteral(value: number): NumericLiteral;
362
+ declare function nullLiteral(): NullLiteral;
363
+ declare function booleanLiteral(value: boolean): BooleanLiteral;
364
+ declare function regExpLiteral(pattern: string, flags?: string): RegExpLiteral;
365
+ declare function logicalExpression(operator: "||" | "&&" | "??", left: Expression, right: Expression): LogicalExpression;
366
+ declare function memberExpression(object: Expression | Super, property: Expression | Identifier | PrivateName, computed?: boolean, optional?: true | false | null): MemberExpression;
367
+ declare function newExpression(callee: Expression | Super | V8IntrinsicIdentifier, _arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>): NewExpression;
368
+ declare function program(body: Array<Statement>, directives?: Array<Directive>, sourceType?: "script" | "module", interpreter?: InterpreterDirective | null): Program;
369
+ declare function objectExpression(properties: Array<ObjectMethod | ObjectProperty | SpreadElement>): ObjectExpression;
370
+ 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;
371
+ declare function objectProperty(key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName, value: Expression | PatternLike, computed?: boolean, shorthand?: boolean, decorators?: Array<Decorator> | null): ObjectProperty;
372
+ declare function restElement(argument: LVal): RestElement;
373
+ declare function returnStatement(argument?: Expression | null): ReturnStatement;
374
+ declare function sequenceExpression(expressions: Array<Expression>): SequenceExpression;
375
+ declare function parenthesizedExpression(expression: Expression): ParenthesizedExpression;
376
+ declare function switchCase(test: Expression | null | undefined, consequent: Array<Statement>): SwitchCase;
377
+ declare function switchStatement(discriminant: Expression, cases: Array<SwitchCase>): SwitchStatement;
378
+ declare function thisExpression(): ThisExpression;
379
+ declare function throwStatement(argument: Expression): ThrowStatement;
380
+ declare function tryStatement(block: BlockStatement, handler?: CatchClause | null, finalizer?: BlockStatement | null): TryStatement;
381
+ declare function unaryExpression(operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof", argument: Expression, prefix?: boolean): UnaryExpression;
382
+ declare function updateExpression(operator: "++" | "--", argument: Expression, prefix?: boolean): UpdateExpression;
383
+ declare function variableDeclaration(kind: "var" | "let" | "const" | "using" | "await using", declarations: Array<VariableDeclarator>): VariableDeclaration;
384
+ declare function variableDeclarator(id: LVal, init?: Expression | null): VariableDeclarator;
385
+ declare function whileStatement(test: Expression, body: Statement): WhileStatement;
386
+ declare function withStatement(object: Expression, body: Statement): WithStatement;
387
+ declare function assignmentPattern(left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression, right: Expression): AssignmentPattern;
388
+ declare function arrayPattern(elements: Array<null | PatternLike | LVal>): ArrayPattern;
389
+ declare function arrowFunctionExpression(params: Array<Identifier | Pattern | RestElement>, body: BlockStatement | Expression, async?: boolean): ArrowFunctionExpression;
390
+ declare function classBody(body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>): ClassBody;
391
+ declare function classExpression(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassExpression;
392
+ declare function classDeclaration(id: Identifier | null | undefined, superClass: Expression | null | undefined, body: ClassBody, decorators?: Array<Decorator> | null): ClassDeclaration;
393
+ declare function exportAllDeclaration(source: StringLiteral): ExportAllDeclaration;
394
+ declare function exportDefaultDeclaration(declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression): ExportDefaultDeclaration;
395
+ declare function exportNamedDeclaration(declaration?: Declaration | null, specifiers?: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>, source?: StringLiteral | null): ExportNamedDeclaration;
396
+ declare function exportSpecifier(local: Identifier, exported: Identifier | StringLiteral): ExportSpecifier;
397
+ declare function forOfStatement(left: VariableDeclaration | LVal, right: Expression, body: Statement, _await?: boolean): ForOfStatement;
398
+ declare function importDeclaration(specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>, source: StringLiteral): ImportDeclaration;
399
+ declare function importDefaultSpecifier(local: Identifier): ImportDefaultSpecifier;
400
+ declare function importNamespaceSpecifier(local: Identifier): ImportNamespaceSpecifier;
401
+ declare function importSpecifier(local: Identifier, imported: Identifier | StringLiteral): ImportSpecifier;
402
+ declare function importExpression(source: Expression, options?: Expression | null): ImportExpression;
403
+ declare function metaProperty(meta: Identifier, property: Identifier): MetaProperty;
404
+ 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;
405
+ declare function objectPattern(properties: Array<RestElement | ObjectProperty>): ObjectPattern;
406
+ declare function spreadElement(argument: Expression): SpreadElement;
407
+ declare function _super(): Super;
408
+
409
+ declare function taggedTemplateExpression(tag: Expression, quasi: TemplateLiteral): TaggedTemplateExpression;
410
+ declare function templateElement(value: {
411
+ raw: string;
412
+ cooked?: string;
413
+ }, tail?: boolean): TemplateElement;
414
+ declare function templateLiteral(quasis: Array<TemplateElement>, expressions: Array<Expression | TSType>): TemplateLiteral;
415
+ declare function yieldExpression(argument?: Expression | null, delegate?: boolean): YieldExpression;
416
+ declare function awaitExpression(argument: Expression): AwaitExpression;
417
+ declare function _import(): Import;
418
+
419
+ declare function bigIntLiteral(value: string): BigIntLiteral;
420
+ declare function exportNamespaceSpecifier(exported: Identifier): ExportNamespaceSpecifier;
421
+ declare function optionalMemberExpression(object: Expression, property: Expression | Identifier, computed: boolean | undefined, optional: boolean): OptionalMemberExpression;
422
+ declare function optionalCallExpression(callee: Expression, _arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>, optional: boolean): OptionalCallExpression;
423
+ 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;
424
+ 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;
425
+ declare function classPrivateProperty(key: PrivateName, value?: Expression | null, decorators?: Array<Decorator> | null, _static?: boolean): ClassPrivateProperty;
426
+ declare function classPrivateMethod(kind: "get" | "set" | "method" | undefined, key: PrivateName, params: Array<Identifier | Pattern | RestElement | TSParameterProperty>, body: BlockStatement, _static?: boolean): ClassPrivateMethod;
427
+ declare function privateName(id: Identifier): PrivateName;
428
+ declare function staticBlock(body: Array<Statement>): StaticBlock;
429
+ declare function anyTypeAnnotation(): AnyTypeAnnotation;
430
+ declare function arrayTypeAnnotation(elementType: FlowType): ArrayTypeAnnotation;
431
+ declare function booleanTypeAnnotation(): BooleanTypeAnnotation;
432
+ declare function booleanLiteralTypeAnnotation(value: boolean): BooleanLiteralTypeAnnotation;
433
+ declare function nullLiteralTypeAnnotation(): NullLiteralTypeAnnotation;
434
+ declare function classImplements(id: Identifier, typeParameters?: TypeParameterInstantiation | null): ClassImplements;
435
+ declare function declareClass(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareClass;
436
+ declare function declareFunction(id: Identifier): DeclareFunction;
437
+ declare function declareInterface(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): DeclareInterface;
438
+ declare function declareModule(id: Identifier | StringLiteral, body: BlockStatement, kind?: "CommonJS" | "ES" | null): DeclareModule;
439
+ declare function declareModuleExports(typeAnnotation: TypeAnnotation): DeclareModuleExports;
440
+ declare function declareTypeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): DeclareTypeAlias;
441
+ declare function declareOpaqueType(id: Identifier, typeParameters?: TypeParameterDeclaration | null, supertype?: FlowType | null): DeclareOpaqueType;
442
+ declare function declareVariable(id: Identifier): DeclareVariable;
443
+ declare function declareExportDeclaration(declaration?: Flow | null, specifiers?: Array<ExportSpecifier | ExportNamespaceSpecifier> | null, source?: StringLiteral | null): DeclareExportDeclaration;
444
+ declare function declareExportAllDeclaration(source: StringLiteral): DeclareExportAllDeclaration;
445
+ declare function declaredPredicate(value: Flow): DeclaredPredicate;
446
+ declare function existsTypeAnnotation(): ExistsTypeAnnotation;
447
+ declare function functionTypeAnnotation(typeParameters: TypeParameterDeclaration | null | undefined, params: Array<FunctionTypeParam>, rest: FunctionTypeParam | null | undefined, returnType: FlowType): FunctionTypeAnnotation;
448
+ declare function functionTypeParam(name: Identifier | null | undefined, typeAnnotation: FlowType): FunctionTypeParam;
449
+ declare function genericTypeAnnotation(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): GenericTypeAnnotation;
450
+ declare function inferredPredicate(): InferredPredicate;
451
+ declare function interfaceExtends(id: Identifier | QualifiedTypeIdentifier, typeParameters?: TypeParameterInstantiation | null): InterfaceExtends;
452
+ declare function interfaceDeclaration(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, _extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceDeclaration;
453
+ declare function interfaceTypeAnnotation(_extends: Array<InterfaceExtends> | null | undefined, body: ObjectTypeAnnotation): InterfaceTypeAnnotation;
454
+ declare function intersectionTypeAnnotation(types: Array<FlowType>): IntersectionTypeAnnotation;
455
+ declare function mixedTypeAnnotation(): MixedTypeAnnotation;
456
+ declare function emptyTypeAnnotation(): EmptyTypeAnnotation;
457
+ declare function nullableTypeAnnotation(typeAnnotation: FlowType): NullableTypeAnnotation;
458
+ declare function numberLiteralTypeAnnotation(value: number): NumberLiteralTypeAnnotation;
459
+ declare function numberTypeAnnotation(): NumberTypeAnnotation;
460
+ declare function objectTypeAnnotation(properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>, indexers?: Array<ObjectTypeIndexer>, callProperties?: Array<ObjectTypeCallProperty>, internalSlots?: Array<ObjectTypeInternalSlot>, exact?: boolean): ObjectTypeAnnotation;
461
+ declare function objectTypeInternalSlot(id: Identifier, value: FlowType, optional: boolean, _static: boolean, method: boolean): ObjectTypeInternalSlot;
462
+ declare function objectTypeCallProperty(value: FlowType): ObjectTypeCallProperty;
463
+ declare function objectTypeIndexer(id: Identifier | null | undefined, key: FlowType, value: FlowType, variance?: Variance | null): ObjectTypeIndexer;
464
+ declare function objectTypeProperty(key: Identifier | StringLiteral, value: FlowType, variance?: Variance | null): ObjectTypeProperty;
465
+ declare function objectTypeSpreadProperty(argument: FlowType): ObjectTypeSpreadProperty;
466
+ declare function opaqueType(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, supertype: FlowType | null | undefined, impltype: FlowType): OpaqueType;
467
+ declare function qualifiedTypeIdentifier(id: Identifier, qualification: Identifier | QualifiedTypeIdentifier): QualifiedTypeIdentifier;
468
+ declare function stringLiteralTypeAnnotation(value: string): StringLiteralTypeAnnotation;
469
+ declare function stringTypeAnnotation(): StringTypeAnnotation;
470
+ declare function symbolTypeAnnotation(): SymbolTypeAnnotation;
471
+ declare function thisTypeAnnotation(): ThisTypeAnnotation;
472
+ declare function tupleTypeAnnotation(types: Array<FlowType>): TupleTypeAnnotation;
473
+ declare function typeofTypeAnnotation(argument: FlowType): TypeofTypeAnnotation;
474
+ declare function typeAlias(id: Identifier, typeParameters: TypeParameterDeclaration | null | undefined, right: FlowType): TypeAlias;
475
+ declare function typeAnnotation(typeAnnotation: FlowType): TypeAnnotation;
476
+ declare function typeCastExpression(expression: Expression, typeAnnotation: TypeAnnotation): TypeCastExpression;
477
+ declare function typeParameter(bound?: TypeAnnotation | null, _default?: FlowType | null, variance?: Variance | null): TypeParameter;
478
+ declare function typeParameterDeclaration(params: Array<TypeParameter>): TypeParameterDeclaration;
479
+ declare function typeParameterInstantiation(params: Array<FlowType>): TypeParameterInstantiation;
480
+ declare function unionTypeAnnotation(types: Array<FlowType>): UnionTypeAnnotation;
481
+ declare function variance(kind: "minus" | "plus"): Variance;
482
+ declare function voidTypeAnnotation(): VoidTypeAnnotation;
483
+ declare function enumDeclaration(id: Identifier, body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody): EnumDeclaration;
484
+ declare function enumBooleanBody(members: Array<EnumBooleanMember>): EnumBooleanBody;
485
+ declare function enumNumberBody(members: Array<EnumNumberMember>): EnumNumberBody;
486
+ declare function enumStringBody(members: Array<EnumStringMember | EnumDefaultedMember>): EnumStringBody;
487
+ declare function enumSymbolBody(members: Array<EnumDefaultedMember>): EnumSymbolBody;
488
+ declare function enumBooleanMember(id: Identifier): EnumBooleanMember;
489
+ declare function enumNumberMember(id: Identifier, init: NumericLiteral): EnumNumberMember;
490
+ declare function enumStringMember(id: Identifier, init: StringLiteral): EnumStringMember;
491
+ declare function enumDefaultedMember(id: Identifier): EnumDefaultedMember;
492
+ declare function indexedAccessType(objectType: FlowType, indexType: FlowType): IndexedAccessType;
493
+ declare function optionalIndexedAccessType(objectType: FlowType, indexType: FlowType): OptionalIndexedAccessType;
494
+ declare function jsxAttribute(name: JSXIdentifier | JSXNamespacedName, value?: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null): JSXAttribute;
495
+
496
+ declare function jsxClosingElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName): JSXClosingElement;
497
+
498
+ declare function jsxElement(openingElement: JSXOpeningElement, closingElement: JSXClosingElement | null | undefined, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>, selfClosing?: boolean | null): JSXElement;
499
+
500
+ declare function jsxEmptyExpression(): JSXEmptyExpression;
501
+
502
+ declare function jsxExpressionContainer(expression: Expression | JSXEmptyExpression): JSXExpressionContainer;
503
+
504
+ declare function jsxSpreadChild(expression: Expression): JSXSpreadChild;
505
+
506
+ declare function jsxIdentifier(name: string): JSXIdentifier;
507
+
508
+ declare function jsxMemberExpression(object: JSXMemberExpression | JSXIdentifier, property: JSXIdentifier): JSXMemberExpression;
509
+
510
+ declare function jsxNamespacedName(namespace: JSXIdentifier, name: JSXIdentifier): JSXNamespacedName;
511
+
512
+ declare function jsxOpeningElement(name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName, attributes: Array<JSXAttribute | JSXSpreadAttribute>, selfClosing?: boolean): JSXOpeningElement;
513
+
514
+ declare function jsxSpreadAttribute(argument: Expression): JSXSpreadAttribute;
515
+
516
+ declare function jsxText(value: string): JSXText;
517
+
518
+ declare function jsxFragment(openingFragment: JSXOpeningFragment, closingFragment: JSXClosingFragment, children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>): JSXFragment;
519
+
520
+ declare function jsxOpeningFragment(): JSXOpeningFragment;
521
+
522
+ declare function jsxClosingFragment(): JSXClosingFragment;
523
+
524
+ declare function noop(): Noop;
525
+ declare function placeholder(expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern", name: Identifier): Placeholder;
526
+ declare function v8IntrinsicIdentifier(name: string): V8IntrinsicIdentifier;
527
+ declare function argumentPlaceholder(): ArgumentPlaceholder;
528
+ declare function bindExpression(object: Expression, callee: Expression): BindExpression;
529
+ declare function importAttribute(key: Identifier | StringLiteral, value: StringLiteral): ImportAttribute;
530
+ declare function decorator(expression: Expression): Decorator;
531
+ declare function doExpression(body: BlockStatement, async?: boolean): DoExpression;
532
+ declare function exportDefaultSpecifier(exported: Identifier): ExportDefaultSpecifier;
533
+ declare function recordExpression(properties: Array<ObjectProperty | SpreadElement>): RecordExpression;
534
+ declare function tupleExpression(elements?: Array<Expression | SpreadElement>): TupleExpression;
535
+ declare function decimalLiteral(value: string): DecimalLiteral;
536
+ declare function moduleExpression(body: Program): ModuleExpression;
537
+ declare function topicReference(): TopicReference;
538
+ declare function pipelineTopicExpression(expression: Expression): PipelineTopicExpression;
539
+ declare function pipelineBareFunction(callee: Expression): PipelineBareFunction;
540
+ declare function pipelinePrimaryTopicReference(): PipelinePrimaryTopicReference;
541
+ declare function tsParameterProperty(parameter: Identifier | AssignmentPattern): TSParameterProperty;
542
+
543
+ declare function tsDeclareFunction(id: Identifier | null | undefined, typeParameters: TSTypeParameterDeclaration | Noop | null | undefined, params: Array<Identifier | Pattern | RestElement>, returnType?: TSTypeAnnotation | Noop | null): TSDeclareFunction;
544
+
545
+ 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;
546
+
547
+ declare function tsQualifiedName(left: TSEntityName, right: Identifier): TSQualifiedName;
548
+
549
+ declare function tsCallSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSCallSignatureDeclaration;
550
+
551
+ declare function tsConstructSignatureDeclaration(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructSignatureDeclaration;
552
+
553
+ declare function tsPropertySignature(key: Expression, typeAnnotation?: TSTypeAnnotation | null): TSPropertySignature;
554
+
555
+ declare function tsMethodSignature(key: Expression, typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSMethodSignature;
556
+
557
+ declare function tsIndexSignature(parameters: Array<Identifier>, typeAnnotation?: TSTypeAnnotation | null): TSIndexSignature;
558
+
559
+ declare function tsAnyKeyword(): TSAnyKeyword;
560
+
561
+ declare function tsBooleanKeyword(): TSBooleanKeyword;
562
+
563
+ declare function tsBigIntKeyword(): TSBigIntKeyword;
564
+
565
+ declare function tsIntrinsicKeyword(): TSIntrinsicKeyword;
566
+
567
+ declare function tsNeverKeyword(): TSNeverKeyword;
568
+
569
+ declare function tsNullKeyword(): TSNullKeyword;
570
+
571
+ declare function tsNumberKeyword(): TSNumberKeyword;
572
+
573
+ declare function tsObjectKeyword(): TSObjectKeyword;
574
+
575
+ declare function tsStringKeyword(): TSStringKeyword;
576
+
577
+ declare function tsSymbolKeyword(): TSSymbolKeyword;
578
+
579
+ declare function tsUndefinedKeyword(): TSUndefinedKeyword;
580
+
581
+ declare function tsUnknownKeyword(): TSUnknownKeyword;
582
+
583
+ declare function tsVoidKeyword(): TSVoidKeyword;
584
+
585
+ declare function tsThisType(): TSThisType;
586
+
587
+ declare function tsFunctionType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSFunctionType;
588
+
589
+ declare function tsConstructorType(typeParameters: TSTypeParameterDeclaration | null | undefined, parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>, typeAnnotation?: TSTypeAnnotation | null): TSConstructorType;
590
+
591
+ declare function tsTypeReference(typeName: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSTypeReference;
592
+
593
+ declare function tsTypePredicate(parameterName: Identifier | TSThisType, typeAnnotation?: TSTypeAnnotation | null, asserts?: boolean | null): TSTypePredicate;
594
+
595
+ declare function tsTypeQuery(exprName: TSEntityName | TSImportType, typeParameters?: TSTypeParameterInstantiation | null): TSTypeQuery;
596
+
597
+ declare function tsTypeLiteral(members: Array<TSTypeElement>): TSTypeLiteral;
598
+
599
+ declare function tsArrayType(elementType: TSType): TSArrayType;
600
+
601
+ declare function tsTupleType(elementTypes: Array<TSType | TSNamedTupleMember>): TSTupleType;
602
+
603
+ declare function tsOptionalType(typeAnnotation: TSType): TSOptionalType;
604
+
605
+ declare function tsRestType(typeAnnotation: TSType): TSRestType;
606
+
607
+ declare function tsNamedTupleMember(label: Identifier, elementType: TSType, optional?: boolean): TSNamedTupleMember;
608
+
609
+ declare function tsUnionType(types: Array<TSType>): TSUnionType;
610
+
611
+ declare function tsIntersectionType(types: Array<TSType>): TSIntersectionType;
612
+
613
+ declare function tsConditionalType(checkType: TSType, extendsType: TSType, trueType: TSType, falseType: TSType): TSConditionalType;
614
+
615
+ declare function tsInferType(typeParameter: TSTypeParameter): TSInferType;
616
+
617
+ declare function tsParenthesizedType(typeAnnotation: TSType): TSParenthesizedType;
618
+
619
+ declare function tsTypeOperator(typeAnnotation: TSType): TSTypeOperator;
620
+
621
+ declare function tsIndexedAccessType(objectType: TSType, indexType: TSType): TSIndexedAccessType;
622
+
623
+ declare function tsMappedType(typeParameter: TSTypeParameter, typeAnnotation?: TSType | null, nameType?: TSType | null): TSMappedType;
624
+
625
+ declare function tsLiteralType(literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression): TSLiteralType;
626
+
627
+ declare function tsExpressionWithTypeArguments(expression: TSEntityName, typeParameters?: TSTypeParameterInstantiation | null): TSExpressionWithTypeArguments;
628
+
629
+ declare function tsInterfaceDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, _extends: Array<TSExpressionWithTypeArguments> | null | undefined, body: TSInterfaceBody): TSInterfaceDeclaration;
630
+
631
+ declare function tsInterfaceBody(body: Array<TSTypeElement>): TSInterfaceBody;
632
+
633
+ declare function tsTypeAliasDeclaration(id: Identifier, typeParameters: TSTypeParameterDeclaration | null | undefined, typeAnnotation: TSType): TSTypeAliasDeclaration;
634
+
635
+ declare function tsInstantiationExpression(expression: Expression, typeParameters?: TSTypeParameterInstantiation | null): TSInstantiationExpression;
636
+
637
+ declare function tsAsExpression(expression: Expression, typeAnnotation: TSType): TSAsExpression;
638
+
639
+ declare function tsSatisfiesExpression(expression: Expression, typeAnnotation: TSType): TSSatisfiesExpression;
640
+
641
+ declare function tsTypeAssertion(typeAnnotation: TSType, expression: Expression): TSTypeAssertion;
642
+
643
+ declare function tsEnumDeclaration(id: Identifier, members: Array<TSEnumMember>): TSEnumDeclaration;
644
+
645
+ declare function tsEnumMember(id: Identifier | StringLiteral, initializer?: Expression | null): TSEnumMember;
646
+
647
+ declare function tsModuleDeclaration(id: Identifier | StringLiteral, body: TSModuleBlock | TSModuleDeclaration): TSModuleDeclaration;
648
+
649
+ declare function tsModuleBlock(body: Array<Statement>): TSModuleBlock;
650
+
651
+ declare function tsImportType(argument: StringLiteral, qualifier?: TSEntityName | null, typeParameters?: TSTypeParameterInstantiation | null): TSImportType;
652
+
653
+ declare function tsImportEqualsDeclaration(id: Identifier, moduleReference: TSEntityName | TSExternalModuleReference): TSImportEqualsDeclaration;
654
+
655
+ declare function tsExternalModuleReference(expression: StringLiteral): TSExternalModuleReference;
656
+
657
+ declare function tsNonNullExpression(expression: Expression): TSNonNullExpression;
658
+
659
+ declare function tsExportAssignment(expression: Expression): TSExportAssignment;
660
+
661
+ declare function tsNamespaceExportDeclaration(id: Identifier): TSNamespaceExportDeclaration;
662
+
663
+ declare function tsTypeAnnotation(typeAnnotation: TSType): TSTypeAnnotation;
664
+
665
+ declare function tsTypeParameterInstantiation(params: Array<TSType>): TSTypeParameterInstantiation;
666
+
667
+ declare function tsTypeParameterDeclaration(params: Array<TSTypeParameter>): TSTypeParameterDeclaration;
668
+
669
+ declare function tsTypeParameter(constraint: TSType | null | undefined, _default: TSType | null | undefined, name: string): TSTypeParameter;
670
+
671
+ /** @deprecated */
672
+ declare function NumberLiteral$1(value: number): NumericLiteral;
673
+
674
+ /** @deprecated */
675
+ declare function RegexLiteral$1(pattern: string, flags?: string): RegExpLiteral;
676
+
677
+ /** @deprecated */
678
+ declare function RestProperty$1(argument: LVal): RestElement;
679
+
680
+ /** @deprecated */
681
+ declare function SpreadProperty$1(argument: Expression): SpreadElement;
682
+
683
+ declare function buildUndefinedNode(): UnaryExpression;
684
+
685
+ /**
686
+ * Create a clone of a `node` including only properties belonging to the node.
687
+ * If the second parameter is `false`, cloneNode performs a shallow clone.
688
+ * If the third parameter is true, the cloned nodes exclude location properties.
689
+ */
690
+ declare function cloneNode<T extends Node>(node: T, deep?: boolean, withoutLoc?: boolean): T;
691
+
692
+ /**
693
+ * Create a shallow clone of a `node`, including only
694
+ * properties belonging to the node.
695
+ * @deprecated Use t.cloneNode instead.
696
+ */
697
+ declare function clone<T extends Node>(node: T): T;
698
+
699
+ /**
700
+ * Create a deep clone of a `node` and all of it's child nodes
701
+ * including only properties belonging to the node.
702
+ * @deprecated Use t.cloneNode instead.
703
+ */
704
+ declare function cloneDeep<T extends Node>(node: T): T;
705
+
706
+ /**
707
+ * Create a deep clone of a `node` and all of it's child nodes
708
+ * including only properties belonging to the node.
709
+ * excluding `_private` and location properties.
710
+ */
711
+ declare function cloneDeepWithoutLoc<T extends Node>(node: T): T;
712
+
713
+ /**
714
+ * Create a shallow clone of a `node` excluding `_private` and location properties.
715
+ */
716
+ declare function cloneWithoutLoc<T extends Node>(node: T): T;
717
+
718
+ /**
719
+ * Add comment of certain type to a node.
720
+ */
721
+ declare function addComment<T extends Node>(node: T, type: CommentTypeShorthand, content: string, line?: boolean): T;
722
+
723
+ /**
724
+ * Add comments of certain type to a node.
725
+ */
726
+ declare function addComments<T extends Node>(node: T, type: CommentTypeShorthand, comments: Array<Comment>): T;
727
+
728
+ declare function inheritInnerComments(child: Node, parent: Node): void;
729
+
730
+ declare function inheritLeadingComments(child: Node, parent: Node): void;
731
+
732
+ /**
733
+ * Inherit all unique comments from `parent` node to `child` node.
734
+ */
735
+ declare function inheritsComments<T extends Node>(child: T, parent: Node): T;
736
+
737
+ declare function inheritTrailingComments(child: Node, parent: Node): void;
738
+
739
+ /**
740
+ * Remove comment properties from a node.
741
+ */
742
+ declare function removeComments<T extends Node>(node: T): T;
743
+
744
+ declare const STANDARDIZED_TYPES: ("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" | keyof Aliases)[];
745
+ declare const EXPRESSION_TYPES: ("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" | keyof Aliases)[];
746
+ declare const BINARY_TYPES: ("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" | keyof Aliases)[];
747
+ declare const SCOPABLE_TYPES: ("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" | keyof Aliases)[];
748
+ declare const BLOCKPARENT_TYPES: ("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" | keyof Aliases)[];
749
+ declare const BLOCK_TYPES: ("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" | keyof Aliases)[];
750
+ declare const STATEMENT_TYPES: ("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" | keyof Aliases)[];
751
+ declare const TERMINATORLESS_TYPES: ("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" | keyof Aliases)[];
752
+ declare const COMPLETIONSTATEMENT_TYPES: ("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" | keyof Aliases)[];
753
+ declare const CONDITIONAL_TYPES: ("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" | keyof Aliases)[];
754
+ declare const LOOP_TYPES: ("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" | keyof Aliases)[];
755
+ declare const WHILE_TYPES: ("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" | keyof Aliases)[];
756
+ declare const EXPRESSIONWRAPPER_TYPES: ("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" | keyof Aliases)[];
757
+ declare const FOR_TYPES: ("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" | keyof Aliases)[];
758
+ declare const FORXSTATEMENT_TYPES: ("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" | keyof Aliases)[];
759
+ declare const FUNCTION_TYPES: ("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" | keyof Aliases)[];
760
+ declare const FUNCTIONPARENT_TYPES: ("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" | keyof Aliases)[];
761
+ declare const PUREISH_TYPES: ("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" | keyof Aliases)[];
762
+ declare const DECLARATION_TYPES: ("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" | keyof Aliases)[];
763
+ declare const PATTERNLIKE_TYPES: ("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" | keyof Aliases)[];
764
+ declare const LVAL_TYPES: ("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" | keyof Aliases)[];
765
+ declare const TSENTITYNAME_TYPES: ("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" | keyof Aliases)[];
766
+ declare const LITERAL_TYPES: ("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" | keyof Aliases)[];
767
+ declare const IMMUTABLE_TYPES: ("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" | keyof Aliases)[];
768
+ declare const USERWHITESPACABLE_TYPES: ("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" | keyof Aliases)[];
769
+ declare const METHOD_TYPES: ("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" | keyof Aliases)[];
770
+ declare const OBJECTMEMBER_TYPES: ("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" | keyof Aliases)[];
771
+ declare const PROPERTY_TYPES: ("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" | keyof Aliases)[];
772
+ declare const UNARYLIKE_TYPES: ("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" | keyof Aliases)[];
773
+ declare const PATTERN_TYPES: ("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" | keyof Aliases)[];
774
+ declare const CLASS_TYPES: ("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" | keyof Aliases)[];
775
+ declare const IMPORTOREXPORTDECLARATION_TYPES: ("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" | keyof Aliases)[];
776
+ declare const EXPORTDECLARATION_TYPES: ("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" | keyof Aliases)[];
777
+ declare const MODULESPECIFIER_TYPES: ("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" | keyof Aliases)[];
778
+ declare const ACCESSOR_TYPES: ("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" | keyof Aliases)[];
779
+ declare const PRIVATE_TYPES: ("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" | keyof Aliases)[];
780
+ declare const FLOW_TYPES: ("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" | keyof Aliases)[];
781
+ declare const FLOWTYPE_TYPES: ("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" | keyof Aliases)[];
782
+ declare const FLOWBASEANNOTATION_TYPES: ("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" | keyof Aliases)[];
783
+ declare const FLOWDECLARATION_TYPES: ("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" | keyof Aliases)[];
784
+ declare const FLOWPREDICATE_TYPES: ("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" | keyof Aliases)[];
785
+ declare const ENUMBODY_TYPES: ("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" | keyof Aliases)[];
786
+ declare const ENUMMEMBER_TYPES: ("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" | keyof Aliases)[];
787
+ declare const JSX_TYPES: ("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" | keyof Aliases)[];
788
+ declare const MISCELLANEOUS_TYPES: ("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" | keyof Aliases)[];
789
+ declare const TYPESCRIPT_TYPES: ("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" | keyof Aliases)[];
790
+ declare const TSTYPEELEMENT_TYPES: ("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" | keyof Aliases)[];
791
+ declare const TSTYPE_TYPES: ("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" | keyof Aliases)[];
792
+ declare const TSBASETYPE_TYPES: ("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" | keyof Aliases)[];
793
+ /**
794
+ * @deprecated migrate to IMPORTOREXPORTDECLARATION_TYPES.
795
+ */
796
+ declare const MODULEDECLARATION_TYPES: ("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" | keyof Aliases)[];
797
+
798
+ declare const STATEMENT_OR_BLOCK_KEYS: string[];
799
+ declare const FLATTENABLE_KEYS: string[];
800
+ declare const FOR_INIT_KEYS: string[];
801
+ declare const COMMENT_KEYS: readonly ["leadingComments", "trailingComments", "innerComments"];
802
+ declare const LOGICAL_OPERATORS: string[];
803
+ declare const UPDATE_OPERATORS: string[];
804
+ declare const BOOLEAN_NUMBER_BINARY_OPERATORS: string[];
805
+ declare const EQUALITY_BINARY_OPERATORS: string[];
806
+ declare const COMPARISON_BINARY_OPERATORS: string[];
807
+ declare const BOOLEAN_BINARY_OPERATORS: string[];
808
+ declare const NUMBER_BINARY_OPERATORS: string[];
809
+ declare const BINARY_OPERATORS: string[];
810
+ declare const ASSIGNMENT_OPERATORS: string[];
811
+ declare const BOOLEAN_UNARY_OPERATORS: string[];
812
+ declare const NUMBER_UNARY_OPERATORS: string[];
813
+ declare const STRING_UNARY_OPERATORS: string[];
814
+ declare const UNARY_OPERATORS: string[];
815
+ declare const INHERIT_KEYS: {
816
+ readonly optional: readonly ["typeAnnotation", "typeParameters", "returnType"];
817
+ readonly force: readonly ["start", "loc", "end"];
818
+ };
819
+ declare const BLOCK_SCOPED_SYMBOL: unique symbol;
820
+ declare const NOT_LOCAL_BINDING: unique symbol;
821
+
822
+ /**
823
+ * Ensure the `key` (defaults to "body") of a `node` is a block.
824
+ * Casting it to a block if it is not.
825
+ *
826
+ * Returns the BlockStatement
827
+ */
828
+ declare function ensureBlock(node: Node, key?: string): BlockStatement;
829
+
830
+ declare function toBindingIdentifierName(name: string): string;
831
+
832
+ declare function toBlock(node: Statement | Expression, parent?: Node): BlockStatement;
833
+
834
+ declare function toComputedKey(node: ObjectMember | ObjectProperty | ClassMethod | ClassProperty | ClassAccessorProperty | MemberExpression | OptionalMemberExpression, key?: Expression | PrivateName): PrivateName | Expression;
835
+
836
+ declare const _default$3: {
837
+ (node: Function): FunctionExpression;
838
+ (node: Class): ClassExpression;
839
+ (node: ExpressionStatement | Expression | Class | Function): Expression;
840
+ };
841
+
842
+ declare function toIdentifier(input: string): string;
843
+
844
+ declare function toKeyAlias(node: Method | Property, key?: Node): string;
845
+ declare namespace toKeyAlias {
846
+ var uid: number;
847
+ var increment: () => number;
848
+ }
849
+
850
+ declare const _default$2: {
851
+ (node: AssignmentExpression, ignore?: boolean): ExpressionStatement;
852
+ <T extends Statement>(node: T, ignore: false): T;
853
+ <T_1 extends Statement>(node: T_1, ignore?: boolean): false | T_1;
854
+ (node: Class, ignore: false): ClassDeclaration;
855
+ (node: Class, ignore?: boolean): ClassDeclaration | false;
856
+ (node: Function, ignore: false): FunctionDeclaration;
857
+ (node: Function, ignore?: boolean): FunctionDeclaration | false;
858
+ (node: Node, ignore: false): Statement;
859
+ (node: Node, ignore?: boolean): Statement | false;
860
+ };
861
+
862
+ declare const _default$1: {
863
+ (value: undefined): Identifier;
864
+ (value: boolean): BooleanLiteral;
865
+ (value: null): NullLiteral;
866
+ (value: string): StringLiteral;
867
+ (value: number): NumericLiteral | BinaryExpression | UnaryExpression;
868
+ (value: RegExp): RegExpLiteral;
869
+ (value: ReadonlyArray<unknown>): ArrayExpression;
870
+ (value: object): ObjectExpression;
871
+ (value: unknown): Expression;
872
+ };
873
+
874
+ declare const VISITOR_KEYS: Record<string, string[]>;
875
+ declare const ALIAS_KEYS: Partial<Record<NodeTypesWithoutComment, string[]>>;
876
+ declare const FLIPPED_ALIAS_KEYS: Record<string, NodeTypesWithoutComment[]>;
877
+ declare const NODE_FIELDS: Record<string, FieldDefinitions>;
878
+ declare const BUILDER_KEYS: Record<string, string[]>;
879
+ declare const DEPRECATED_KEYS: Record<string, NodeTypesWithoutComment>;
880
+ declare const NODE_PARENT_VALIDATIONS: Record<string, Validator>;
881
+ declare function getType(val: any): "string" | "number" | "bigint" | "boolean" | "symbol" | "undefined" | "object" | "function" | "null" | "array";
882
+ type NodeTypesWithoutComment = Node["type"] | keyof Aliases;
883
+ type NodeTypes = NodeTypesWithoutComment | Comment["type"];
884
+ type PrimitiveTypes = ReturnType<typeof getType>;
885
+ type FieldDefinitions = {
886
+ [x: string]: FieldOptions;
887
+ };
888
+ type Validator = ({
889
+ type: PrimitiveTypes;
890
+ } | {
891
+ each: Validator;
892
+ } | {
893
+ chainOf: Validator[];
894
+ } | {
895
+ oneOf: any[];
896
+ } | {
897
+ oneOfNodeTypes: NodeTypes[];
898
+ } | {
899
+ oneOfNodeOrValueTypes: (NodeTypes | PrimitiveTypes)[];
900
+ } | {
901
+ shapeOf: {
902
+ [x: string]: FieldOptions;
903
+ };
904
+ } | {}) & ((node: Node, key: string, val: any) => void);
905
+ type FieldOptions = {
906
+ default?: string | number | boolean | [];
907
+ optional?: boolean;
908
+ deprecated?: boolean;
909
+ validate?: Validator;
910
+ };
911
+
912
+ declare const PLACEHOLDERS: readonly ["Identifier", "StringLiteral", "Expression", "Statement", "Declaration", "BlockStatement", "ClassBody", "Pattern"];
913
+ declare const PLACEHOLDERS_ALIAS: Record<string, string[]>;
914
+ declare const PLACEHOLDERS_FLIPPED_ALIAS: Record<string, string[]>;
915
+
916
+ declare const DEPRECATED_ALIASES: {
917
+ ModuleDeclaration: string;
918
+ };
919
+
920
+ declare const TYPES: Array<string>;
921
+
922
+ /**
923
+ * Append a node to a member expression.
924
+ */
925
+ declare function appendToMemberExpression(member: MemberExpression, append: MemberExpression["property"], computed?: boolean): MemberExpression;
926
+
927
+ /**
928
+ * Inherit all contextual properties from `parent` node to `child` node.
929
+ */
930
+ declare function inherits<T extends Node | null | undefined>(child: T, parent: Node | null | undefined): T;
931
+
932
+ /**
933
+ * Prepend a node to a member expression.
934
+ */
935
+ declare function prependToMemberExpression<T extends Pick<MemberExpression, "object" | "property">>(member: T, prepend: MemberExpression["object"]): T;
936
+
937
+ type Options = {
938
+ preserveComments?: boolean;
939
+ };
940
+ /**
941
+ * Remove all of the _* properties from a node along with the additional metadata
942
+ * properties like location data and raw token data.
943
+ */
944
+ declare function removeProperties(node: Node, opts?: Options): void;
945
+
946
+ declare function removePropertiesDeep<T extends Node>(tree: T, opts?: {
947
+ preserveComments: boolean;
948
+ } | null): T;
949
+
950
+ /**
951
+ * Dedupe type annotations.
952
+ */
953
+ declare function removeTypeDuplicates(nodesIn: ReadonlyArray<FlowType | false | null | undefined>): FlowType[];
954
+
955
+ declare function getBindingIdentifiers(node: Node, duplicates: true, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Array<Identifier>>;
956
+ declare function getBindingIdentifiers(node: Node, duplicates?: false, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Identifier>;
957
+ declare function getBindingIdentifiers(node: Node, duplicates?: boolean, outerOnly?: boolean, newBindingsOnly?: boolean): Record<string, Identifier> | Record<string, Array<Identifier>>;
958
+ declare namespace getBindingIdentifiers {
959
+ var keys: {
960
+ DeclareClass: string[];
961
+ DeclareFunction: string[];
962
+ DeclareModule: string[];
963
+ DeclareVariable: string[];
964
+ DeclareInterface: string[];
965
+ DeclareTypeAlias: string[];
966
+ DeclareOpaqueType: string[];
967
+ InterfaceDeclaration: string[];
968
+ TypeAlias: string[];
969
+ OpaqueType: string[];
970
+ CatchClause: string[];
971
+ LabeledStatement: string[];
972
+ UnaryExpression: string[];
973
+ AssignmentExpression: string[];
974
+ ImportSpecifier: string[];
975
+ ImportNamespaceSpecifier: string[];
976
+ ImportDefaultSpecifier: string[];
977
+ ImportDeclaration: string[];
978
+ ExportSpecifier: string[];
979
+ ExportNamespaceSpecifier: string[];
980
+ ExportDefaultSpecifier: string[];
981
+ FunctionDeclaration: string[];
982
+ FunctionExpression: string[];
983
+ ArrowFunctionExpression: string[];
984
+ ObjectMethod: string[];
985
+ ClassMethod: string[];
986
+ ClassPrivateMethod: string[];
987
+ ForInStatement: string[];
988
+ ForOfStatement: string[];
989
+ ClassDeclaration: string[];
990
+ ClassExpression: string[];
991
+ RestElement: string[];
992
+ UpdateExpression: string[];
993
+ ObjectProperty: string[];
994
+ AssignmentPattern: string[];
995
+ ArrayPattern: string[];
996
+ ObjectPattern: string[];
997
+ VariableDeclaration: string[];
998
+ VariableDeclarator: string[];
999
+ };
1000
+ }
1001
+
1002
+ declare const _default: {
1003
+ (node: Node, duplicates: true): Record<string, Array<Identifier>>;
1004
+ (node: Node, duplicates?: false): Record<string, Identifier>;
1005
+ (node: Node, duplicates?: boolean): Record<string, Identifier> | Record<string, Array<Identifier>>;
1006
+ };
1007
+
1008
+ type TraversalAncestors = Array<{
1009
+ node: Node;
1010
+ key: string;
1011
+ index?: number;
1012
+ }>;
1013
+ type TraversalHandler<T> = (this: undefined, node: Node, parent: TraversalAncestors, state: T) => void;
1014
+ type TraversalHandlers<T> = {
1015
+ enter?: TraversalHandler<T>;
1016
+ exit?: TraversalHandler<T>;
1017
+ };
1018
+ /**
1019
+ * A general AST traversal with both prefix and postfix handlers, and a
1020
+ * state object. Exposes ancestry data to each handler so that more complex
1021
+ * AST data can be taken into account.
1022
+ */
1023
+ declare function traverse<T>(node: Node, handlers: TraversalHandler<T> | TraversalHandlers<T>, state?: T): void;
1024
+
1025
+ /**
1026
+ * A prefix AST traversal implementation meant for simple searching
1027
+ * and processing.
1028
+ */
1029
+ declare function traverseFast<Options = {}>(node: Node | null | undefined, enter: (node: Node, opts?: Options) => void, opts?: Options): void;
1030
+
1031
+ declare function shallowEqual<T extends object>(actual: object, expected: T): actual is T;
1032
+
1033
+ declare function is<T extends Node["type"]>(type: T, node: Node | null | undefined, opts?: undefined): node is Extract<Node, {
1034
+ type: T;
1035
+ }>;
1036
+ declare function is<T extends Node["type"], P extends Extract<Node, {
1037
+ type: T;
1038
+ }>>(type: T, n: Node | null | undefined, required: Partial<P>): n is P;
1039
+ declare function is<P extends Node>(type: string, node: Node | null | undefined, opts: Partial<P>): node is P;
1040
+ declare function is(type: string, node: Node | null | undefined, opts?: Partial<Node>): node is Node;
1041
+
1042
+ /**
1043
+ * Check if the input `node` is a binding identifier.
1044
+ */
1045
+ declare function isBinding(node: Node, parent: Node, grandparent?: Node): boolean;
1046
+
1047
+ /**
1048
+ * Check if the input `node` is block scoped.
1049
+ */
1050
+ declare function isBlockScoped(node: Node): boolean;
1051
+
1052
+ /**
1053
+ * Check if the input `node` is definitely immutable.
1054
+ */
1055
+ declare function isImmutable(node: Node): boolean;
1056
+
1057
+ /**
1058
+ * Check if the input `node` is a `let` variable declaration.
1059
+ */
1060
+ declare function isLet(node: Node): boolean;
1061
+
1062
+ declare function isNode(node: any): node is Node;
1063
+
1064
+ /**
1065
+ * Check if two nodes are equivalent
1066
+ */
1067
+ declare function isNodesEquivalent<T extends Partial<Node>>(a: T, b: any): b is T;
1068
+
1069
+ /**
1070
+ * Test if a `placeholderType` is a `targetType` or if `targetType` is an alias of `placeholderType`.
1071
+ */
1072
+ declare function isPlaceholderType(placeholderType: string, targetType: string): boolean;
1073
+
1074
+ /**
1075
+ * Check if the input `node` is a reference to a bound variable.
1076
+ */
1077
+ declare function isReferenced(node: Node, parent: Node, grandparent?: Node): boolean;
1078
+
1079
+ /**
1080
+ * Check if the input `node` is a scope.
1081
+ */
1082
+ declare function isScope(node: Node, parent: Node): boolean;
1083
+
1084
+ /**
1085
+ * Check if the input `specifier` is a `default` import or export.
1086
+ */
1087
+ declare function isSpecifierDefault(specifier: ModuleSpecifier): boolean;
1088
+
1089
+ declare function isType<T extends Node["type"]>(nodeType: string, targetType: T): nodeType is T;
1090
+ declare function isType(nodeType: string | null | undefined, targetType: string): boolean;
1091
+
1092
+ /**
1093
+ * Check if the input `name` is a valid identifier name according to the ES3 specification.
1094
+ *
1095
+ * Additional ES3 reserved words are
1096
+ */
1097
+ declare function isValidES3Identifier(name: string): boolean;
1098
+
1099
+ /**
1100
+ * Check if the input `name` is a valid identifier name
1101
+ * and isn't a reserved word.
1102
+ */
1103
+ declare function isValidIdentifier(name: string, reserved?: boolean): boolean;
1104
+
1105
+ /**
1106
+ * Check if the input `node` is a variable declaration.
1107
+ */
1108
+ declare function isVar(node: Node): boolean;
1109
+
1110
+ /**
1111
+ * Determines whether or not the input node `member` matches the
1112
+ * input `match`.
1113
+ *
1114
+ * For example, given the match `React.createClass` it would match the
1115
+ * parsed nodes of `React.createClass` and `React["createClass"]`.
1116
+ */
1117
+ declare function matchesPattern(member: Node | null | undefined, match: string | string[], allowPartial?: boolean): boolean;
1118
+
1119
+ declare function validate(node: Node | undefined | null, key: string, val: any): void;
1120
+
1121
+ /**
1122
+ * Build a function that when called will return whether or not the
1123
+ * input `node` `MemberExpression` matches the input `match`.
1124
+ *
1125
+ * For example, given the match `React.createClass` it would match the
1126
+ * parsed nodes of `React.createClass` and `React["createClass"]`.
1127
+ */
1128
+ declare function buildMatchMemberExpression(match: string, allowPartial?: boolean): (member: Node) => boolean;
1129
+
1130
+ type Opts<Obj> = Partial<{
1131
+ [Prop in keyof Obj]: Obj[Prop] extends Node ? Node : Obj[Prop] extends Node[] ? Node[] : Obj[Prop];
1132
+ }>;
1133
+ declare function isArrayExpression(node: Node | null | undefined, opts?: Opts<ArrayExpression> | null): node is ArrayExpression;
1134
+ declare function isAssignmentExpression(node: Node | null | undefined, opts?: Opts<AssignmentExpression> | null): node is AssignmentExpression;
1135
+ declare function isBinaryExpression(node: Node | null | undefined, opts?: Opts<BinaryExpression> | null): node is BinaryExpression;
1136
+ declare function isInterpreterDirective(node: Node | null | undefined, opts?: Opts<InterpreterDirective> | null): node is InterpreterDirective;
1137
+ declare function isDirective(node: Node | null | undefined, opts?: Opts<Directive> | null): node is Directive;
1138
+ declare function isDirectiveLiteral(node: Node | null | undefined, opts?: Opts<DirectiveLiteral> | null): node is DirectiveLiteral;
1139
+ declare function isBlockStatement(node: Node | null | undefined, opts?: Opts<BlockStatement> | null): node is BlockStatement;
1140
+ declare function isBreakStatement(node: Node | null | undefined, opts?: Opts<BreakStatement> | null): node is BreakStatement;
1141
+ declare function isCallExpression(node: Node | null | undefined, opts?: Opts<CallExpression> | null): node is CallExpression;
1142
+ declare function isCatchClause(node: Node | null | undefined, opts?: Opts<CatchClause> | null): node is CatchClause;
1143
+ declare function isConditionalExpression(node: Node | null | undefined, opts?: Opts<ConditionalExpression> | null): node is ConditionalExpression;
1144
+ declare function isContinueStatement(node: Node | null | undefined, opts?: Opts<ContinueStatement> | null): node is ContinueStatement;
1145
+ declare function isDebuggerStatement(node: Node | null | undefined, opts?: Opts<DebuggerStatement> | null): node is DebuggerStatement;
1146
+ declare function isDoWhileStatement(node: Node | null | undefined, opts?: Opts<DoWhileStatement> | null): node is DoWhileStatement;
1147
+ declare function isEmptyStatement(node: Node | null | undefined, opts?: Opts<EmptyStatement> | null): node is EmptyStatement;
1148
+ declare function isExpressionStatement(node: Node | null | undefined, opts?: Opts<ExpressionStatement> | null): node is ExpressionStatement;
1149
+ declare function isFile(node: Node | null | undefined, opts?: Opts<File> | null): node is File;
1150
+ declare function isForInStatement(node: Node | null | undefined, opts?: Opts<ForInStatement> | null): node is ForInStatement;
1151
+ declare function isForStatement(node: Node | null | undefined, opts?: Opts<ForStatement> | null): node is ForStatement;
1152
+ declare function isFunctionDeclaration(node: Node | null | undefined, opts?: Opts<FunctionDeclaration> | null): node is FunctionDeclaration;
1153
+ declare function isFunctionExpression(node: Node | null | undefined, opts?: Opts<FunctionExpression> | null): node is FunctionExpression;
1154
+ declare function isIdentifier(node: Node | null | undefined, opts?: Opts<Identifier> | null): node is Identifier;
1155
+ declare function isIfStatement(node: Node | null | undefined, opts?: Opts<IfStatement> | null): node is IfStatement;
1156
+ declare function isLabeledStatement(node: Node | null | undefined, opts?: Opts<LabeledStatement> | null): node is LabeledStatement;
1157
+ declare function isStringLiteral(node: Node | null | undefined, opts?: Opts<StringLiteral> | null): node is StringLiteral;
1158
+ declare function isNumericLiteral(node: Node | null | undefined, opts?: Opts<NumericLiteral> | null): node is NumericLiteral;
1159
+ declare function isNullLiteral(node: Node | null | undefined, opts?: Opts<NullLiteral> | null): node is NullLiteral;
1160
+ declare function isBooleanLiteral(node: Node | null | undefined, opts?: Opts<BooleanLiteral> | null): node is BooleanLiteral;
1161
+ declare function isRegExpLiteral(node: Node | null | undefined, opts?: Opts<RegExpLiteral> | null): node is RegExpLiteral;
1162
+ declare function isLogicalExpression(node: Node | null | undefined, opts?: Opts<LogicalExpression> | null): node is LogicalExpression;
1163
+ declare function isMemberExpression(node: Node | null | undefined, opts?: Opts<MemberExpression> | null): node is MemberExpression;
1164
+ declare function isNewExpression(node: Node | null | undefined, opts?: Opts<NewExpression> | null): node is NewExpression;
1165
+ declare function isProgram(node: Node | null | undefined, opts?: Opts<Program> | null): node is Program;
1166
+ declare function isObjectExpression(node: Node | null | undefined, opts?: Opts<ObjectExpression> | null): node is ObjectExpression;
1167
+ declare function isObjectMethod(node: Node | null | undefined, opts?: Opts<ObjectMethod> | null): node is ObjectMethod;
1168
+ declare function isObjectProperty(node: Node | null | undefined, opts?: Opts<ObjectProperty> | null): node is ObjectProperty;
1169
+ declare function isRestElement(node: Node | null | undefined, opts?: Opts<RestElement> | null): node is RestElement;
1170
+ declare function isReturnStatement(node: Node | null | undefined, opts?: Opts<ReturnStatement> | null): node is ReturnStatement;
1171
+ declare function isSequenceExpression(node: Node | null | undefined, opts?: Opts<SequenceExpression> | null): node is SequenceExpression;
1172
+ declare function isParenthesizedExpression(node: Node | null | undefined, opts?: Opts<ParenthesizedExpression> | null): node is ParenthesizedExpression;
1173
+ declare function isSwitchCase(node: Node | null | undefined, opts?: Opts<SwitchCase> | null): node is SwitchCase;
1174
+ declare function isSwitchStatement(node: Node | null | undefined, opts?: Opts<SwitchStatement> | null): node is SwitchStatement;
1175
+ declare function isThisExpression(node: Node | null | undefined, opts?: Opts<ThisExpression> | null): node is ThisExpression;
1176
+ declare function isThrowStatement(node: Node | null | undefined, opts?: Opts<ThrowStatement> | null): node is ThrowStatement;
1177
+ declare function isTryStatement(node: Node | null | undefined, opts?: Opts<TryStatement> | null): node is TryStatement;
1178
+ declare function isUnaryExpression(node: Node | null | undefined, opts?: Opts<UnaryExpression> | null): node is UnaryExpression;
1179
+ declare function isUpdateExpression(node: Node | null | undefined, opts?: Opts<UpdateExpression> | null): node is UpdateExpression;
1180
+ declare function isVariableDeclaration(node: Node | null | undefined, opts?: Opts<VariableDeclaration> | null): node is VariableDeclaration;
1181
+ declare function isVariableDeclarator(node: Node | null | undefined, opts?: Opts<VariableDeclarator> | null): node is VariableDeclarator;
1182
+ declare function isWhileStatement(node: Node | null | undefined, opts?: Opts<WhileStatement> | null): node is WhileStatement;
1183
+ declare function isWithStatement(node: Node | null | undefined, opts?: Opts<WithStatement> | null): node is WithStatement;
1184
+ declare function isAssignmentPattern(node: Node | null | undefined, opts?: Opts<AssignmentPattern> | null): node is AssignmentPattern;
1185
+ declare function isArrayPattern(node: Node | null | undefined, opts?: Opts<ArrayPattern> | null): node is ArrayPattern;
1186
+ declare function isArrowFunctionExpression(node: Node | null | undefined, opts?: Opts<ArrowFunctionExpression> | null): node is ArrowFunctionExpression;
1187
+ declare function isClassBody(node: Node | null | undefined, opts?: Opts<ClassBody> | null): node is ClassBody;
1188
+ declare function isClassExpression(node: Node | null | undefined, opts?: Opts<ClassExpression> | null): node is ClassExpression;
1189
+ declare function isClassDeclaration(node: Node | null | undefined, opts?: Opts<ClassDeclaration> | null): node is ClassDeclaration;
1190
+ declare function isExportAllDeclaration(node: Node | null | undefined, opts?: Opts<ExportAllDeclaration> | null): node is ExportAllDeclaration;
1191
+ declare function isExportDefaultDeclaration(node: Node | null | undefined, opts?: Opts<ExportDefaultDeclaration> | null): node is ExportDefaultDeclaration;
1192
+ declare function isExportNamedDeclaration(node: Node | null | undefined, opts?: Opts<ExportNamedDeclaration> | null): node is ExportNamedDeclaration;
1193
+ declare function isExportSpecifier(node: Node | null | undefined, opts?: Opts<ExportSpecifier> | null): node is ExportSpecifier;
1194
+ declare function isForOfStatement(node: Node | null | undefined, opts?: Opts<ForOfStatement> | null): node is ForOfStatement;
1195
+ declare function isImportDeclaration(node: Node | null | undefined, opts?: Opts<ImportDeclaration> | null): node is ImportDeclaration;
1196
+ declare function isImportDefaultSpecifier(node: Node | null | undefined, opts?: Opts<ImportDefaultSpecifier> | null): node is ImportDefaultSpecifier;
1197
+ declare function isImportNamespaceSpecifier(node: Node | null | undefined, opts?: Opts<ImportNamespaceSpecifier> | null): node is ImportNamespaceSpecifier;
1198
+ declare function isImportSpecifier(node: Node | null | undefined, opts?: Opts<ImportSpecifier> | null): node is ImportSpecifier;
1199
+ declare function isImportExpression(node: Node | null | undefined, opts?: Opts<ImportExpression> | null): node is ImportExpression;
1200
+ declare function isMetaProperty(node: Node | null | undefined, opts?: Opts<MetaProperty> | null): node is MetaProperty;
1201
+ declare function isClassMethod(node: Node | null | undefined, opts?: Opts<ClassMethod> | null): node is ClassMethod;
1202
+ declare function isObjectPattern(node: Node | null | undefined, opts?: Opts<ObjectPattern> | null): node is ObjectPattern;
1203
+ declare function isSpreadElement(node: Node | null | undefined, opts?: Opts<SpreadElement> | null): node is SpreadElement;
1204
+ declare function isSuper(node: Node | null | undefined, opts?: Opts<Super> | null): node is Super;
1205
+ declare function isTaggedTemplateExpression(node: Node | null | undefined, opts?: Opts<TaggedTemplateExpression> | null): node is TaggedTemplateExpression;
1206
+ declare function isTemplateElement(node: Node | null | undefined, opts?: Opts<TemplateElement> | null): node is TemplateElement;
1207
+ declare function isTemplateLiteral(node: Node | null | undefined, opts?: Opts<TemplateLiteral> | null): node is TemplateLiteral;
1208
+ declare function isYieldExpression(node: Node | null | undefined, opts?: Opts<YieldExpression> | null): node is YieldExpression;
1209
+ declare function isAwaitExpression(node: Node | null | undefined, opts?: Opts<AwaitExpression> | null): node is AwaitExpression;
1210
+ declare function isImport(node: Node | null | undefined, opts?: Opts<Import> | null): node is Import;
1211
+ declare function isBigIntLiteral(node: Node | null | undefined, opts?: Opts<BigIntLiteral> | null): node is BigIntLiteral;
1212
+ declare function isExportNamespaceSpecifier(node: Node | null | undefined, opts?: Opts<ExportNamespaceSpecifier> | null): node is ExportNamespaceSpecifier;
1213
+ declare function isOptionalMemberExpression(node: Node | null | undefined, opts?: Opts<OptionalMemberExpression> | null): node is OptionalMemberExpression;
1214
+ declare function isOptionalCallExpression(node: Node | null | undefined, opts?: Opts<OptionalCallExpression> | null): node is OptionalCallExpression;
1215
+ declare function isClassProperty(node: Node | null | undefined, opts?: Opts<ClassProperty> | null): node is ClassProperty;
1216
+ declare function isClassAccessorProperty(node: Node | null | undefined, opts?: Opts<ClassAccessorProperty> | null): node is ClassAccessorProperty;
1217
+ declare function isClassPrivateProperty(node: Node | null | undefined, opts?: Opts<ClassPrivateProperty> | null): node is ClassPrivateProperty;
1218
+ declare function isClassPrivateMethod(node: Node | null | undefined, opts?: Opts<ClassPrivateMethod> | null): node is ClassPrivateMethod;
1219
+ declare function isPrivateName(node: Node | null | undefined, opts?: Opts<PrivateName> | null): node is PrivateName;
1220
+ declare function isStaticBlock(node: Node | null | undefined, opts?: Opts<StaticBlock> | null): node is StaticBlock;
1221
+ declare function isAnyTypeAnnotation(node: Node | null | undefined, opts?: Opts<AnyTypeAnnotation> | null): node is AnyTypeAnnotation;
1222
+ declare function isArrayTypeAnnotation(node: Node | null | undefined, opts?: Opts<ArrayTypeAnnotation> | null): node is ArrayTypeAnnotation;
1223
+ declare function isBooleanTypeAnnotation(node: Node | null | undefined, opts?: Opts<BooleanTypeAnnotation> | null): node is BooleanTypeAnnotation;
1224
+ declare function isBooleanLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<BooleanLiteralTypeAnnotation> | null): node is BooleanLiteralTypeAnnotation;
1225
+ declare function isNullLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<NullLiteralTypeAnnotation> | null): node is NullLiteralTypeAnnotation;
1226
+ declare function isClassImplements(node: Node | null | undefined, opts?: Opts<ClassImplements> | null): node is ClassImplements;
1227
+ declare function isDeclareClass(node: Node | null | undefined, opts?: Opts<DeclareClass> | null): node is DeclareClass;
1228
+ declare function isDeclareFunction(node: Node | null | undefined, opts?: Opts<DeclareFunction> | null): node is DeclareFunction;
1229
+ declare function isDeclareInterface(node: Node | null | undefined, opts?: Opts<DeclareInterface> | null): node is DeclareInterface;
1230
+ declare function isDeclareModule(node: Node | null | undefined, opts?: Opts<DeclareModule> | null): node is DeclareModule;
1231
+ declare function isDeclareModuleExports(node: Node | null | undefined, opts?: Opts<DeclareModuleExports> | null): node is DeclareModuleExports;
1232
+ declare function isDeclareTypeAlias(node: Node | null | undefined, opts?: Opts<DeclareTypeAlias> | null): node is DeclareTypeAlias;
1233
+ declare function isDeclareOpaqueType(node: Node | null | undefined, opts?: Opts<DeclareOpaqueType> | null): node is DeclareOpaqueType;
1234
+ declare function isDeclareVariable(node: Node | null | undefined, opts?: Opts<DeclareVariable> | null): node is DeclareVariable;
1235
+ declare function isDeclareExportDeclaration(node: Node | null | undefined, opts?: Opts<DeclareExportDeclaration> | null): node is DeclareExportDeclaration;
1236
+ declare function isDeclareExportAllDeclaration(node: Node | null | undefined, opts?: Opts<DeclareExportAllDeclaration> | null): node is DeclareExportAllDeclaration;
1237
+ declare function isDeclaredPredicate(node: Node | null | undefined, opts?: Opts<DeclaredPredicate> | null): node is DeclaredPredicate;
1238
+ declare function isExistsTypeAnnotation(node: Node | null | undefined, opts?: Opts<ExistsTypeAnnotation> | null): node is ExistsTypeAnnotation;
1239
+ declare function isFunctionTypeAnnotation(node: Node | null | undefined, opts?: Opts<FunctionTypeAnnotation> | null): node is FunctionTypeAnnotation;
1240
+ declare function isFunctionTypeParam(node: Node | null | undefined, opts?: Opts<FunctionTypeParam> | null): node is FunctionTypeParam;
1241
+ declare function isGenericTypeAnnotation(node: Node | null | undefined, opts?: Opts<GenericTypeAnnotation> | null): node is GenericTypeAnnotation;
1242
+ declare function isInferredPredicate(node: Node | null | undefined, opts?: Opts<InferredPredicate> | null): node is InferredPredicate;
1243
+ declare function isInterfaceExtends(node: Node | null | undefined, opts?: Opts<InterfaceExtends> | null): node is InterfaceExtends;
1244
+ declare function isInterfaceDeclaration(node: Node | null | undefined, opts?: Opts<InterfaceDeclaration> | null): node is InterfaceDeclaration;
1245
+ declare function isInterfaceTypeAnnotation(node: Node | null | undefined, opts?: Opts<InterfaceTypeAnnotation> | null): node is InterfaceTypeAnnotation;
1246
+ declare function isIntersectionTypeAnnotation(node: Node | null | undefined, opts?: Opts<IntersectionTypeAnnotation> | null): node is IntersectionTypeAnnotation;
1247
+ declare function isMixedTypeAnnotation(node: Node | null | undefined, opts?: Opts<MixedTypeAnnotation> | null): node is MixedTypeAnnotation;
1248
+ declare function isEmptyTypeAnnotation(node: Node | null | undefined, opts?: Opts<EmptyTypeAnnotation> | null): node is EmptyTypeAnnotation;
1249
+ declare function isNullableTypeAnnotation(node: Node | null | undefined, opts?: Opts<NullableTypeAnnotation> | null): node is NullableTypeAnnotation;
1250
+ declare function isNumberLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<NumberLiteralTypeAnnotation> | null): node is NumberLiteralTypeAnnotation;
1251
+ declare function isNumberTypeAnnotation(node: Node | null | undefined, opts?: Opts<NumberTypeAnnotation> | null): node is NumberTypeAnnotation;
1252
+ declare function isObjectTypeAnnotation(node: Node | null | undefined, opts?: Opts<ObjectTypeAnnotation> | null): node is ObjectTypeAnnotation;
1253
+ declare function isObjectTypeInternalSlot(node: Node | null | undefined, opts?: Opts<ObjectTypeInternalSlot> | null): node is ObjectTypeInternalSlot;
1254
+ declare function isObjectTypeCallProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeCallProperty> | null): node is ObjectTypeCallProperty;
1255
+ declare function isObjectTypeIndexer(node: Node | null | undefined, opts?: Opts<ObjectTypeIndexer> | null): node is ObjectTypeIndexer;
1256
+ declare function isObjectTypeProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeProperty> | null): node is ObjectTypeProperty;
1257
+ declare function isObjectTypeSpreadProperty(node: Node | null | undefined, opts?: Opts<ObjectTypeSpreadProperty> | null): node is ObjectTypeSpreadProperty;
1258
+ declare function isOpaqueType(node: Node | null | undefined, opts?: Opts<OpaqueType> | null): node is OpaqueType;
1259
+ declare function isQualifiedTypeIdentifier(node: Node | null | undefined, opts?: Opts<QualifiedTypeIdentifier> | null): node is QualifiedTypeIdentifier;
1260
+ declare function isStringLiteralTypeAnnotation(node: Node | null | undefined, opts?: Opts<StringLiteralTypeAnnotation> | null): node is StringLiteralTypeAnnotation;
1261
+ declare function isStringTypeAnnotation(node: Node | null | undefined, opts?: Opts<StringTypeAnnotation> | null): node is StringTypeAnnotation;
1262
+ declare function isSymbolTypeAnnotation(node: Node | null | undefined, opts?: Opts<SymbolTypeAnnotation> | null): node is SymbolTypeAnnotation;
1263
+ declare function isThisTypeAnnotation(node: Node | null | undefined, opts?: Opts<ThisTypeAnnotation> | null): node is ThisTypeAnnotation;
1264
+ declare function isTupleTypeAnnotation(node: Node | null | undefined, opts?: Opts<TupleTypeAnnotation> | null): node is TupleTypeAnnotation;
1265
+ declare function isTypeofTypeAnnotation(node: Node | null | undefined, opts?: Opts<TypeofTypeAnnotation> | null): node is TypeofTypeAnnotation;
1266
+ declare function isTypeAlias(node: Node | null | undefined, opts?: Opts<TypeAlias> | null): node is TypeAlias;
1267
+ declare function isTypeAnnotation(node: Node | null | undefined, opts?: Opts<TypeAnnotation> | null): node is TypeAnnotation;
1268
+ declare function isTypeCastExpression(node: Node | null | undefined, opts?: Opts<TypeCastExpression> | null): node is TypeCastExpression;
1269
+ declare function isTypeParameter(node: Node | null | undefined, opts?: Opts<TypeParameter> | null): node is TypeParameter;
1270
+ declare function isTypeParameterDeclaration(node: Node | null | undefined, opts?: Opts<TypeParameterDeclaration> | null): node is TypeParameterDeclaration;
1271
+ declare function isTypeParameterInstantiation(node: Node | null | undefined, opts?: Opts<TypeParameterInstantiation> | null): node is TypeParameterInstantiation;
1272
+ declare function isUnionTypeAnnotation(node: Node | null | undefined, opts?: Opts<UnionTypeAnnotation> | null): node is UnionTypeAnnotation;
1273
+ declare function isVariance(node: Node | null | undefined, opts?: Opts<Variance> | null): node is Variance;
1274
+ declare function isVoidTypeAnnotation(node: Node | null | undefined, opts?: Opts<VoidTypeAnnotation> | null): node is VoidTypeAnnotation;
1275
+ declare function isEnumDeclaration(node: Node | null | undefined, opts?: Opts<EnumDeclaration> | null): node is EnumDeclaration;
1276
+ declare function isEnumBooleanBody(node: Node | null | undefined, opts?: Opts<EnumBooleanBody> | null): node is EnumBooleanBody;
1277
+ declare function isEnumNumberBody(node: Node | null | undefined, opts?: Opts<EnumNumberBody> | null): node is EnumNumberBody;
1278
+ declare function isEnumStringBody(node: Node | null | undefined, opts?: Opts<EnumStringBody> | null): node is EnumStringBody;
1279
+ declare function isEnumSymbolBody(node: Node | null | undefined, opts?: Opts<EnumSymbolBody> | null): node is EnumSymbolBody;
1280
+ declare function isEnumBooleanMember(node: Node | null | undefined, opts?: Opts<EnumBooleanMember> | null): node is EnumBooleanMember;
1281
+ declare function isEnumNumberMember(node: Node | null | undefined, opts?: Opts<EnumNumberMember> | null): node is EnumNumberMember;
1282
+ declare function isEnumStringMember(node: Node | null | undefined, opts?: Opts<EnumStringMember> | null): node is EnumStringMember;
1283
+ declare function isEnumDefaultedMember(node: Node | null | undefined, opts?: Opts<EnumDefaultedMember> | null): node is EnumDefaultedMember;
1284
+ declare function isIndexedAccessType(node: Node | null | undefined, opts?: Opts<IndexedAccessType> | null): node is IndexedAccessType;
1285
+ declare function isOptionalIndexedAccessType(node: Node | null | undefined, opts?: Opts<OptionalIndexedAccessType> | null): node is OptionalIndexedAccessType;
1286
+ declare function isJSXAttribute(node: Node | null | undefined, opts?: Opts<JSXAttribute> | null): node is JSXAttribute;
1287
+ declare function isJSXClosingElement(node: Node | null | undefined, opts?: Opts<JSXClosingElement> | null): node is JSXClosingElement;
1288
+ declare function isJSXElement(node: Node | null | undefined, opts?: Opts<JSXElement> | null): node is JSXElement;
1289
+ declare function isJSXEmptyExpression(node: Node | null | undefined, opts?: Opts<JSXEmptyExpression> | null): node is JSXEmptyExpression;
1290
+ declare function isJSXExpressionContainer(node: Node | null | undefined, opts?: Opts<JSXExpressionContainer> | null): node is JSXExpressionContainer;
1291
+ declare function isJSXSpreadChild(node: Node | null | undefined, opts?: Opts<JSXSpreadChild> | null): node is JSXSpreadChild;
1292
+ declare function isJSXIdentifier(node: Node | null | undefined, opts?: Opts<JSXIdentifier> | null): node is JSXIdentifier;
1293
+ declare function isJSXMemberExpression(node: Node | null | undefined, opts?: Opts<JSXMemberExpression> | null): node is JSXMemberExpression;
1294
+ declare function isJSXNamespacedName(node: Node | null | undefined, opts?: Opts<JSXNamespacedName> | null): node is JSXNamespacedName;
1295
+ declare function isJSXOpeningElement(node: Node | null | undefined, opts?: Opts<JSXOpeningElement> | null): node is JSXOpeningElement;
1296
+ declare function isJSXSpreadAttribute(node: Node | null | undefined, opts?: Opts<JSXSpreadAttribute> | null): node is JSXSpreadAttribute;
1297
+ declare function isJSXText(node: Node | null | undefined, opts?: Opts<JSXText> | null): node is JSXText;
1298
+ declare function isJSXFragment(node: Node | null | undefined, opts?: Opts<JSXFragment> | null): node is JSXFragment;
1299
+ declare function isJSXOpeningFragment(node: Node | null | undefined, opts?: Opts<JSXOpeningFragment> | null): node is JSXOpeningFragment;
1300
+ declare function isJSXClosingFragment(node: Node | null | undefined, opts?: Opts<JSXClosingFragment> | null): node is JSXClosingFragment;
1301
+ declare function isNoop(node: Node | null | undefined, opts?: Opts<Noop> | null): node is Noop;
1302
+ declare function isPlaceholder(node: Node | null | undefined, opts?: Opts<Placeholder> | null): node is Placeholder;
1303
+ declare function isV8IntrinsicIdentifier(node: Node | null | undefined, opts?: Opts<V8IntrinsicIdentifier> | null): node is V8IntrinsicIdentifier;
1304
+ declare function isArgumentPlaceholder(node: Node | null | undefined, opts?: Opts<ArgumentPlaceholder> | null): node is ArgumentPlaceholder;
1305
+ declare function isBindExpression(node: Node | null | undefined, opts?: Opts<BindExpression> | null): node is BindExpression;
1306
+ declare function isImportAttribute(node: Node | null | undefined, opts?: Opts<ImportAttribute> | null): node is ImportAttribute;
1307
+ declare function isDecorator(node: Node | null | undefined, opts?: Opts<Decorator> | null): node is Decorator;
1308
+ declare function isDoExpression(node: Node | null | undefined, opts?: Opts<DoExpression> | null): node is DoExpression;
1309
+ declare function isExportDefaultSpecifier(node: Node | null | undefined, opts?: Opts<ExportDefaultSpecifier> | null): node is ExportDefaultSpecifier;
1310
+ declare function isRecordExpression(node: Node | null | undefined, opts?: Opts<RecordExpression> | null): node is RecordExpression;
1311
+ declare function isTupleExpression(node: Node | null | undefined, opts?: Opts<TupleExpression> | null): node is TupleExpression;
1312
+ declare function isDecimalLiteral(node: Node | null | undefined, opts?: Opts<DecimalLiteral> | null): node is DecimalLiteral;
1313
+ declare function isModuleExpression(node: Node | null | undefined, opts?: Opts<ModuleExpression> | null): node is ModuleExpression;
1314
+ declare function isTopicReference(node: Node | null | undefined, opts?: Opts<TopicReference> | null): node is TopicReference;
1315
+ declare function isPipelineTopicExpression(node: Node | null | undefined, opts?: Opts<PipelineTopicExpression> | null): node is PipelineTopicExpression;
1316
+ declare function isPipelineBareFunction(node: Node | null | undefined, opts?: Opts<PipelineBareFunction> | null): node is PipelineBareFunction;
1317
+ declare function isPipelinePrimaryTopicReference(node: Node | null | undefined, opts?: Opts<PipelinePrimaryTopicReference> | null): node is PipelinePrimaryTopicReference;
1318
+ declare function isTSParameterProperty(node: Node | null | undefined, opts?: Opts<TSParameterProperty> | null): node is TSParameterProperty;
1319
+ declare function isTSDeclareFunction(node: Node | null | undefined, opts?: Opts<TSDeclareFunction> | null): node is TSDeclareFunction;
1320
+ declare function isTSDeclareMethod(node: Node | null | undefined, opts?: Opts<TSDeclareMethod> | null): node is TSDeclareMethod;
1321
+ declare function isTSQualifiedName(node: Node | null | undefined, opts?: Opts<TSQualifiedName> | null): node is TSQualifiedName;
1322
+ declare function isTSCallSignatureDeclaration(node: Node | null | undefined, opts?: Opts<TSCallSignatureDeclaration> | null): node is TSCallSignatureDeclaration;
1323
+ declare function isTSConstructSignatureDeclaration(node: Node | null | undefined, opts?: Opts<TSConstructSignatureDeclaration> | null): node is TSConstructSignatureDeclaration;
1324
+ declare function isTSPropertySignature(node: Node | null | undefined, opts?: Opts<TSPropertySignature> | null): node is TSPropertySignature;
1325
+ declare function isTSMethodSignature(node: Node | null | undefined, opts?: Opts<TSMethodSignature> | null): node is TSMethodSignature;
1326
+ declare function isTSIndexSignature(node: Node | null | undefined, opts?: Opts<TSIndexSignature> | null): node is TSIndexSignature;
1327
+ declare function isTSAnyKeyword(node: Node | null | undefined, opts?: Opts<TSAnyKeyword> | null): node is TSAnyKeyword;
1328
+ declare function isTSBooleanKeyword(node: Node | null | undefined, opts?: Opts<TSBooleanKeyword> | null): node is TSBooleanKeyword;
1329
+ declare function isTSBigIntKeyword(node: Node | null | undefined, opts?: Opts<TSBigIntKeyword> | null): node is TSBigIntKeyword;
1330
+ declare function isTSIntrinsicKeyword(node: Node | null | undefined, opts?: Opts<TSIntrinsicKeyword> | null): node is TSIntrinsicKeyword;
1331
+ declare function isTSNeverKeyword(node: Node | null | undefined, opts?: Opts<TSNeverKeyword> | null): node is TSNeverKeyword;
1332
+ declare function isTSNullKeyword(node: Node | null | undefined, opts?: Opts<TSNullKeyword> | null): node is TSNullKeyword;
1333
+ declare function isTSNumberKeyword(node: Node | null | undefined, opts?: Opts<TSNumberKeyword> | null): node is TSNumberKeyword;
1334
+ declare function isTSObjectKeyword(node: Node | null | undefined, opts?: Opts<TSObjectKeyword> | null): node is TSObjectKeyword;
1335
+ declare function isTSStringKeyword(node: Node | null | undefined, opts?: Opts<TSStringKeyword> | null): node is TSStringKeyword;
1336
+ declare function isTSSymbolKeyword(node: Node | null | undefined, opts?: Opts<TSSymbolKeyword> | null): node is TSSymbolKeyword;
1337
+ declare function isTSUndefinedKeyword(node: Node | null | undefined, opts?: Opts<TSUndefinedKeyword> | null): node is TSUndefinedKeyword;
1338
+ declare function isTSUnknownKeyword(node: Node | null | undefined, opts?: Opts<TSUnknownKeyword> | null): node is TSUnknownKeyword;
1339
+ declare function isTSVoidKeyword(node: Node | null | undefined, opts?: Opts<TSVoidKeyword> | null): node is TSVoidKeyword;
1340
+ declare function isTSThisType(node: Node | null | undefined, opts?: Opts<TSThisType> | null): node is TSThisType;
1341
+ declare function isTSFunctionType(node: Node | null | undefined, opts?: Opts<TSFunctionType> | null): node is TSFunctionType;
1342
+ declare function isTSConstructorType(node: Node | null | undefined, opts?: Opts<TSConstructorType> | null): node is TSConstructorType;
1343
+ declare function isTSTypeReference(node: Node | null | undefined, opts?: Opts<TSTypeReference> | null): node is TSTypeReference;
1344
+ declare function isTSTypePredicate(node: Node | null | undefined, opts?: Opts<TSTypePredicate> | null): node is TSTypePredicate;
1345
+ declare function isTSTypeQuery(node: Node | null | undefined, opts?: Opts<TSTypeQuery> | null): node is TSTypeQuery;
1346
+ declare function isTSTypeLiteral(node: Node | null | undefined, opts?: Opts<TSTypeLiteral> | null): node is TSTypeLiteral;
1347
+ declare function isTSArrayType(node: Node | null | undefined, opts?: Opts<TSArrayType> | null): node is TSArrayType;
1348
+ declare function isTSTupleType(node: Node | null | undefined, opts?: Opts<TSTupleType> | null): node is TSTupleType;
1349
+ declare function isTSOptionalType(node: Node | null | undefined, opts?: Opts<TSOptionalType> | null): node is TSOptionalType;
1350
+ declare function isTSRestType(node: Node | null | undefined, opts?: Opts<TSRestType> | null): node is TSRestType;
1351
+ declare function isTSNamedTupleMember(node: Node | null | undefined, opts?: Opts<TSNamedTupleMember> | null): node is TSNamedTupleMember;
1352
+ declare function isTSUnionType(node: Node | null | undefined, opts?: Opts<TSUnionType> | null): node is TSUnionType;
1353
+ declare function isTSIntersectionType(node: Node | null | undefined, opts?: Opts<TSIntersectionType> | null): node is TSIntersectionType;
1354
+ declare function isTSConditionalType(node: Node | null | undefined, opts?: Opts<TSConditionalType> | null): node is TSConditionalType;
1355
+ declare function isTSInferType(node: Node | null | undefined, opts?: Opts<TSInferType> | null): node is TSInferType;
1356
+ declare function isTSParenthesizedType(node: Node | null | undefined, opts?: Opts<TSParenthesizedType> | null): node is TSParenthesizedType;
1357
+ declare function isTSTypeOperator(node: Node | null | undefined, opts?: Opts<TSTypeOperator> | null): node is TSTypeOperator;
1358
+ declare function isTSIndexedAccessType(node: Node | null | undefined, opts?: Opts<TSIndexedAccessType> | null): node is TSIndexedAccessType;
1359
+ declare function isTSMappedType(node: Node | null | undefined, opts?: Opts<TSMappedType> | null): node is TSMappedType;
1360
+ declare function isTSLiteralType(node: Node | null | undefined, opts?: Opts<TSLiteralType> | null): node is TSLiteralType;
1361
+ declare function isTSExpressionWithTypeArguments(node: Node | null | undefined, opts?: Opts<TSExpressionWithTypeArguments> | null): node is TSExpressionWithTypeArguments;
1362
+ declare function isTSInterfaceDeclaration(node: Node | null | undefined, opts?: Opts<TSInterfaceDeclaration> | null): node is TSInterfaceDeclaration;
1363
+ declare function isTSInterfaceBody(node: Node | null | undefined, opts?: Opts<TSInterfaceBody> | null): node is TSInterfaceBody;
1364
+ declare function isTSTypeAliasDeclaration(node: Node | null | undefined, opts?: Opts<TSTypeAliasDeclaration> | null): node is TSTypeAliasDeclaration;
1365
+ declare function isTSInstantiationExpression(node: Node | null | undefined, opts?: Opts<TSInstantiationExpression> | null): node is TSInstantiationExpression;
1366
+ declare function isTSAsExpression(node: Node | null | undefined, opts?: Opts<TSAsExpression> | null): node is TSAsExpression;
1367
+ declare function isTSSatisfiesExpression(node: Node | null | undefined, opts?: Opts<TSSatisfiesExpression> | null): node is TSSatisfiesExpression;
1368
+ declare function isTSTypeAssertion(node: Node | null | undefined, opts?: Opts<TSTypeAssertion> | null): node is TSTypeAssertion;
1369
+ declare function isTSEnumDeclaration(node: Node | null | undefined, opts?: Opts<TSEnumDeclaration> | null): node is TSEnumDeclaration;
1370
+ declare function isTSEnumMember(node: Node | null | undefined, opts?: Opts<TSEnumMember> | null): node is TSEnumMember;
1371
+ declare function isTSModuleDeclaration(node: Node | null | undefined, opts?: Opts<TSModuleDeclaration> | null): node is TSModuleDeclaration;
1372
+ declare function isTSModuleBlock(node: Node | null | undefined, opts?: Opts<TSModuleBlock> | null): node is TSModuleBlock;
1373
+ declare function isTSImportType(node: Node | null | undefined, opts?: Opts<TSImportType> | null): node is TSImportType;
1374
+ declare function isTSImportEqualsDeclaration(node: Node | null | undefined, opts?: Opts<TSImportEqualsDeclaration> | null): node is TSImportEqualsDeclaration;
1375
+ declare function isTSExternalModuleReference(node: Node | null | undefined, opts?: Opts<TSExternalModuleReference> | null): node is TSExternalModuleReference;
1376
+ declare function isTSNonNullExpression(node: Node | null | undefined, opts?: Opts<TSNonNullExpression> | null): node is TSNonNullExpression;
1377
+ declare function isTSExportAssignment(node: Node | null | undefined, opts?: Opts<TSExportAssignment> | null): node is TSExportAssignment;
1378
+ declare function isTSNamespaceExportDeclaration(node: Node | null | undefined, opts?: Opts<TSNamespaceExportDeclaration> | null): node is TSNamespaceExportDeclaration;
1379
+ declare function isTSTypeAnnotation(node: Node | null | undefined, opts?: Opts<TSTypeAnnotation> | null): node is TSTypeAnnotation;
1380
+ declare function isTSTypeParameterInstantiation(node: Node | null | undefined, opts?: Opts<TSTypeParameterInstantiation> | null): node is TSTypeParameterInstantiation;
1381
+ declare function isTSTypeParameterDeclaration(node: Node | null | undefined, opts?: Opts<TSTypeParameterDeclaration> | null): node is TSTypeParameterDeclaration;
1382
+ declare function isTSTypeParameter(node: Node | null | undefined, opts?: Opts<TSTypeParameter> | null): node is TSTypeParameter;
1383
+ declare function isStandardized(node: Node | null | undefined, opts?: Opts<Standardized> | null): node is Standardized;
1384
+ declare function isExpression(node: Node | null | undefined, opts?: Opts<Expression> | null): node is Expression;
1385
+ declare function isBinary(node: Node | null | undefined, opts?: Opts<Binary> | null): node is Binary;
1386
+ declare function isScopable(node: Node | null | undefined, opts?: Opts<Scopable> | null): node is Scopable;
1387
+ declare function isBlockParent(node: Node | null | undefined, opts?: Opts<BlockParent> | null): node is BlockParent;
1388
+ declare function isBlock(node: Node | null | undefined, opts?: Opts<Block> | null): node is Block;
1389
+ declare function isStatement(node: Node | null | undefined, opts?: Opts<Statement> | null): node is Statement;
1390
+ declare function isTerminatorless(node: Node | null | undefined, opts?: Opts<Terminatorless> | null): node is Terminatorless;
1391
+ declare function isCompletionStatement(node: Node | null | undefined, opts?: Opts<CompletionStatement> | null): node is CompletionStatement;
1392
+ declare function isConditional(node: Node | null | undefined, opts?: Opts<Conditional> | null): node is Conditional;
1393
+ declare function isLoop(node: Node | null | undefined, opts?: Opts<Loop> | null): node is Loop;
1394
+ declare function isWhile(node: Node | null | undefined, opts?: Opts<While> | null): node is While;
1395
+ declare function isExpressionWrapper(node: Node | null | undefined, opts?: Opts<ExpressionWrapper> | null): node is ExpressionWrapper;
1396
+ declare function isFor(node: Node | null | undefined, opts?: Opts<For> | null): node is For;
1397
+ declare function isForXStatement(node: Node | null | undefined, opts?: Opts<ForXStatement> | null): node is ForXStatement;
1398
+ declare function isFunction(node: Node | null | undefined, opts?: Opts<Function> | null): node is Function;
1399
+ declare function isFunctionParent(node: Node | null | undefined, opts?: Opts<FunctionParent> | null): node is FunctionParent;
1400
+ declare function isPureish(node: Node | null | undefined, opts?: Opts<Pureish> | null): node is Pureish;
1401
+ declare function isDeclaration(node: Node | null | undefined, opts?: Opts<Declaration> | null): node is Declaration;
1402
+ declare function isPatternLike(node: Node | null | undefined, opts?: Opts<PatternLike> | null): node is PatternLike;
1403
+ declare function isLVal(node: Node | null | undefined, opts?: Opts<LVal> | null): node is LVal;
1404
+ declare function isTSEntityName(node: Node | null | undefined, opts?: Opts<TSEntityName> | null): node is TSEntityName;
1405
+ declare function isLiteral(node: Node | null | undefined, opts?: Opts<Literal> | null): node is Literal;
1406
+ declare function isUserWhitespacable(node: Node | null | undefined, opts?: Opts<UserWhitespacable> | null): node is UserWhitespacable;
1407
+ declare function isMethod(node: Node | null | undefined, opts?: Opts<Method> | null): node is Method;
1408
+ declare function isObjectMember(node: Node | null | undefined, opts?: Opts<ObjectMember> | null): node is ObjectMember;
1409
+ declare function isProperty(node: Node | null | undefined, opts?: Opts<Property> | null): node is Property;
1410
+ declare function isUnaryLike(node: Node | null | undefined, opts?: Opts<UnaryLike> | null): node is UnaryLike;
1411
+ declare function isPattern(node: Node | null | undefined, opts?: Opts<Pattern> | null): node is Pattern;
1412
+ declare function isClass(node: Node | null | undefined, opts?: Opts<Class> | null): node is Class;
1413
+ declare function isImportOrExportDeclaration(node: Node | null | undefined, opts?: Opts<ImportOrExportDeclaration> | null): node is ImportOrExportDeclaration;
1414
+ declare function isExportDeclaration(node: Node | null | undefined, opts?: Opts<ExportDeclaration> | null): node is ExportDeclaration;
1415
+ declare function isModuleSpecifier(node: Node | null | undefined, opts?: Opts<ModuleSpecifier> | null): node is ModuleSpecifier;
1416
+ declare function isAccessor(node: Node | null | undefined, opts?: Opts<Accessor> | null): node is Accessor;
1417
+ declare function isPrivate(node: Node | null | undefined, opts?: Opts<Private> | null): node is Private;
1418
+ declare function isFlow(node: Node | null | undefined, opts?: Opts<Flow> | null): node is Flow;
1419
+ declare function isFlowType(node: Node | null | undefined, opts?: Opts<FlowType> | null): node is FlowType;
1420
+ declare function isFlowBaseAnnotation(node: Node | null | undefined, opts?: Opts<FlowBaseAnnotation> | null): node is FlowBaseAnnotation;
1421
+ declare function isFlowDeclaration(node: Node | null | undefined, opts?: Opts<FlowDeclaration> | null): node is FlowDeclaration;
1422
+ declare function isFlowPredicate(node: Node | null | undefined, opts?: Opts<FlowPredicate> | null): node is FlowPredicate;
1423
+ declare function isEnumBody(node: Node | null | undefined, opts?: Opts<EnumBody> | null): node is EnumBody;
1424
+ declare function isEnumMember(node: Node | null | undefined, opts?: Opts<EnumMember> | null): node is EnumMember;
1425
+ declare function isJSX(node: Node | null | undefined, opts?: Opts<JSX> | null): node is JSX;
1426
+ declare function isMiscellaneous(node: Node | null | undefined, opts?: Opts<Miscellaneous> | null): node is Miscellaneous;
1427
+ declare function isTypeScript(node: Node | null | undefined, opts?: Opts<TypeScript> | null): node is TypeScript;
1428
+ declare function isTSTypeElement(node: Node | null | undefined, opts?: Opts<TSTypeElement> | null): node is TSTypeElement;
1429
+ declare function isTSType(node: Node | null | undefined, opts?: Opts<TSType> | null): node is TSType;
1430
+ declare function isTSBaseType(node: Node | null | undefined, opts?: Opts<TSBaseType> | null): node is TSBaseType;
1431
+ /**
1432
+ * @deprecated Use `isNumericLiteral`
1433
+ */
1434
+ declare function isNumberLiteral(node: Node | null | undefined, opts?: Opts<NumberLiteral> | null): boolean;
1435
+ /**
1436
+ * @deprecated Use `isRegExpLiteral`
1437
+ */
1438
+ declare function isRegexLiteral(node: Node | null | undefined, opts?: Opts<RegexLiteral> | null): boolean;
1439
+ /**
1440
+ * @deprecated Use `isRestElement`
1441
+ */
1442
+ declare function isRestProperty(node: Node | null | undefined, opts?: Opts<RestProperty> | null): boolean;
1443
+ /**
1444
+ * @deprecated Use `isSpreadElement`
1445
+ */
1446
+ declare function isSpreadProperty(node: Node | null | undefined, opts?: Opts<SpreadProperty> | null): boolean;
1447
+ /**
1448
+ * @deprecated Use `isImportOrExportDeclaration`
1449
+ */
1450
+ declare function isModuleDeclaration(node: Node | null | undefined, opts?: Opts<ModuleDeclaration> | null): node is ImportOrExportDeclaration;
1451
+
1452
+ interface BaseComment {
1453
+ value: string;
1454
+ start?: number;
1455
+ end?: number;
1456
+ loc?: SourceLocation;
1457
+ ignore?: boolean;
1458
+ type: "CommentBlock" | "CommentLine";
1459
+ }
1460
+ interface Position {
1461
+ line: number;
1462
+ column: number;
1463
+ index: number;
1464
+ }
1465
+ interface CommentBlock extends BaseComment {
1466
+ type: "CommentBlock";
1467
+ }
1468
+ interface CommentLine extends BaseComment {
1469
+ type: "CommentLine";
1470
+ }
1471
+ type Comment = CommentBlock | CommentLine;
1472
+ interface SourceLocation {
1473
+ start: Position;
1474
+ end: Position;
1475
+ filename: string;
1476
+ identifierName: string | undefined | null;
1477
+ }
1478
+ interface BaseNode {
1479
+ type: Node["type"];
1480
+ leadingComments?: Comment[] | null;
1481
+ innerComments?: Comment[] | null;
1482
+ trailingComments?: Comment[] | null;
1483
+ start?: number | null;
1484
+ end?: number | null;
1485
+ loc?: SourceLocation | null;
1486
+ range?: [number, number];
1487
+ extra?: Record<string, unknown>;
1488
+ }
1489
+ type CommentTypeShorthand = "leading" | "inner" | "trailing";
1490
+ 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;
1491
+ interface ArrayExpression extends BaseNode {
1492
+ type: "ArrayExpression";
1493
+ elements: Array<null | Expression | SpreadElement>;
1494
+ }
1495
+ interface AssignmentExpression extends BaseNode {
1496
+ type: "AssignmentExpression";
1497
+ operator: string;
1498
+ left: LVal | OptionalMemberExpression;
1499
+ right: Expression;
1500
+ }
1501
+ interface BinaryExpression extends BaseNode {
1502
+ type: "BinaryExpression";
1503
+ operator: "+" | "-" | "/" | "%" | "*" | "**" | "&" | "|" | ">>" | ">>>" | "<<" | "^" | "==" | "===" | "!=" | "!==" | "in" | "instanceof" | ">" | "<" | ">=" | "<=" | "|>";
1504
+ left: Expression | PrivateName;
1505
+ right: Expression;
1506
+ }
1507
+ interface InterpreterDirective extends BaseNode {
1508
+ type: "InterpreterDirective";
1509
+ value: string;
1510
+ }
1511
+ interface Directive extends BaseNode {
1512
+ type: "Directive";
1513
+ value: DirectiveLiteral;
1514
+ }
1515
+ interface DirectiveLiteral extends BaseNode {
1516
+ type: "DirectiveLiteral";
1517
+ value: string;
1518
+ }
1519
+ interface BlockStatement extends BaseNode {
1520
+ type: "BlockStatement";
1521
+ body: Array<Statement>;
1522
+ directives: Array<Directive>;
1523
+ }
1524
+ interface BreakStatement extends BaseNode {
1525
+ type: "BreakStatement";
1526
+ label?: Identifier | null;
1527
+ }
1528
+ interface CallExpression extends BaseNode {
1529
+ type: "CallExpression";
1530
+ callee: Expression | Super | V8IntrinsicIdentifier;
1531
+ arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>;
1532
+ optional?: true | false | null;
1533
+ typeArguments?: TypeParameterInstantiation | null;
1534
+ typeParameters?: TSTypeParameterInstantiation | null;
1535
+ }
1536
+ interface CatchClause extends BaseNode {
1537
+ type: "CatchClause";
1538
+ param?: Identifier | ArrayPattern | ObjectPattern | null;
1539
+ body: BlockStatement;
1540
+ }
1541
+ interface ConditionalExpression extends BaseNode {
1542
+ type: "ConditionalExpression";
1543
+ test: Expression;
1544
+ consequent: Expression;
1545
+ alternate: Expression;
1546
+ }
1547
+ interface ContinueStatement extends BaseNode {
1548
+ type: "ContinueStatement";
1549
+ label?: Identifier | null;
1550
+ }
1551
+ interface DebuggerStatement extends BaseNode {
1552
+ type: "DebuggerStatement";
1553
+ }
1554
+ interface DoWhileStatement extends BaseNode {
1555
+ type: "DoWhileStatement";
1556
+ test: Expression;
1557
+ body: Statement;
1558
+ }
1559
+ interface EmptyStatement extends BaseNode {
1560
+ type: "EmptyStatement";
1561
+ }
1562
+ interface ExpressionStatement extends BaseNode {
1563
+ type: "ExpressionStatement";
1564
+ expression: Expression;
1565
+ }
1566
+ interface File extends BaseNode {
1567
+ type: "File";
1568
+ program: Program;
1569
+ comments?: Array<CommentBlock | CommentLine> | null;
1570
+ tokens?: Array<any> | null;
1571
+ }
1572
+ interface ForInStatement extends BaseNode {
1573
+ type: "ForInStatement";
1574
+ left: VariableDeclaration | LVal;
1575
+ right: Expression;
1576
+ body: Statement;
1577
+ }
1578
+ interface ForStatement extends BaseNode {
1579
+ type: "ForStatement";
1580
+ init?: VariableDeclaration | Expression | null;
1581
+ test?: Expression | null;
1582
+ update?: Expression | null;
1583
+ body: Statement;
1584
+ }
1585
+ interface FunctionDeclaration extends BaseNode {
1586
+ type: "FunctionDeclaration";
1587
+ id?: Identifier | null;
1588
+ params: Array<Identifier | Pattern | RestElement>;
1589
+ body: BlockStatement;
1590
+ generator: boolean;
1591
+ async: boolean;
1592
+ declare?: boolean | null;
1593
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1594
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1595
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1596
+ }
1597
+ interface FunctionExpression extends BaseNode {
1598
+ type: "FunctionExpression";
1599
+ id?: Identifier | null;
1600
+ params: Array<Identifier | Pattern | RestElement>;
1601
+ body: BlockStatement;
1602
+ generator: boolean;
1603
+ async: boolean;
1604
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1605
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1606
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1607
+ }
1608
+ interface Identifier extends BaseNode {
1609
+ type: "Identifier";
1610
+ name: string;
1611
+ decorators?: Array<Decorator> | null;
1612
+ optional?: boolean | null;
1613
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1614
+ }
1615
+ interface IfStatement extends BaseNode {
1616
+ type: "IfStatement";
1617
+ test: Expression;
1618
+ consequent: Statement;
1619
+ alternate?: Statement | null;
1620
+ }
1621
+ interface LabeledStatement extends BaseNode {
1622
+ type: "LabeledStatement";
1623
+ label: Identifier;
1624
+ body: Statement;
1625
+ }
1626
+ interface StringLiteral extends BaseNode {
1627
+ type: "StringLiteral";
1628
+ value: string;
1629
+ }
1630
+ interface NumericLiteral extends BaseNode {
1631
+ type: "NumericLiteral";
1632
+ value: number;
1633
+ }
1634
+ /**
1635
+ * @deprecated Use `NumericLiteral`
1636
+ */
1637
+ interface NumberLiteral extends BaseNode {
1638
+ type: "NumberLiteral";
1639
+ value: number;
1640
+ }
1641
+ interface NullLiteral extends BaseNode {
1642
+ type: "NullLiteral";
1643
+ }
1644
+ interface BooleanLiteral extends BaseNode {
1645
+ type: "BooleanLiteral";
1646
+ value: boolean;
1647
+ }
1648
+ interface RegExpLiteral extends BaseNode {
1649
+ type: "RegExpLiteral";
1650
+ pattern: string;
1651
+ flags: string;
1652
+ }
1653
+ /**
1654
+ * @deprecated Use `RegExpLiteral`
1655
+ */
1656
+ interface RegexLiteral extends BaseNode {
1657
+ type: "RegexLiteral";
1658
+ pattern: string;
1659
+ flags: string;
1660
+ }
1661
+ interface LogicalExpression extends BaseNode {
1662
+ type: "LogicalExpression";
1663
+ operator: "||" | "&&" | "??";
1664
+ left: Expression;
1665
+ right: Expression;
1666
+ }
1667
+ interface MemberExpression extends BaseNode {
1668
+ type: "MemberExpression";
1669
+ object: Expression | Super;
1670
+ property: Expression | Identifier | PrivateName;
1671
+ computed: boolean;
1672
+ optional?: true | false | null;
1673
+ }
1674
+ interface NewExpression extends BaseNode {
1675
+ type: "NewExpression";
1676
+ callee: Expression | Super | V8IntrinsicIdentifier;
1677
+ arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>;
1678
+ optional?: true | false | null;
1679
+ typeArguments?: TypeParameterInstantiation | null;
1680
+ typeParameters?: TSTypeParameterInstantiation | null;
1681
+ }
1682
+ interface Program extends BaseNode {
1683
+ type: "Program";
1684
+ body: Array<Statement>;
1685
+ directives: Array<Directive>;
1686
+ sourceType: "script" | "module";
1687
+ interpreter?: InterpreterDirective | null;
1688
+ }
1689
+ interface ObjectExpression extends BaseNode {
1690
+ type: "ObjectExpression";
1691
+ properties: Array<ObjectMethod | ObjectProperty | SpreadElement>;
1692
+ }
1693
+ interface ObjectMethod extends BaseNode {
1694
+ type: "ObjectMethod";
1695
+ kind: "method" | "get" | "set";
1696
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral;
1697
+ params: Array<Identifier | Pattern | RestElement>;
1698
+ body: BlockStatement;
1699
+ computed: boolean;
1700
+ generator: boolean;
1701
+ async: boolean;
1702
+ decorators?: Array<Decorator> | null;
1703
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1704
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1705
+ }
1706
+ interface ObjectProperty extends BaseNode {
1707
+ type: "ObjectProperty";
1708
+ key: Expression | Identifier | StringLiteral | NumericLiteral | BigIntLiteral | DecimalLiteral | PrivateName;
1709
+ value: Expression | PatternLike;
1710
+ computed: boolean;
1711
+ shorthand: boolean;
1712
+ decorators?: Array<Decorator> | null;
1713
+ }
1714
+ interface RestElement extends BaseNode {
1715
+ type: "RestElement";
1716
+ argument: LVal;
1717
+ decorators?: Array<Decorator> | null;
1718
+ optional?: boolean | null;
1719
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1720
+ }
1721
+ /**
1722
+ * @deprecated Use `RestElement`
1723
+ */
1724
+ interface RestProperty extends BaseNode {
1725
+ type: "RestProperty";
1726
+ argument: LVal;
1727
+ decorators?: Array<Decorator> | null;
1728
+ optional?: boolean | null;
1729
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1730
+ }
1731
+ interface ReturnStatement extends BaseNode {
1732
+ type: "ReturnStatement";
1733
+ argument?: Expression | null;
1734
+ }
1735
+ interface SequenceExpression extends BaseNode {
1736
+ type: "SequenceExpression";
1737
+ expressions: Array<Expression>;
1738
+ }
1739
+ interface ParenthesizedExpression extends BaseNode {
1740
+ type: "ParenthesizedExpression";
1741
+ expression: Expression;
1742
+ }
1743
+ interface SwitchCase extends BaseNode {
1744
+ type: "SwitchCase";
1745
+ test?: Expression | null;
1746
+ consequent: Array<Statement>;
1747
+ }
1748
+ interface SwitchStatement extends BaseNode {
1749
+ type: "SwitchStatement";
1750
+ discriminant: Expression;
1751
+ cases: Array<SwitchCase>;
1752
+ }
1753
+ interface ThisExpression extends BaseNode {
1754
+ type: "ThisExpression";
1755
+ }
1756
+ interface ThrowStatement extends BaseNode {
1757
+ type: "ThrowStatement";
1758
+ argument: Expression;
1759
+ }
1760
+ interface TryStatement extends BaseNode {
1761
+ type: "TryStatement";
1762
+ block: BlockStatement;
1763
+ handler?: CatchClause | null;
1764
+ finalizer?: BlockStatement | null;
1765
+ }
1766
+ interface UnaryExpression extends BaseNode {
1767
+ type: "UnaryExpression";
1768
+ operator: "void" | "throw" | "delete" | "!" | "+" | "-" | "~" | "typeof";
1769
+ argument: Expression;
1770
+ prefix: boolean;
1771
+ }
1772
+ interface UpdateExpression extends BaseNode {
1773
+ type: "UpdateExpression";
1774
+ operator: "++" | "--";
1775
+ argument: Expression;
1776
+ prefix: boolean;
1777
+ }
1778
+ interface VariableDeclaration extends BaseNode {
1779
+ type: "VariableDeclaration";
1780
+ kind: "var" | "let" | "const" | "using" | "await using";
1781
+ declarations: Array<VariableDeclarator>;
1782
+ declare?: boolean | null;
1783
+ }
1784
+ interface VariableDeclarator extends BaseNode {
1785
+ type: "VariableDeclarator";
1786
+ id: LVal;
1787
+ init?: Expression | null;
1788
+ definite?: boolean | null;
1789
+ }
1790
+ interface WhileStatement extends BaseNode {
1791
+ type: "WhileStatement";
1792
+ test: Expression;
1793
+ body: Statement;
1794
+ }
1795
+ interface WithStatement extends BaseNode {
1796
+ type: "WithStatement";
1797
+ object: Expression;
1798
+ body: Statement;
1799
+ }
1800
+ interface AssignmentPattern extends BaseNode {
1801
+ type: "AssignmentPattern";
1802
+ left: Identifier | ObjectPattern | ArrayPattern | MemberExpression | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
1803
+ right: Expression;
1804
+ decorators?: Array<Decorator> | null;
1805
+ optional?: boolean | null;
1806
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1807
+ }
1808
+ interface ArrayPattern extends BaseNode {
1809
+ type: "ArrayPattern";
1810
+ elements: Array<null | PatternLike | LVal>;
1811
+ decorators?: Array<Decorator> | null;
1812
+ optional?: boolean | null;
1813
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1814
+ }
1815
+ interface ArrowFunctionExpression extends BaseNode {
1816
+ type: "ArrowFunctionExpression";
1817
+ params: Array<Identifier | Pattern | RestElement>;
1818
+ body: BlockStatement | Expression;
1819
+ async: boolean;
1820
+ expression: boolean;
1821
+ generator?: boolean;
1822
+ predicate?: DeclaredPredicate | InferredPredicate | null;
1823
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1824
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1825
+ }
1826
+ interface ClassBody extends BaseNode {
1827
+ type: "ClassBody";
1828
+ body: Array<ClassMethod | ClassPrivateMethod | ClassProperty | ClassPrivateProperty | ClassAccessorProperty | TSDeclareMethod | TSIndexSignature | StaticBlock>;
1829
+ }
1830
+ interface ClassExpression extends BaseNode {
1831
+ type: "ClassExpression";
1832
+ id?: Identifier | null;
1833
+ superClass?: Expression | null;
1834
+ body: ClassBody;
1835
+ decorators?: Array<Decorator> | null;
1836
+ implements?: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
1837
+ mixins?: InterfaceExtends | null;
1838
+ superTypeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1839
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1840
+ }
1841
+ interface ClassDeclaration extends BaseNode {
1842
+ type: "ClassDeclaration";
1843
+ id?: Identifier | null;
1844
+ superClass?: Expression | null;
1845
+ body: ClassBody;
1846
+ decorators?: Array<Decorator> | null;
1847
+ abstract?: boolean | null;
1848
+ declare?: boolean | null;
1849
+ implements?: Array<TSExpressionWithTypeArguments | ClassImplements> | null;
1850
+ mixins?: InterfaceExtends | null;
1851
+ superTypeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1852
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1853
+ }
1854
+ interface ExportAllDeclaration extends BaseNode {
1855
+ type: "ExportAllDeclaration";
1856
+ source: StringLiteral;
1857
+ assertions?: Array<ImportAttribute> | null;
1858
+ attributes?: Array<ImportAttribute> | null;
1859
+ exportKind?: "type" | "value" | null;
1860
+ }
1861
+ interface ExportDefaultDeclaration extends BaseNode {
1862
+ type: "ExportDefaultDeclaration";
1863
+ declaration: TSDeclareFunction | FunctionDeclaration | ClassDeclaration | Expression;
1864
+ exportKind?: "value" | null;
1865
+ }
1866
+ interface ExportNamedDeclaration extends BaseNode {
1867
+ type: "ExportNamedDeclaration";
1868
+ declaration?: Declaration | null;
1869
+ specifiers: Array<ExportSpecifier | ExportDefaultSpecifier | ExportNamespaceSpecifier>;
1870
+ source?: StringLiteral | null;
1871
+ assertions?: Array<ImportAttribute> | null;
1872
+ attributes?: Array<ImportAttribute> | null;
1873
+ exportKind?: "type" | "value" | null;
1874
+ }
1875
+ interface ExportSpecifier extends BaseNode {
1876
+ type: "ExportSpecifier";
1877
+ local: Identifier;
1878
+ exported: Identifier | StringLiteral;
1879
+ exportKind?: "type" | "value" | null;
1880
+ }
1881
+ interface ForOfStatement extends BaseNode {
1882
+ type: "ForOfStatement";
1883
+ left: VariableDeclaration | LVal;
1884
+ right: Expression;
1885
+ body: Statement;
1886
+ await: boolean;
1887
+ }
1888
+ interface ImportDeclaration extends BaseNode {
1889
+ type: "ImportDeclaration";
1890
+ specifiers: Array<ImportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier>;
1891
+ source: StringLiteral;
1892
+ assertions?: Array<ImportAttribute> | null;
1893
+ attributes?: Array<ImportAttribute> | null;
1894
+ importKind?: "type" | "typeof" | "value" | null;
1895
+ module?: boolean | null;
1896
+ phase?: "source" | "defer" | null;
1897
+ }
1898
+ interface ImportDefaultSpecifier extends BaseNode {
1899
+ type: "ImportDefaultSpecifier";
1900
+ local: Identifier;
1901
+ }
1902
+ interface ImportNamespaceSpecifier extends BaseNode {
1903
+ type: "ImportNamespaceSpecifier";
1904
+ local: Identifier;
1905
+ }
1906
+ interface ImportSpecifier extends BaseNode {
1907
+ type: "ImportSpecifier";
1908
+ local: Identifier;
1909
+ imported: Identifier | StringLiteral;
1910
+ importKind?: "type" | "typeof" | "value" | null;
1911
+ }
1912
+ interface ImportExpression extends BaseNode {
1913
+ type: "ImportExpression";
1914
+ source: Expression;
1915
+ options?: Expression | null;
1916
+ phase?: "source" | "defer" | null;
1917
+ }
1918
+ interface MetaProperty extends BaseNode {
1919
+ type: "MetaProperty";
1920
+ meta: Identifier;
1921
+ property: Identifier;
1922
+ }
1923
+ interface ClassMethod extends BaseNode {
1924
+ type: "ClassMethod";
1925
+ kind: "get" | "set" | "method" | "constructor";
1926
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
1927
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
1928
+ body: BlockStatement;
1929
+ computed: boolean;
1930
+ static: boolean;
1931
+ generator: boolean;
1932
+ async: boolean;
1933
+ abstract?: boolean | null;
1934
+ access?: "public" | "private" | "protected" | null;
1935
+ accessibility?: "public" | "private" | "protected" | null;
1936
+ decorators?: Array<Decorator> | null;
1937
+ optional?: boolean | null;
1938
+ override?: boolean;
1939
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1940
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
1941
+ }
1942
+ interface ObjectPattern extends BaseNode {
1943
+ type: "ObjectPattern";
1944
+ properties: Array<RestElement | ObjectProperty>;
1945
+ decorators?: Array<Decorator> | null;
1946
+ optional?: boolean | null;
1947
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
1948
+ }
1949
+ interface SpreadElement extends BaseNode {
1950
+ type: "SpreadElement";
1951
+ argument: Expression;
1952
+ }
1953
+ /**
1954
+ * @deprecated Use `SpreadElement`
1955
+ */
1956
+ interface SpreadProperty extends BaseNode {
1957
+ type: "SpreadProperty";
1958
+ argument: Expression;
1959
+ }
1960
+ interface Super extends BaseNode {
1961
+ type: "Super";
1962
+ }
1963
+ interface TaggedTemplateExpression extends BaseNode {
1964
+ type: "TaggedTemplateExpression";
1965
+ tag: Expression;
1966
+ quasi: TemplateLiteral;
1967
+ typeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
1968
+ }
1969
+ interface TemplateElement extends BaseNode {
1970
+ type: "TemplateElement";
1971
+ value: {
1972
+ raw: string;
1973
+ cooked?: string;
1974
+ };
1975
+ tail: boolean;
1976
+ }
1977
+ interface TemplateLiteral extends BaseNode {
1978
+ type: "TemplateLiteral";
1979
+ quasis: Array<TemplateElement>;
1980
+ expressions: Array<Expression | TSType>;
1981
+ }
1982
+ interface YieldExpression extends BaseNode {
1983
+ type: "YieldExpression";
1984
+ argument?: Expression | null;
1985
+ delegate: boolean;
1986
+ }
1987
+ interface AwaitExpression extends BaseNode {
1988
+ type: "AwaitExpression";
1989
+ argument: Expression;
1990
+ }
1991
+ interface Import extends BaseNode {
1992
+ type: "Import";
1993
+ }
1994
+ interface BigIntLiteral extends BaseNode {
1995
+ type: "BigIntLiteral";
1996
+ value: string;
1997
+ }
1998
+ interface ExportNamespaceSpecifier extends BaseNode {
1999
+ type: "ExportNamespaceSpecifier";
2000
+ exported: Identifier;
2001
+ }
2002
+ interface OptionalMemberExpression extends BaseNode {
2003
+ type: "OptionalMemberExpression";
2004
+ object: Expression;
2005
+ property: Expression | Identifier;
2006
+ computed: boolean;
2007
+ optional: boolean;
2008
+ }
2009
+ interface OptionalCallExpression extends BaseNode {
2010
+ type: "OptionalCallExpression";
2011
+ callee: Expression;
2012
+ arguments: Array<Expression | SpreadElement | JSXNamespacedName | ArgumentPlaceholder>;
2013
+ optional: boolean;
2014
+ typeArguments?: TypeParameterInstantiation | null;
2015
+ typeParameters?: TSTypeParameterInstantiation | null;
2016
+ }
2017
+ interface ClassProperty extends BaseNode {
2018
+ type: "ClassProperty";
2019
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
2020
+ value?: Expression | null;
2021
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2022
+ decorators?: Array<Decorator> | null;
2023
+ computed: boolean;
2024
+ static: boolean;
2025
+ abstract?: boolean | null;
2026
+ accessibility?: "public" | "private" | "protected" | null;
2027
+ declare?: boolean | null;
2028
+ definite?: boolean | null;
2029
+ optional?: boolean | null;
2030
+ override?: boolean;
2031
+ readonly?: boolean | null;
2032
+ variance?: Variance | null;
2033
+ }
2034
+ interface ClassAccessorProperty extends BaseNode {
2035
+ type: "ClassAccessorProperty";
2036
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression | PrivateName;
2037
+ value?: Expression | null;
2038
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2039
+ decorators?: Array<Decorator> | null;
2040
+ computed: boolean;
2041
+ static: boolean;
2042
+ abstract?: boolean | null;
2043
+ accessibility?: "public" | "private" | "protected" | null;
2044
+ declare?: boolean | null;
2045
+ definite?: boolean | null;
2046
+ optional?: boolean | null;
2047
+ override?: boolean;
2048
+ readonly?: boolean | null;
2049
+ variance?: Variance | null;
2050
+ }
2051
+ interface ClassPrivateProperty extends BaseNode {
2052
+ type: "ClassPrivateProperty";
2053
+ key: PrivateName;
2054
+ value?: Expression | null;
2055
+ decorators?: Array<Decorator> | null;
2056
+ static: boolean;
2057
+ definite?: boolean | null;
2058
+ readonly?: boolean | null;
2059
+ typeAnnotation?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2060
+ variance?: Variance | null;
2061
+ }
2062
+ interface ClassPrivateMethod extends BaseNode {
2063
+ type: "ClassPrivateMethod";
2064
+ kind: "get" | "set" | "method";
2065
+ key: PrivateName;
2066
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
2067
+ body: BlockStatement;
2068
+ static: boolean;
2069
+ abstract?: boolean | null;
2070
+ access?: "public" | "private" | "protected" | null;
2071
+ accessibility?: "public" | "private" | "protected" | null;
2072
+ async?: boolean;
2073
+ computed?: boolean;
2074
+ decorators?: Array<Decorator> | null;
2075
+ generator?: boolean;
2076
+ optional?: boolean | null;
2077
+ override?: boolean;
2078
+ returnType?: TypeAnnotation | TSTypeAnnotation | Noop | null;
2079
+ typeParameters?: TypeParameterDeclaration | TSTypeParameterDeclaration | Noop | null;
2080
+ }
2081
+ interface PrivateName extends BaseNode {
2082
+ type: "PrivateName";
2083
+ id: Identifier;
2084
+ }
2085
+ interface StaticBlock extends BaseNode {
2086
+ type: "StaticBlock";
2087
+ body: Array<Statement>;
2088
+ }
2089
+ interface AnyTypeAnnotation extends BaseNode {
2090
+ type: "AnyTypeAnnotation";
2091
+ }
2092
+ interface ArrayTypeAnnotation extends BaseNode {
2093
+ type: "ArrayTypeAnnotation";
2094
+ elementType: FlowType;
2095
+ }
2096
+ interface BooleanTypeAnnotation extends BaseNode {
2097
+ type: "BooleanTypeAnnotation";
2098
+ }
2099
+ interface BooleanLiteralTypeAnnotation extends BaseNode {
2100
+ type: "BooleanLiteralTypeAnnotation";
2101
+ value: boolean;
2102
+ }
2103
+ interface NullLiteralTypeAnnotation extends BaseNode {
2104
+ type: "NullLiteralTypeAnnotation";
2105
+ }
2106
+ interface ClassImplements extends BaseNode {
2107
+ type: "ClassImplements";
2108
+ id: Identifier;
2109
+ typeParameters?: TypeParameterInstantiation | null;
2110
+ }
2111
+ interface DeclareClass extends BaseNode {
2112
+ type: "DeclareClass";
2113
+ id: Identifier;
2114
+ typeParameters?: TypeParameterDeclaration | null;
2115
+ extends?: Array<InterfaceExtends> | null;
2116
+ body: ObjectTypeAnnotation;
2117
+ implements?: Array<ClassImplements> | null;
2118
+ mixins?: Array<InterfaceExtends> | null;
2119
+ }
2120
+ interface DeclareFunction extends BaseNode {
2121
+ type: "DeclareFunction";
2122
+ id: Identifier;
2123
+ predicate?: DeclaredPredicate | null;
2124
+ }
2125
+ interface DeclareInterface extends BaseNode {
2126
+ type: "DeclareInterface";
2127
+ id: Identifier;
2128
+ typeParameters?: TypeParameterDeclaration | null;
2129
+ extends?: Array<InterfaceExtends> | null;
2130
+ body: ObjectTypeAnnotation;
2131
+ }
2132
+ interface DeclareModule extends BaseNode {
2133
+ type: "DeclareModule";
2134
+ id: Identifier | StringLiteral;
2135
+ body: BlockStatement;
2136
+ kind?: "CommonJS" | "ES" | null;
2137
+ }
2138
+ interface DeclareModuleExports extends BaseNode {
2139
+ type: "DeclareModuleExports";
2140
+ typeAnnotation: TypeAnnotation;
2141
+ }
2142
+ interface DeclareTypeAlias extends BaseNode {
2143
+ type: "DeclareTypeAlias";
2144
+ id: Identifier;
2145
+ typeParameters?: TypeParameterDeclaration | null;
2146
+ right: FlowType;
2147
+ }
2148
+ interface DeclareOpaqueType extends BaseNode {
2149
+ type: "DeclareOpaqueType";
2150
+ id: Identifier;
2151
+ typeParameters?: TypeParameterDeclaration | null;
2152
+ supertype?: FlowType | null;
2153
+ impltype?: FlowType | null;
2154
+ }
2155
+ interface DeclareVariable extends BaseNode {
2156
+ type: "DeclareVariable";
2157
+ id: Identifier;
2158
+ }
2159
+ interface DeclareExportDeclaration extends BaseNode {
2160
+ type: "DeclareExportDeclaration";
2161
+ declaration?: Flow | null;
2162
+ specifiers?: Array<ExportSpecifier | ExportNamespaceSpecifier> | null;
2163
+ source?: StringLiteral | null;
2164
+ default?: boolean | null;
2165
+ }
2166
+ interface DeclareExportAllDeclaration extends BaseNode {
2167
+ type: "DeclareExportAllDeclaration";
2168
+ source: StringLiteral;
2169
+ exportKind?: "type" | "value" | null;
2170
+ }
2171
+ interface DeclaredPredicate extends BaseNode {
2172
+ type: "DeclaredPredicate";
2173
+ value: Flow;
2174
+ }
2175
+ interface ExistsTypeAnnotation extends BaseNode {
2176
+ type: "ExistsTypeAnnotation";
2177
+ }
2178
+ interface FunctionTypeAnnotation extends BaseNode {
2179
+ type: "FunctionTypeAnnotation";
2180
+ typeParameters?: TypeParameterDeclaration | null;
2181
+ params: Array<FunctionTypeParam>;
2182
+ rest?: FunctionTypeParam | null;
2183
+ returnType: FlowType;
2184
+ this?: FunctionTypeParam | null;
2185
+ }
2186
+ interface FunctionTypeParam extends BaseNode {
2187
+ type: "FunctionTypeParam";
2188
+ name?: Identifier | null;
2189
+ typeAnnotation: FlowType;
2190
+ optional?: boolean | null;
2191
+ }
2192
+ interface GenericTypeAnnotation extends BaseNode {
2193
+ type: "GenericTypeAnnotation";
2194
+ id: Identifier | QualifiedTypeIdentifier;
2195
+ typeParameters?: TypeParameterInstantiation | null;
2196
+ }
2197
+ interface InferredPredicate extends BaseNode {
2198
+ type: "InferredPredicate";
2199
+ }
2200
+ interface InterfaceExtends extends BaseNode {
2201
+ type: "InterfaceExtends";
2202
+ id: Identifier | QualifiedTypeIdentifier;
2203
+ typeParameters?: TypeParameterInstantiation | null;
2204
+ }
2205
+ interface InterfaceDeclaration extends BaseNode {
2206
+ type: "InterfaceDeclaration";
2207
+ id: Identifier;
2208
+ typeParameters?: TypeParameterDeclaration | null;
2209
+ extends?: Array<InterfaceExtends> | null;
2210
+ body: ObjectTypeAnnotation;
2211
+ }
2212
+ interface InterfaceTypeAnnotation extends BaseNode {
2213
+ type: "InterfaceTypeAnnotation";
2214
+ extends?: Array<InterfaceExtends> | null;
2215
+ body: ObjectTypeAnnotation;
2216
+ }
2217
+ interface IntersectionTypeAnnotation extends BaseNode {
2218
+ type: "IntersectionTypeAnnotation";
2219
+ types: Array<FlowType>;
2220
+ }
2221
+ interface MixedTypeAnnotation extends BaseNode {
2222
+ type: "MixedTypeAnnotation";
2223
+ }
2224
+ interface EmptyTypeAnnotation extends BaseNode {
2225
+ type: "EmptyTypeAnnotation";
2226
+ }
2227
+ interface NullableTypeAnnotation extends BaseNode {
2228
+ type: "NullableTypeAnnotation";
2229
+ typeAnnotation: FlowType;
2230
+ }
2231
+ interface NumberLiteralTypeAnnotation extends BaseNode {
2232
+ type: "NumberLiteralTypeAnnotation";
2233
+ value: number;
2234
+ }
2235
+ interface NumberTypeAnnotation extends BaseNode {
2236
+ type: "NumberTypeAnnotation";
2237
+ }
2238
+ interface ObjectTypeAnnotation extends BaseNode {
2239
+ type: "ObjectTypeAnnotation";
2240
+ properties: Array<ObjectTypeProperty | ObjectTypeSpreadProperty>;
2241
+ indexers?: Array<ObjectTypeIndexer>;
2242
+ callProperties?: Array<ObjectTypeCallProperty>;
2243
+ internalSlots?: Array<ObjectTypeInternalSlot>;
2244
+ exact: boolean;
2245
+ inexact?: boolean | null;
2246
+ }
2247
+ interface ObjectTypeInternalSlot extends BaseNode {
2248
+ type: "ObjectTypeInternalSlot";
2249
+ id: Identifier;
2250
+ value: FlowType;
2251
+ optional: boolean;
2252
+ static: boolean;
2253
+ method: boolean;
2254
+ }
2255
+ interface ObjectTypeCallProperty extends BaseNode {
2256
+ type: "ObjectTypeCallProperty";
2257
+ value: FlowType;
2258
+ static: boolean;
2259
+ }
2260
+ interface ObjectTypeIndexer extends BaseNode {
2261
+ type: "ObjectTypeIndexer";
2262
+ id?: Identifier | null;
2263
+ key: FlowType;
2264
+ value: FlowType;
2265
+ variance?: Variance | null;
2266
+ static: boolean;
2267
+ }
2268
+ interface ObjectTypeProperty extends BaseNode {
2269
+ type: "ObjectTypeProperty";
2270
+ key: Identifier | StringLiteral;
2271
+ value: FlowType;
2272
+ variance?: Variance | null;
2273
+ kind: "init" | "get" | "set";
2274
+ method: boolean;
2275
+ optional: boolean;
2276
+ proto: boolean;
2277
+ static: boolean;
2278
+ }
2279
+ interface ObjectTypeSpreadProperty extends BaseNode {
2280
+ type: "ObjectTypeSpreadProperty";
2281
+ argument: FlowType;
2282
+ }
2283
+ interface OpaqueType extends BaseNode {
2284
+ type: "OpaqueType";
2285
+ id: Identifier;
2286
+ typeParameters?: TypeParameterDeclaration | null;
2287
+ supertype?: FlowType | null;
2288
+ impltype: FlowType;
2289
+ }
2290
+ interface QualifiedTypeIdentifier extends BaseNode {
2291
+ type: "QualifiedTypeIdentifier";
2292
+ id: Identifier;
2293
+ qualification: Identifier | QualifiedTypeIdentifier;
2294
+ }
2295
+ interface StringLiteralTypeAnnotation extends BaseNode {
2296
+ type: "StringLiteralTypeAnnotation";
2297
+ value: string;
2298
+ }
2299
+ interface StringTypeAnnotation extends BaseNode {
2300
+ type: "StringTypeAnnotation";
2301
+ }
2302
+ interface SymbolTypeAnnotation extends BaseNode {
2303
+ type: "SymbolTypeAnnotation";
2304
+ }
2305
+ interface ThisTypeAnnotation extends BaseNode {
2306
+ type: "ThisTypeAnnotation";
2307
+ }
2308
+ interface TupleTypeAnnotation extends BaseNode {
2309
+ type: "TupleTypeAnnotation";
2310
+ types: Array<FlowType>;
2311
+ }
2312
+ interface TypeofTypeAnnotation extends BaseNode {
2313
+ type: "TypeofTypeAnnotation";
2314
+ argument: FlowType;
2315
+ }
2316
+ interface TypeAlias extends BaseNode {
2317
+ type: "TypeAlias";
2318
+ id: Identifier;
2319
+ typeParameters?: TypeParameterDeclaration | null;
2320
+ right: FlowType;
2321
+ }
2322
+ interface TypeAnnotation extends BaseNode {
2323
+ type: "TypeAnnotation";
2324
+ typeAnnotation: FlowType;
2325
+ }
2326
+ interface TypeCastExpression extends BaseNode {
2327
+ type: "TypeCastExpression";
2328
+ expression: Expression;
2329
+ typeAnnotation: TypeAnnotation;
2330
+ }
2331
+ interface TypeParameter extends BaseNode {
2332
+ type: "TypeParameter";
2333
+ bound?: TypeAnnotation | null;
2334
+ default?: FlowType | null;
2335
+ variance?: Variance | null;
2336
+ name: string;
2337
+ }
2338
+ interface TypeParameterDeclaration extends BaseNode {
2339
+ type: "TypeParameterDeclaration";
2340
+ params: Array<TypeParameter>;
2341
+ }
2342
+ interface TypeParameterInstantiation extends BaseNode {
2343
+ type: "TypeParameterInstantiation";
2344
+ params: Array<FlowType>;
2345
+ }
2346
+ interface UnionTypeAnnotation extends BaseNode {
2347
+ type: "UnionTypeAnnotation";
2348
+ types: Array<FlowType>;
2349
+ }
2350
+ interface Variance extends BaseNode {
2351
+ type: "Variance";
2352
+ kind: "minus" | "plus";
2353
+ }
2354
+ interface VoidTypeAnnotation extends BaseNode {
2355
+ type: "VoidTypeAnnotation";
2356
+ }
2357
+ interface EnumDeclaration extends BaseNode {
2358
+ type: "EnumDeclaration";
2359
+ id: Identifier;
2360
+ body: EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
2361
+ }
2362
+ interface EnumBooleanBody extends BaseNode {
2363
+ type: "EnumBooleanBody";
2364
+ members: Array<EnumBooleanMember>;
2365
+ explicitType: boolean;
2366
+ hasUnknownMembers: boolean;
2367
+ }
2368
+ interface EnumNumberBody extends BaseNode {
2369
+ type: "EnumNumberBody";
2370
+ members: Array<EnumNumberMember>;
2371
+ explicitType: boolean;
2372
+ hasUnknownMembers: boolean;
2373
+ }
2374
+ interface EnumStringBody extends BaseNode {
2375
+ type: "EnumStringBody";
2376
+ members: Array<EnumStringMember | EnumDefaultedMember>;
2377
+ explicitType: boolean;
2378
+ hasUnknownMembers: boolean;
2379
+ }
2380
+ interface EnumSymbolBody extends BaseNode {
2381
+ type: "EnumSymbolBody";
2382
+ members: Array<EnumDefaultedMember>;
2383
+ hasUnknownMembers: boolean;
2384
+ }
2385
+ interface EnumBooleanMember extends BaseNode {
2386
+ type: "EnumBooleanMember";
2387
+ id: Identifier;
2388
+ init: BooleanLiteral;
2389
+ }
2390
+ interface EnumNumberMember extends BaseNode {
2391
+ type: "EnumNumberMember";
2392
+ id: Identifier;
2393
+ init: NumericLiteral;
2394
+ }
2395
+ interface EnumStringMember extends BaseNode {
2396
+ type: "EnumStringMember";
2397
+ id: Identifier;
2398
+ init: StringLiteral;
2399
+ }
2400
+ interface EnumDefaultedMember extends BaseNode {
2401
+ type: "EnumDefaultedMember";
2402
+ id: Identifier;
2403
+ }
2404
+ interface IndexedAccessType extends BaseNode {
2405
+ type: "IndexedAccessType";
2406
+ objectType: FlowType;
2407
+ indexType: FlowType;
2408
+ }
2409
+ interface OptionalIndexedAccessType extends BaseNode {
2410
+ type: "OptionalIndexedAccessType";
2411
+ objectType: FlowType;
2412
+ indexType: FlowType;
2413
+ optional: boolean;
2414
+ }
2415
+ interface JSXAttribute extends BaseNode {
2416
+ type: "JSXAttribute";
2417
+ name: JSXIdentifier | JSXNamespacedName;
2418
+ value?: JSXElement | JSXFragment | StringLiteral | JSXExpressionContainer | null;
2419
+ }
2420
+ interface JSXClosingElement extends BaseNode {
2421
+ type: "JSXClosingElement";
2422
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
2423
+ }
2424
+ interface JSXElement extends BaseNode {
2425
+ type: "JSXElement";
2426
+ openingElement: JSXOpeningElement;
2427
+ closingElement?: JSXClosingElement | null;
2428
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
2429
+ selfClosing?: boolean | null;
2430
+ }
2431
+ interface JSXEmptyExpression extends BaseNode {
2432
+ type: "JSXEmptyExpression";
2433
+ }
2434
+ interface JSXExpressionContainer extends BaseNode {
2435
+ type: "JSXExpressionContainer";
2436
+ expression: Expression | JSXEmptyExpression;
2437
+ }
2438
+ interface JSXSpreadChild extends BaseNode {
2439
+ type: "JSXSpreadChild";
2440
+ expression: Expression;
2441
+ }
2442
+ interface JSXIdentifier extends BaseNode {
2443
+ type: "JSXIdentifier";
2444
+ name: string;
2445
+ }
2446
+ interface JSXMemberExpression extends BaseNode {
2447
+ type: "JSXMemberExpression";
2448
+ object: JSXMemberExpression | JSXIdentifier;
2449
+ property: JSXIdentifier;
2450
+ }
2451
+ interface JSXNamespacedName extends BaseNode {
2452
+ type: "JSXNamespacedName";
2453
+ namespace: JSXIdentifier;
2454
+ name: JSXIdentifier;
2455
+ }
2456
+ interface JSXOpeningElement extends BaseNode {
2457
+ type: "JSXOpeningElement";
2458
+ name: JSXIdentifier | JSXMemberExpression | JSXNamespacedName;
2459
+ attributes: Array<JSXAttribute | JSXSpreadAttribute>;
2460
+ selfClosing: boolean;
2461
+ typeParameters?: TypeParameterInstantiation | TSTypeParameterInstantiation | null;
2462
+ }
2463
+ interface JSXSpreadAttribute extends BaseNode {
2464
+ type: "JSXSpreadAttribute";
2465
+ argument: Expression;
2466
+ }
2467
+ interface JSXText extends BaseNode {
2468
+ type: "JSXText";
2469
+ value: string;
2470
+ }
2471
+ interface JSXFragment extends BaseNode {
2472
+ type: "JSXFragment";
2473
+ openingFragment: JSXOpeningFragment;
2474
+ closingFragment: JSXClosingFragment;
2475
+ children: Array<JSXText | JSXExpressionContainer | JSXSpreadChild | JSXElement | JSXFragment>;
2476
+ }
2477
+ interface JSXOpeningFragment extends BaseNode {
2478
+ type: "JSXOpeningFragment";
2479
+ }
2480
+ interface JSXClosingFragment extends BaseNode {
2481
+ type: "JSXClosingFragment";
2482
+ }
2483
+ interface Noop extends BaseNode {
2484
+ type: "Noop";
2485
+ }
2486
+ interface Placeholder extends BaseNode {
2487
+ type: "Placeholder";
2488
+ expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern";
2489
+ name: Identifier;
2490
+ }
2491
+ interface V8IntrinsicIdentifier extends BaseNode {
2492
+ type: "V8IntrinsicIdentifier";
2493
+ name: string;
2494
+ }
2495
+ interface ArgumentPlaceholder extends BaseNode {
2496
+ type: "ArgumentPlaceholder";
2497
+ }
2498
+ interface BindExpression extends BaseNode {
2499
+ type: "BindExpression";
2500
+ object: Expression;
2501
+ callee: Expression;
2502
+ }
2503
+ interface ImportAttribute extends BaseNode {
2504
+ type: "ImportAttribute";
2505
+ key: Identifier | StringLiteral;
2506
+ value: StringLiteral;
2507
+ }
2508
+ interface Decorator extends BaseNode {
2509
+ type: "Decorator";
2510
+ expression: Expression;
2511
+ }
2512
+ interface DoExpression extends BaseNode {
2513
+ type: "DoExpression";
2514
+ body: BlockStatement;
2515
+ async: boolean;
2516
+ }
2517
+ interface ExportDefaultSpecifier extends BaseNode {
2518
+ type: "ExportDefaultSpecifier";
2519
+ exported: Identifier;
2520
+ }
2521
+ interface RecordExpression extends BaseNode {
2522
+ type: "RecordExpression";
2523
+ properties: Array<ObjectProperty | SpreadElement>;
2524
+ }
2525
+ interface TupleExpression extends BaseNode {
2526
+ type: "TupleExpression";
2527
+ elements: Array<Expression | SpreadElement>;
2528
+ }
2529
+ interface DecimalLiteral extends BaseNode {
2530
+ type: "DecimalLiteral";
2531
+ value: string;
2532
+ }
2533
+ interface ModuleExpression extends BaseNode {
2534
+ type: "ModuleExpression";
2535
+ body: Program;
2536
+ }
2537
+ interface TopicReference extends BaseNode {
2538
+ type: "TopicReference";
2539
+ }
2540
+ interface PipelineTopicExpression extends BaseNode {
2541
+ type: "PipelineTopicExpression";
2542
+ expression: Expression;
2543
+ }
2544
+ interface PipelineBareFunction extends BaseNode {
2545
+ type: "PipelineBareFunction";
2546
+ callee: Expression;
2547
+ }
2548
+ interface PipelinePrimaryTopicReference extends BaseNode {
2549
+ type: "PipelinePrimaryTopicReference";
2550
+ }
2551
+ interface TSParameterProperty extends BaseNode {
2552
+ type: "TSParameterProperty";
2553
+ parameter: Identifier | AssignmentPattern;
2554
+ accessibility?: "public" | "private" | "protected" | null;
2555
+ decorators?: Array<Decorator> | null;
2556
+ override?: boolean | null;
2557
+ readonly?: boolean | null;
2558
+ }
2559
+ interface TSDeclareFunction extends BaseNode {
2560
+ type: "TSDeclareFunction";
2561
+ id?: Identifier | null;
2562
+ typeParameters?: TSTypeParameterDeclaration | Noop | null;
2563
+ params: Array<Identifier | Pattern | RestElement>;
2564
+ returnType?: TSTypeAnnotation | Noop | null;
2565
+ async?: boolean;
2566
+ declare?: boolean | null;
2567
+ generator?: boolean;
2568
+ }
2569
+ interface TSDeclareMethod extends BaseNode {
2570
+ type: "TSDeclareMethod";
2571
+ decorators?: Array<Decorator> | null;
2572
+ key: Identifier | StringLiteral | NumericLiteral | BigIntLiteral | Expression;
2573
+ typeParameters?: TSTypeParameterDeclaration | Noop | null;
2574
+ params: Array<Identifier | Pattern | RestElement | TSParameterProperty>;
2575
+ returnType?: TSTypeAnnotation | Noop | null;
2576
+ abstract?: boolean | null;
2577
+ access?: "public" | "private" | "protected" | null;
2578
+ accessibility?: "public" | "private" | "protected" | null;
2579
+ async?: boolean;
2580
+ computed?: boolean;
2581
+ generator?: boolean;
2582
+ kind?: "get" | "set" | "method" | "constructor";
2583
+ optional?: boolean | null;
2584
+ override?: boolean;
2585
+ static?: boolean;
2586
+ }
2587
+ interface TSQualifiedName extends BaseNode {
2588
+ type: "TSQualifiedName";
2589
+ left: TSEntityName;
2590
+ right: Identifier;
2591
+ }
2592
+ interface TSCallSignatureDeclaration extends BaseNode {
2593
+ type: "TSCallSignatureDeclaration";
2594
+ typeParameters?: TSTypeParameterDeclaration | null;
2595
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2596
+ typeAnnotation?: TSTypeAnnotation | null;
2597
+ }
2598
+ interface TSConstructSignatureDeclaration extends BaseNode {
2599
+ type: "TSConstructSignatureDeclaration";
2600
+ typeParameters?: TSTypeParameterDeclaration | null;
2601
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2602
+ typeAnnotation?: TSTypeAnnotation | null;
2603
+ }
2604
+ interface TSPropertySignature extends BaseNode {
2605
+ type: "TSPropertySignature";
2606
+ key: Expression;
2607
+ typeAnnotation?: TSTypeAnnotation | null;
2608
+ computed?: boolean;
2609
+ kind: "get" | "set";
2610
+ optional?: boolean | null;
2611
+ readonly?: boolean | null;
2612
+ }
2613
+ interface TSMethodSignature extends BaseNode {
2614
+ type: "TSMethodSignature";
2615
+ key: Expression;
2616
+ typeParameters?: TSTypeParameterDeclaration | null;
2617
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2618
+ typeAnnotation?: TSTypeAnnotation | null;
2619
+ computed?: boolean;
2620
+ kind: "method" | "get" | "set";
2621
+ optional?: boolean | null;
2622
+ }
2623
+ interface TSIndexSignature extends BaseNode {
2624
+ type: "TSIndexSignature";
2625
+ parameters: Array<Identifier>;
2626
+ typeAnnotation?: TSTypeAnnotation | null;
2627
+ readonly?: boolean | null;
2628
+ static?: boolean | null;
2629
+ }
2630
+ interface TSAnyKeyword extends BaseNode {
2631
+ type: "TSAnyKeyword";
2632
+ }
2633
+ interface TSBooleanKeyword extends BaseNode {
2634
+ type: "TSBooleanKeyword";
2635
+ }
2636
+ interface TSBigIntKeyword extends BaseNode {
2637
+ type: "TSBigIntKeyword";
2638
+ }
2639
+ interface TSIntrinsicKeyword extends BaseNode {
2640
+ type: "TSIntrinsicKeyword";
2641
+ }
2642
+ interface TSNeverKeyword extends BaseNode {
2643
+ type: "TSNeverKeyword";
2644
+ }
2645
+ interface TSNullKeyword extends BaseNode {
2646
+ type: "TSNullKeyword";
2647
+ }
2648
+ interface TSNumberKeyword extends BaseNode {
2649
+ type: "TSNumberKeyword";
2650
+ }
2651
+ interface TSObjectKeyword extends BaseNode {
2652
+ type: "TSObjectKeyword";
2653
+ }
2654
+ interface TSStringKeyword extends BaseNode {
2655
+ type: "TSStringKeyword";
2656
+ }
2657
+ interface TSSymbolKeyword extends BaseNode {
2658
+ type: "TSSymbolKeyword";
2659
+ }
2660
+ interface TSUndefinedKeyword extends BaseNode {
2661
+ type: "TSUndefinedKeyword";
2662
+ }
2663
+ interface TSUnknownKeyword extends BaseNode {
2664
+ type: "TSUnknownKeyword";
2665
+ }
2666
+ interface TSVoidKeyword extends BaseNode {
2667
+ type: "TSVoidKeyword";
2668
+ }
2669
+ interface TSThisType extends BaseNode {
2670
+ type: "TSThisType";
2671
+ }
2672
+ interface TSFunctionType extends BaseNode {
2673
+ type: "TSFunctionType";
2674
+ typeParameters?: TSTypeParameterDeclaration | null;
2675
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2676
+ typeAnnotation?: TSTypeAnnotation | null;
2677
+ }
2678
+ interface TSConstructorType extends BaseNode {
2679
+ type: "TSConstructorType";
2680
+ typeParameters?: TSTypeParameterDeclaration | null;
2681
+ parameters: Array<ArrayPattern | Identifier | ObjectPattern | RestElement>;
2682
+ typeAnnotation?: TSTypeAnnotation | null;
2683
+ abstract?: boolean | null;
2684
+ }
2685
+ interface TSTypeReference extends BaseNode {
2686
+ type: "TSTypeReference";
2687
+ typeName: TSEntityName;
2688
+ typeParameters?: TSTypeParameterInstantiation | null;
2689
+ }
2690
+ interface TSTypePredicate extends BaseNode {
2691
+ type: "TSTypePredicate";
2692
+ parameterName: Identifier | TSThisType;
2693
+ typeAnnotation?: TSTypeAnnotation | null;
2694
+ asserts?: boolean | null;
2695
+ }
2696
+ interface TSTypeQuery extends BaseNode {
2697
+ type: "TSTypeQuery";
2698
+ exprName: TSEntityName | TSImportType;
2699
+ typeParameters?: TSTypeParameterInstantiation | null;
2700
+ }
2701
+ interface TSTypeLiteral extends BaseNode {
2702
+ type: "TSTypeLiteral";
2703
+ members: Array<TSTypeElement>;
2704
+ }
2705
+ interface TSArrayType extends BaseNode {
2706
+ type: "TSArrayType";
2707
+ elementType: TSType;
2708
+ }
2709
+ interface TSTupleType extends BaseNode {
2710
+ type: "TSTupleType";
2711
+ elementTypes: Array<TSType | TSNamedTupleMember>;
2712
+ }
2713
+ interface TSOptionalType extends BaseNode {
2714
+ type: "TSOptionalType";
2715
+ typeAnnotation: TSType;
2716
+ }
2717
+ interface TSRestType extends BaseNode {
2718
+ type: "TSRestType";
2719
+ typeAnnotation: TSType;
2720
+ }
2721
+ interface TSNamedTupleMember extends BaseNode {
2722
+ type: "TSNamedTupleMember";
2723
+ label: Identifier;
2724
+ elementType: TSType;
2725
+ optional: boolean;
2726
+ }
2727
+ interface TSUnionType extends BaseNode {
2728
+ type: "TSUnionType";
2729
+ types: Array<TSType>;
2730
+ }
2731
+ interface TSIntersectionType extends BaseNode {
2732
+ type: "TSIntersectionType";
2733
+ types: Array<TSType>;
2734
+ }
2735
+ interface TSConditionalType extends BaseNode {
2736
+ type: "TSConditionalType";
2737
+ checkType: TSType;
2738
+ extendsType: TSType;
2739
+ trueType: TSType;
2740
+ falseType: TSType;
2741
+ }
2742
+ interface TSInferType extends BaseNode {
2743
+ type: "TSInferType";
2744
+ typeParameter: TSTypeParameter;
2745
+ }
2746
+ interface TSParenthesizedType extends BaseNode {
2747
+ type: "TSParenthesizedType";
2748
+ typeAnnotation: TSType;
2749
+ }
2750
+ interface TSTypeOperator extends BaseNode {
2751
+ type: "TSTypeOperator";
2752
+ typeAnnotation: TSType;
2753
+ operator: string;
2754
+ }
2755
+ interface TSIndexedAccessType extends BaseNode {
2756
+ type: "TSIndexedAccessType";
2757
+ objectType: TSType;
2758
+ indexType: TSType;
2759
+ }
2760
+ interface TSMappedType extends BaseNode {
2761
+ type: "TSMappedType";
2762
+ typeParameter: TSTypeParameter;
2763
+ typeAnnotation?: TSType | null;
2764
+ nameType?: TSType | null;
2765
+ optional?: true | false | "+" | "-" | null;
2766
+ readonly?: true | false | "+" | "-" | null;
2767
+ }
2768
+ interface TSLiteralType extends BaseNode {
2769
+ type: "TSLiteralType";
2770
+ literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | TemplateLiteral | UnaryExpression;
2771
+ }
2772
+ interface TSExpressionWithTypeArguments extends BaseNode {
2773
+ type: "TSExpressionWithTypeArguments";
2774
+ expression: TSEntityName;
2775
+ typeParameters?: TSTypeParameterInstantiation | null;
2776
+ }
2777
+ interface TSInterfaceDeclaration extends BaseNode {
2778
+ type: "TSInterfaceDeclaration";
2779
+ id: Identifier;
2780
+ typeParameters?: TSTypeParameterDeclaration | null;
2781
+ extends?: Array<TSExpressionWithTypeArguments> | null;
2782
+ body: TSInterfaceBody;
2783
+ declare?: boolean | null;
2784
+ }
2785
+ interface TSInterfaceBody extends BaseNode {
2786
+ type: "TSInterfaceBody";
2787
+ body: Array<TSTypeElement>;
2788
+ }
2789
+ interface TSTypeAliasDeclaration extends BaseNode {
2790
+ type: "TSTypeAliasDeclaration";
2791
+ id: Identifier;
2792
+ typeParameters?: TSTypeParameterDeclaration | null;
2793
+ typeAnnotation: TSType;
2794
+ declare?: boolean | null;
2795
+ }
2796
+ interface TSInstantiationExpression extends BaseNode {
2797
+ type: "TSInstantiationExpression";
2798
+ expression: Expression;
2799
+ typeParameters?: TSTypeParameterInstantiation | null;
2800
+ }
2801
+ interface TSAsExpression extends BaseNode {
2802
+ type: "TSAsExpression";
2803
+ expression: Expression;
2804
+ typeAnnotation: TSType;
2805
+ }
2806
+ interface TSSatisfiesExpression extends BaseNode {
2807
+ type: "TSSatisfiesExpression";
2808
+ expression: Expression;
2809
+ typeAnnotation: TSType;
2810
+ }
2811
+ interface TSTypeAssertion extends BaseNode {
2812
+ type: "TSTypeAssertion";
2813
+ typeAnnotation: TSType;
2814
+ expression: Expression;
2815
+ }
2816
+ interface TSEnumDeclaration extends BaseNode {
2817
+ type: "TSEnumDeclaration";
2818
+ id: Identifier;
2819
+ members: Array<TSEnumMember>;
2820
+ const?: boolean | null;
2821
+ declare?: boolean | null;
2822
+ initializer?: Expression | null;
2823
+ }
2824
+ interface TSEnumMember extends BaseNode {
2825
+ type: "TSEnumMember";
2826
+ id: Identifier | StringLiteral;
2827
+ initializer?: Expression | null;
2828
+ }
2829
+ interface TSModuleDeclaration extends BaseNode {
2830
+ type: "TSModuleDeclaration";
2831
+ id: Identifier | StringLiteral;
2832
+ body: TSModuleBlock | TSModuleDeclaration;
2833
+ declare?: boolean | null;
2834
+ global?: boolean | null;
2835
+ }
2836
+ interface TSModuleBlock extends BaseNode {
2837
+ type: "TSModuleBlock";
2838
+ body: Array<Statement>;
2839
+ }
2840
+ interface TSImportType extends BaseNode {
2841
+ type: "TSImportType";
2842
+ argument: StringLiteral;
2843
+ qualifier?: TSEntityName | null;
2844
+ typeParameters?: TSTypeParameterInstantiation | null;
2845
+ }
2846
+ interface TSImportEqualsDeclaration extends BaseNode {
2847
+ type: "TSImportEqualsDeclaration";
2848
+ id: Identifier;
2849
+ moduleReference: TSEntityName | TSExternalModuleReference;
2850
+ importKind?: "type" | "value" | null;
2851
+ isExport: boolean;
2852
+ }
2853
+ interface TSExternalModuleReference extends BaseNode {
2854
+ type: "TSExternalModuleReference";
2855
+ expression: StringLiteral;
2856
+ }
2857
+ interface TSNonNullExpression extends BaseNode {
2858
+ type: "TSNonNullExpression";
2859
+ expression: Expression;
2860
+ }
2861
+ interface TSExportAssignment extends BaseNode {
2862
+ type: "TSExportAssignment";
2863
+ expression: Expression;
2864
+ }
2865
+ interface TSNamespaceExportDeclaration extends BaseNode {
2866
+ type: "TSNamespaceExportDeclaration";
2867
+ id: Identifier;
2868
+ }
2869
+ interface TSTypeAnnotation extends BaseNode {
2870
+ type: "TSTypeAnnotation";
2871
+ typeAnnotation: TSType;
2872
+ }
2873
+ interface TSTypeParameterInstantiation extends BaseNode {
2874
+ type: "TSTypeParameterInstantiation";
2875
+ params: Array<TSType>;
2876
+ }
2877
+ interface TSTypeParameterDeclaration extends BaseNode {
2878
+ type: "TSTypeParameterDeclaration";
2879
+ params: Array<TSTypeParameter>;
2880
+ }
2881
+ interface TSTypeParameter extends BaseNode {
2882
+ type: "TSTypeParameter";
2883
+ constraint?: TSType | null;
2884
+ default?: TSType | null;
2885
+ name: string;
2886
+ const?: boolean | null;
2887
+ in?: boolean | null;
2888
+ out?: boolean | null;
2889
+ }
2890
+ 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;
2891
+ 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;
2892
+ type Binary = BinaryExpression | LogicalExpression;
2893
+ type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2894
+ type BlockParent = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2895
+ type Block = BlockStatement | Program | TSModuleBlock;
2896
+ 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;
2897
+ type Terminatorless = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement | YieldExpression | AwaitExpression;
2898
+ type CompletionStatement = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement;
2899
+ type Conditional = ConditionalExpression | IfStatement;
2900
+ type Loop = DoWhileStatement | ForInStatement | ForStatement | WhileStatement | ForOfStatement;
2901
+ type While = DoWhileStatement | WhileStatement;
2902
+ type ExpressionWrapper = ExpressionStatement | ParenthesizedExpression | TypeCastExpression;
2903
+ type For = ForInStatement | ForStatement | ForOfStatement;
2904
+ type ForXStatement = ForInStatement | ForOfStatement;
2905
+ type Function = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod;
2906
+ type FunctionParent = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock;
2907
+ type Pureish = FunctionDeclaration | FunctionExpression | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | ArrowFunctionExpression | BigIntLiteral | DecimalLiteral;
2908
+ 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;
2909
+ type PatternLike = Identifier | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
2910
+ type LVal = Identifier | MemberExpression | RestElement | AssignmentPattern | ArrayPattern | ObjectPattern | TSParameterProperty | TSAsExpression | TSSatisfiesExpression | TSTypeAssertion | TSNonNullExpression;
2911
+ type TSEntityName = Identifier | TSQualifiedName;
2912
+ type Literal = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | TemplateLiteral | BigIntLiteral | DecimalLiteral;
2913
+ type Immutable = StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | BigIntLiteral | JSXAttribute | JSXClosingElement | JSXElement | JSXExpressionContainer | JSXSpreadChild | JSXOpeningElement | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment | DecimalLiteral;
2914
+ type UserWhitespacable = ObjectMethod | ObjectProperty | ObjectTypeInternalSlot | ObjectTypeCallProperty | ObjectTypeIndexer | ObjectTypeProperty | ObjectTypeSpreadProperty;
2915
+ type Method = ObjectMethod | ClassMethod | ClassPrivateMethod;
2916
+ type ObjectMember = ObjectMethod | ObjectProperty;
2917
+ type Property = ObjectProperty | ClassProperty | ClassAccessorProperty | ClassPrivateProperty;
2918
+ type UnaryLike = UnaryExpression | SpreadElement;
2919
+ type Pattern = AssignmentPattern | ArrayPattern | ObjectPattern;
2920
+ type Class = ClassExpression | ClassDeclaration;
2921
+ type ImportOrExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
2922
+ type ExportDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration;
2923
+ type ModuleSpecifier = ExportSpecifier | ImportDefaultSpecifier | ImportNamespaceSpecifier | ImportSpecifier | ExportNamespaceSpecifier | ExportDefaultSpecifier;
2924
+ type Accessor = ClassAccessorProperty;
2925
+ type Private = ClassPrivateProperty | ClassPrivateMethod | PrivateName;
2926
+ 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;
2927
+ 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;
2928
+ type FlowBaseAnnotation = AnyTypeAnnotation | BooleanTypeAnnotation | NullLiteralTypeAnnotation | MixedTypeAnnotation | EmptyTypeAnnotation | NumberTypeAnnotation | StringTypeAnnotation | SymbolTypeAnnotation | ThisTypeAnnotation | VoidTypeAnnotation;
2929
+ type FlowDeclaration = DeclareClass | DeclareFunction | DeclareInterface | DeclareModule | DeclareModuleExports | DeclareTypeAlias | DeclareOpaqueType | DeclareVariable | DeclareExportDeclaration | DeclareExportAllDeclaration | InterfaceDeclaration | OpaqueType | TypeAlias;
2930
+ type FlowPredicate = DeclaredPredicate | InferredPredicate;
2931
+ type EnumBody = EnumBooleanBody | EnumNumberBody | EnumStringBody | EnumSymbolBody;
2932
+ type EnumMember = EnumBooleanMember | EnumNumberMember | EnumStringMember | EnumDefaultedMember;
2933
+ type JSX = JSXAttribute | JSXClosingElement | JSXElement | JSXEmptyExpression | JSXExpressionContainer | JSXSpreadChild | JSXIdentifier | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement | JSXSpreadAttribute | JSXText | JSXFragment | JSXOpeningFragment | JSXClosingFragment;
2934
+ type Miscellaneous = Noop | Placeholder | V8IntrinsicIdentifier;
2935
+ 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;
2936
+ type TSTypeElement = TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSPropertySignature | TSMethodSignature | TSIndexSignature;
2937
+ 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;
2938
+ type TSBaseType = TSAnyKeyword | TSBooleanKeyword | TSBigIntKeyword | TSIntrinsicKeyword | TSNeverKeyword | TSNullKeyword | TSNumberKeyword | TSObjectKeyword | TSStringKeyword | TSSymbolKeyword | TSUndefinedKeyword | TSUnknownKeyword | TSVoidKeyword | TSThisType | TSLiteralType;
2939
+ type ModuleDeclaration = ExportAllDeclaration | ExportDefaultDeclaration | ExportNamedDeclaration | ImportDeclaration;
2940
+ interface Aliases {
2941
+ Standardized: Standardized;
2942
+ Expression: Expression;
2943
+ Binary: Binary;
2944
+ Scopable: Scopable;
2945
+ BlockParent: BlockParent;
2946
+ Block: Block;
2947
+ Statement: Statement;
2948
+ Terminatorless: Terminatorless;
2949
+ CompletionStatement: CompletionStatement;
2950
+ Conditional: Conditional;
2951
+ Loop: Loop;
2952
+ While: While;
2953
+ ExpressionWrapper: ExpressionWrapper;
2954
+ For: For;
2955
+ ForXStatement: ForXStatement;
2956
+ Function: Function;
2957
+ FunctionParent: FunctionParent;
2958
+ Pureish: Pureish;
2959
+ Declaration: Declaration;
2960
+ PatternLike: PatternLike;
2961
+ LVal: LVal;
2962
+ TSEntityName: TSEntityName;
2963
+ Literal: Literal;
2964
+ Immutable: Immutable;
2965
+ UserWhitespacable: UserWhitespacable;
2966
+ Method: Method;
2967
+ ObjectMember: ObjectMember;
2968
+ Property: Property;
2969
+ UnaryLike: UnaryLike;
2970
+ Pattern: Pattern;
2971
+ Class: Class;
2972
+ ImportOrExportDeclaration: ImportOrExportDeclaration;
2973
+ ExportDeclaration: ExportDeclaration;
2974
+ ModuleSpecifier: ModuleSpecifier;
2975
+ Accessor: Accessor;
2976
+ Private: Private;
2977
+ Flow: Flow;
2978
+ FlowType: FlowType;
2979
+ FlowBaseAnnotation: FlowBaseAnnotation;
2980
+ FlowDeclaration: FlowDeclaration;
2981
+ FlowPredicate: FlowPredicate;
2982
+ EnumBody: EnumBody;
2983
+ EnumMember: EnumMember;
2984
+ JSX: JSX;
2985
+ Miscellaneous: Miscellaneous;
2986
+ TypeScript: TypeScript;
2987
+ TSTypeElement: TSTypeElement;
2988
+ TSType: TSType;
2989
+ TSBaseType: TSBaseType;
2990
+ ModuleDeclaration: ModuleDeclaration;
2991
+ }
2992
+ type DeprecatedAliases = NumberLiteral | RegexLiteral | RestProperty | SpreadProperty;
2993
+ interface ParentMaps {
2994
+ 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;
2995
+ ArgumentPlaceholder: CallExpression | NewExpression | OptionalCallExpression;
2996
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
2997
+ ArrayPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | CatchClause | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
2998
+ 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;
2999
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3000
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3001
+ AssignmentPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSDeclareFunction | TSDeclareMethod | TSParameterProperty | VariableDeclarator;
3002
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3003
+ 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 | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3004
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3005
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3006
+ BlockStatement: ArrowFunctionExpression | BlockStatement | CatchClause | ClassMethod | ClassPrivateMethod | DeclareModule | DoExpression | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | FunctionDeclaration | FunctionExpression | IfStatement | LabeledStatement | ObjectMethod | Program | StaticBlock | SwitchCase | TSModuleBlock | TryStatement | WhileStatement | WithStatement;
3007
+ 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 | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3008
+ 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;
3009
+ 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;
3010
+ BreakStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3011
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3012
+ CatchClause: TryStatement;
3013
+ ClassAccessorProperty: ClassBody;
3014
+ ClassBody: ClassDeclaration | ClassExpression;
3015
+ ClassDeclaration: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3016
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3017
+ ClassImplements: ClassDeclaration | ClassExpression | DeclareClass | DeclareExportDeclaration | DeclaredPredicate;
3018
+ ClassMethod: ClassBody;
3019
+ ClassPrivateMethod: ClassBody;
3020
+ ClassPrivateProperty: ClassBody;
3021
+ ClassProperty: ClassBody;
3022
+ CommentBlock: File;
3023
+ CommentLine: File;
3024
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3025
+ ContinueStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3026
+ DebuggerStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3027
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3028
+ DeclareClass: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3029
+ DeclareExportAllDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3030
+ DeclareExportDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3031
+ DeclareFunction: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3032
+ DeclareInterface: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3033
+ DeclareModule: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3034
+ DeclareModuleExports: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3035
+ DeclareOpaqueType: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3036
+ DeclareTypeAlias: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3037
+ DeclareVariable: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3038
+ DeclaredPredicate: ArrowFunctionExpression | DeclareExportDeclaration | DeclareFunction | DeclaredPredicate | FunctionDeclaration | FunctionExpression;
3039
+ Decorator: ArrayPattern | AssignmentPattern | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | Identifier | ObjectMethod | ObjectPattern | ObjectProperty | RestElement | TSDeclareMethod | TSParameterProperty;
3040
+ Directive: BlockStatement | Program;
3041
+ DirectiveLiteral: Directive;
3042
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3043
+ DoWhileStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3044
+ EmptyStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3045
+ 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;
3046
+ EnumBooleanBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3047
+ EnumBooleanMember: DeclareExportDeclaration | DeclaredPredicate | EnumBooleanBody;
3048
+ EnumDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3049
+ EnumDefaultedMember: DeclareExportDeclaration | DeclaredPredicate | EnumStringBody | EnumSymbolBody;
3050
+ EnumNumberBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3051
+ EnumNumberMember: DeclareExportDeclaration | DeclaredPredicate | EnumNumberBody;
3052
+ EnumStringBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3053
+ EnumStringMember: DeclareExportDeclaration | DeclaredPredicate | EnumStringBody;
3054
+ EnumSymbolBody: DeclareExportDeclaration | DeclaredPredicate | EnumDeclaration;
3055
+ 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;
3056
+ ExportAllDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3057
+ ExportDefaultDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3058
+ ExportDefaultSpecifier: ExportNamedDeclaration;
3059
+ ExportNamedDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3060
+ ExportNamespaceSpecifier: DeclareExportDeclaration | ExportNamedDeclaration;
3061
+ ExportSpecifier: DeclareExportDeclaration | ExportNamedDeclaration;
3062
+ ExpressionStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3063
+ File: null;
3064
+ ForInStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3065
+ ForOfStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3066
+ ForStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3067
+ FunctionDeclaration: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3068
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3069
+ 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;
3070
+ FunctionTypeParam: DeclareExportDeclaration | DeclaredPredicate | FunctionTypeAnnotation;
3071
+ 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;
3072
+ 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;
3073
+ IfStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3074
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3075
+ ImportAttribute: ExportAllDeclaration | ExportNamedDeclaration | ImportDeclaration;
3076
+ ImportDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3077
+ ImportDefaultSpecifier: ImportDeclaration;
3078
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3079
+ ImportNamespaceSpecifier: ImportDeclaration;
3080
+ ImportSpecifier: ImportDeclaration;
3081
+ 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;
3082
+ InferredPredicate: ArrowFunctionExpression | DeclareExportDeclaration | DeclaredPredicate | FunctionDeclaration | FunctionExpression;
3083
+ InterfaceDeclaration: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3084
+ InterfaceExtends: ClassDeclaration | ClassExpression | DeclareClass | DeclareExportDeclaration | DeclareInterface | DeclaredPredicate | InterfaceDeclaration | InterfaceTypeAnnotation;
3085
+ 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;
3086
+ InterpreterDirective: Program;
3087
+ 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;
3088
+ JSXAttribute: JSXOpeningElement;
3089
+ JSXClosingElement: JSXElement;
3090
+ JSXClosingFragment: JSXFragment;
3091
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3092
+ JSXEmptyExpression: JSXExpressionContainer;
3093
+ JSXExpressionContainer: JSXAttribute | JSXElement | JSXFragment;
3094
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3095
+ JSXIdentifier: JSXAttribute | JSXClosingElement | JSXMemberExpression | JSXNamespacedName | JSXOpeningElement;
3096
+ JSXMemberExpression: JSXClosingElement | JSXMemberExpression | JSXOpeningElement;
3097
+ JSXNamespacedName: CallExpression | JSXAttribute | JSXClosingElement | JSXOpeningElement | NewExpression | OptionalCallExpression;
3098
+ JSXOpeningElement: JSXElement;
3099
+ JSXOpeningFragment: JSXFragment;
3100
+ JSXSpreadAttribute: JSXOpeningElement;
3101
+ JSXSpreadChild: JSXElement | JSXFragment;
3102
+ JSXText: JSXElement | JSXFragment;
3103
+ LabeledStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3104
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3105
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3106
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3107
+ 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;
3108
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3109
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3110
+ Noop: ArrayPattern | ArrowFunctionExpression | AssignmentPattern | ClassAccessorProperty | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | FunctionDeclaration | FunctionExpression | Identifier | ObjectMethod | ObjectPattern | RestElement | TSDeclareFunction | TSDeclareMethod;
3111
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3112
+ 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;
3113
+ 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;
3114
+ NumberLiteral: null;
3115
+ 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;
3116
+ 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;
3117
+ 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 | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3118
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3119
+ ObjectMethod: ObjectExpression;
3120
+ ObjectPattern: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | CatchClause | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
3121
+ ObjectProperty: ObjectExpression | ObjectPattern | RecordExpression;
3122
+ 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;
3123
+ ObjectTypeCallProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3124
+ ObjectTypeIndexer: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3125
+ ObjectTypeInternalSlot: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3126
+ ObjectTypeProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3127
+ ObjectTypeSpreadProperty: DeclareExportDeclaration | DeclaredPredicate | ObjectTypeAnnotation;
3128
+ OpaqueType: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3129
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3130
+ 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;
3131
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3132
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3133
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3134
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3135
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3136
+ Placeholder: Node;
3137
+ PrivateName: BinaryExpression | ClassAccessorProperty | ClassPrivateMethod | ClassPrivateProperty | MemberExpression | ObjectProperty;
3138
+ Program: File | ModuleExpression;
3139
+ QualifiedTypeIdentifier: DeclareExportDeclaration | DeclaredPredicate | GenericTypeAnnotation | InterfaceExtends | QualifiedTypeIdentifier;
3140
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3141
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3142
+ RegexLiteral: null;
3143
+ RestElement: ArrayPattern | ArrowFunctionExpression | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | FunctionDeclaration | FunctionExpression | ObjectMethod | ObjectPattern | ObjectProperty | RestElement | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSMethodSignature | VariableDeclarator;
3144
+ RestProperty: null;
3145
+ ReturnStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3146
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3147
+ SpreadElement: ArrayExpression | CallExpression | NewExpression | ObjectExpression | OptionalCallExpression | RecordExpression | TupleExpression;
3148
+ SpreadProperty: null;
3149
+ StaticBlock: ClassBody;
3150
+ 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;
3151
+ 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;
3152
+ 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;
3153
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3154
+ SwitchCase: SwitchStatement;
3155
+ SwitchStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3156
+ 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;
3157
+ TSAnyKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3158
+ TSArrayType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3159
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3160
+ TSBigIntKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3161
+ TSBooleanKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3162
+ TSCallSignatureDeclaration: TSInterfaceBody | TSTypeLiteral;
3163
+ TSConditionalType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3164
+ TSConstructSignatureDeclaration: TSInterfaceBody | TSTypeLiteral;
3165
+ TSConstructorType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3166
+ TSDeclareFunction: BlockStatement | DoWhileStatement | ExportDefaultDeclaration | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3167
+ TSDeclareMethod: ClassBody;
3168
+ TSEnumDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3169
+ TSEnumMember: TSEnumDeclaration;
3170
+ TSExportAssignment: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3171
+ TSExpressionWithTypeArguments: ClassDeclaration | ClassExpression | TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSInterfaceDeclaration | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3172
+ TSExternalModuleReference: TSImportEqualsDeclaration;
3173
+ TSFunctionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3174
+ TSImportEqualsDeclaration: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3175
+ TSImportType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSTypeQuery | TSUnionType | TemplateLiteral;
3176
+ TSIndexSignature: ClassBody | TSInterfaceBody | TSTypeLiteral;
3177
+ TSIndexedAccessType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3178
+ TSInferType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3179
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3180
+ TSInterfaceBody: TSInterfaceDeclaration;
3181
+ TSInterfaceDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3182
+ TSIntersectionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3183
+ TSIntrinsicKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3184
+ TSLiteralType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3185
+ TSMappedType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3186
+ TSMethodSignature: TSInterfaceBody | TSTypeLiteral;
3187
+ TSModuleBlock: TSModuleDeclaration;
3188
+ TSModuleDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | TSModuleDeclaration | WhileStatement | WithStatement;
3189
+ TSNamedTupleMember: TSTupleType;
3190
+ TSNamespaceExportDeclaration: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3191
+ TSNeverKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3192
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3193
+ TSNullKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3194
+ TSNumberKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3195
+ TSObjectKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3196
+ TSOptionalType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3197
+ TSParameterProperty: ArrayPattern | AssignmentExpression | ClassMethod | ClassPrivateMethod | ForInStatement | ForOfStatement | RestElement | TSDeclareMethod | VariableDeclarator;
3198
+ TSParenthesizedType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3199
+ TSPropertySignature: TSInterfaceBody | TSTypeLiteral;
3200
+ TSQualifiedName: TSExpressionWithTypeArguments | TSImportEqualsDeclaration | TSImportType | TSQualifiedName | TSTypeQuery | TSTypeReference;
3201
+ TSRestType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3202
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3203
+ TSStringKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3204
+ TSSymbolKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3205
+ TSThisType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSTypePredicate | TSUnionType | TemplateLiteral;
3206
+ TSTupleType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3207
+ TSTypeAliasDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3208
+ 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;
3209
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3210
+ TSTypeLiteral: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3211
+ TSTypeOperator: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3212
+ TSTypeParameter: TSInferType | TSMappedType | TSTypeParameterDeclaration;
3213
+ TSTypeParameterDeclaration: ArrowFunctionExpression | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | FunctionDeclaration | FunctionExpression | ObjectMethod | TSCallSignatureDeclaration | TSConstructSignatureDeclaration | TSConstructorType | TSDeclareFunction | TSDeclareMethod | TSFunctionType | TSInterfaceDeclaration | TSMethodSignature | TSTypeAliasDeclaration;
3214
+ TSTypeParameterInstantiation: CallExpression | ClassDeclaration | ClassExpression | JSXOpeningElement | NewExpression | OptionalCallExpression | TSExpressionWithTypeArguments | TSImportType | TSInstantiationExpression | TSTypeQuery | TSTypeReference | TaggedTemplateExpression;
3215
+ TSTypePredicate: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3216
+ TSTypeQuery: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3217
+ TSTypeReference: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3218
+ TSUndefinedKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3219
+ TSUnionType: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3220
+ TSUnknownKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3221
+ TSVoidKeyword: TSArrayType | TSAsExpression | TSConditionalType | TSIndexedAccessType | TSIntersectionType | TSMappedType | TSNamedTupleMember | TSOptionalType | TSParenthesizedType | TSRestType | TSSatisfiesExpression | TSTupleType | TSTypeAliasDeclaration | TSTypeAnnotation | TSTypeAssertion | TSTypeOperator | TSTypeParameter | TSTypeParameterInstantiation | TSUnionType | TemplateLiteral;
3222
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3223
+ TemplateElement: TemplateLiteral;
3224
+ 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 | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3225
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3226
+ 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;
3227
+ ThrowStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3228
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3229
+ TryStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3230
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3231
+ 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;
3232
+ TypeAlias: BlockStatement | DeclareExportDeclaration | DeclaredPredicate | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3233
+ TypeAnnotation: ArrayPattern | ArrowFunctionExpression | AssignmentPattern | ClassAccessorProperty | ClassMethod | ClassPrivateMethod | ClassPrivateProperty | ClassProperty | DeclareExportDeclaration | DeclareModuleExports | DeclaredPredicate | FunctionDeclaration | FunctionExpression | Identifier | ObjectMethod | ObjectPattern | RestElement | TypeCastExpression | TypeParameter;
3234
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3235
+ TypeParameter: DeclareExportDeclaration | DeclaredPredicate | TypeParameterDeclaration;
3236
+ TypeParameterDeclaration: ArrowFunctionExpression | ClassDeclaration | ClassExpression | ClassMethod | ClassPrivateMethod | DeclareClass | DeclareExportDeclaration | DeclareInterface | DeclareOpaqueType | DeclareTypeAlias | DeclaredPredicate | FunctionDeclaration | FunctionExpression | FunctionTypeAnnotation | InterfaceDeclaration | ObjectMethod | OpaqueType | TypeAlias;
3237
+ TypeParameterInstantiation: CallExpression | ClassDeclaration | ClassExpression | ClassImplements | DeclareExportDeclaration | DeclaredPredicate | GenericTypeAnnotation | InterfaceExtends | JSXOpeningElement | NewExpression | OptionalCallExpression | TaggedTemplateExpression;
3238
+ 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;
3239
+ 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 | TSInstantiationExpression | TSLiteralType | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3240
+ 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;
3241
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3242
+ V8IntrinsicIdentifier: CallExpression | NewExpression;
3243
+ VariableDeclaration: BlockStatement | DoWhileStatement | ExportNamedDeclaration | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3244
+ VariableDeclarator: VariableDeclaration;
3245
+ Variance: ClassAccessorProperty | ClassPrivateProperty | ClassProperty | DeclareExportDeclaration | DeclaredPredicate | ObjectTypeIndexer | ObjectTypeProperty | TypeParameter;
3246
+ 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;
3247
+ WhileStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3248
+ WithStatement: BlockStatement | DoWhileStatement | ForInStatement | ForOfStatement | ForStatement | IfStatement | LabeledStatement | Program | StaticBlock | SwitchCase | TSModuleBlock | WhileStatement | WithStatement;
3249
+ 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 | TSInstantiationExpression | TSMethodSignature | TSNonNullExpression | TSPropertySignature | TSSatisfiesExpression | TSTypeAssertion | TaggedTemplateExpression | TemplateLiteral | ThrowStatement | TupleExpression | TypeCastExpression | UnaryExpression | UpdateExpression | VariableDeclarator | WhileStatement | WithStatement | YieldExpression;
3250
+ }
3251
+
3252
+ declare function deprecationWarning(oldName: string, newName: string, prefix?: string): void;
3253
+
3254
+ declare const react: {
3255
+ isReactComponent: (member: Node) => boolean;
3256
+ isCompatTag: typeof isCompatTag;
3257
+ buildChildren: typeof buildChildren;
3258
+ };
3259
+
3260
+ 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 };