@sprucelabs/spruce-cli 17.1.36 → 17.1.39

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 (704) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/node_modules/@typescript-eslint/parser/LICENSE +22 -0
  3. package/node_modules/@typescript-eslint/parser/README.md +302 -0
  4. package/node_modules/@typescript-eslint/parser/dist/index.d.ts +4 -0
  5. package/node_modules/@typescript-eslint/parser/dist/index.d.ts.map +1 -0
  6. package/node_modules/@typescript-eslint/parser/dist/index.js +13 -0
  7. package/node_modules/@typescript-eslint/parser/dist/index.js.map +1 -0
  8. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts +17 -0
  9. package/node_modules/@typescript-eslint/parser/dist/parser.d.ts.map +1 -0
  10. package/node_modules/@typescript-eslint/parser/dist/parser.js +129 -0
  11. package/node_modules/@typescript-eslint/parser/dist/parser.js.map +1 -0
  12. package/node_modules/@typescript-eslint/parser/package.json +75 -0
  13. package/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  14. package/node_modules/@typescript-eslint/scope-manager/README.md +120 -0
  15. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts +4 -0
  16. package/node_modules/@typescript-eslint/scope-manager/dist/ID.d.ts.map +1 -0
  17. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js +22 -0
  18. package/node_modules/@typescript-eslint/scope-manager/dist/ID.js.map +1 -0
  19. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts +72 -0
  20. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts.map +1 -0
  21. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js +183 -0
  22. package/node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.js.map +1 -0
  23. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts +62 -0
  24. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts.map +1 -0
  25. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js +58 -0
  26. package/node_modules/@typescript-eslint/scope-manager/dist/analyze.js.map +1 -0
  27. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts +3 -0
  28. package/node_modules/@typescript-eslint/scope-manager/dist/assert.d.ts.map +1 -0
  29. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js +11 -0
  30. package/node_modules/@typescript-eslint/scope-manager/dist/assert.js.map +1 -0
  31. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts +10 -0
  32. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts.map +1 -0
  33. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js +14 -0
  34. package/node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.js.map +1 -0
  35. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts +10 -0
  36. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts.map +1 -0
  37. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js +14 -0
  38. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.js.map +1 -0
  39. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts +14 -0
  40. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts.map +1 -0
  41. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js +3 -0
  42. package/node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.js.map +1 -0
  43. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts +39 -0
  44. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts.map +1 -0
  45. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js +19 -0
  46. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.js.map +1 -0
  47. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts +15 -0
  48. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts.map +1 -0
  49. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js +19 -0
  50. package/node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.js.map +1 -0
  51. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts +10 -0
  52. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts.map +1 -0
  53. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js +14 -0
  54. package/node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.js.map +1 -0
  55. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts +10 -0
  56. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts.map +1 -0
  57. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js +14 -0
  58. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.js.map +1 -0
  59. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts +11 -0
  60. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts.map +1 -0
  61. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js +14 -0
  62. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.js.map +1 -0
  63. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts +14 -0
  64. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts.map +1 -0
  65. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js +15 -0
  66. package/node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.js.map +1 -0
  67. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts +10 -0
  68. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts.map +1 -0
  69. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js +14 -0
  70. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.js.map +1 -0
  71. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts +10 -0
  72. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts.map +1 -0
  73. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js +14 -0
  74. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.js.map +1 -0
  75. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts +10 -0
  76. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts.map +1 -0
  77. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js +14 -0
  78. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.js.map +1 -0
  79. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts +10 -0
  80. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts.map +1 -0
  81. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js +14 -0
  82. package/node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.js.map +1 -0
  83. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts +10 -0
  84. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts.map +1 -0
  85. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js +14 -0
  86. package/node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.js.map +1 -0
  87. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts +14 -0
  88. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts.map +1 -0
  89. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js +30 -0
  90. package/node_modules/@typescript-eslint/scope-manager/dist/definition/index.js.map +1 -0
  91. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts +9 -0
  92. package/node_modules/@typescript-eslint/scope-manager/dist/index.d.ts.map +1 -0
  93. package/node_modules/@typescript-eslint/scope-manager/dist/index.js +31 -0
  94. package/node_modules/@typescript-eslint/scope-manager/dist/index.js.map +1 -0
  95. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts +16 -0
  96. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.d.ts.map +1 -0
  97. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js +23 -0
  98. package/node_modules/@typescript-eslint/scope-manager/dist/lib/base-config.js.map +1 -0
  99. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts +3 -0
  100. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.d.ts.map +1 -0
  101. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts +3 -0
  102. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.d.ts.map +1 -0
  103. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js +66 -0
  104. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.iterable.js.map +1 -0
  105. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js +1283 -0
  106. package/node_modules/@typescript-eslint/scope-manager/dist/lib/dom.js.map +1 -0
  107. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts +3 -0
  108. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.d.ts.map +1 -0
  109. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js +21 -0
  110. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.collection.js.map +1 -0
  111. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts +3 -0
  112. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.d.ts.map +1 -0
  113. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js +23 -0
  114. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.core.js.map +1 -0
  115. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts +3 -0
  116. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.d.ts.map +1 -0
  117. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts +3 -0
  118. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.d.ts.map +1 -0
  119. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js +11 -0
  120. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.generator.js.map +1 -0
  121. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts +3 -0
  122. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.d.ts.map +1 -0
  123. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js +11 -0
  124. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.iterable.js.map +1 -0
  125. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js +19 -0
  126. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.js.map +1 -0
  127. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts +3 -0
  128. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.d.ts.map +1 -0
  129. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js +12 -0
  130. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.promise.js.map +1 -0
  131. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts +3 -0
  132. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.d.ts.map +1 -0
  133. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js +13 -0
  134. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.proxy.js.map +1 -0
  135. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts +3 -0
  136. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.d.ts.map +1 -0
  137. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js +12 -0
  138. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.reflect.js.map +1 -0
  139. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts +3 -0
  140. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.d.ts.map +1 -0
  141. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js +12 -0
  142. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.js.map +1 -0
  143. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts +3 -0
  144. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.d.ts.map +1 -0
  145. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js +11 -0
  146. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2015.symbol.wellknown.js.map +1 -0
  147. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts +3 -0
  148. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.d.ts.map +1 -0
  149. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js +22 -0
  150. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.array.include.js.map +1 -0
  151. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts +3 -0
  152. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.d.ts.map +1 -0
  153. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts +3 -0
  154. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.d.ts.map +1 -0
  155. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js +14 -0
  156. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.full.js.map +1 -0
  157. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js +11 -0
  158. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2016.js.map +1 -0
  159. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts +3 -0
  160. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.d.ts.map +1 -0
  161. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts +3 -0
  162. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.d.ts.map +1 -0
  163. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js +14 -0
  164. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.full.js.map +1 -0
  165. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts +3 -0
  166. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.d.ts.map +1 -0
  167. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js +12 -0
  168. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.intl.js.map +1 -0
  169. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js +15 -0
  170. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.js.map +1 -0
  171. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts +3 -0
  172. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.d.ts.map +1 -0
  173. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js +12 -0
  174. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.object.js.map +1 -0
  175. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts +3 -0
  176. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.d.ts.map +1 -0
  177. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js +12 -0
  178. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.sharedmemory.js.map +1 -0
  179. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts +3 -0
  180. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.d.ts.map +1 -0
  181. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js +12 -0
  182. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.string.js.map +1 -0
  183. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts +3 -0
  184. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.d.ts.map +1 -0
  185. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js +20 -0
  186. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2017.typedarrays.js.map +1 -0
  187. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts +3 -0
  188. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.d.ts.map +1 -0
  189. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js +11 -0
  190. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asyncgenerator.js.map +1 -0
  191. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts +3 -0
  192. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.d.ts.map +1 -0
  193. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js +12 -0
  194. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.asynciterable.js.map +1 -0
  195. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts +3 -0
  196. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.d.ts.map +1 -0
  197. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts +3 -0
  198. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.d.ts.map +1 -0
  199. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js +14 -0
  200. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.full.js.map +1 -0
  201. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts +3 -0
  202. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.d.ts.map +1 -0
  203. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js +12 -0
  204. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.intl.js.map +1 -0
  205. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js +15 -0
  206. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.js.map +1 -0
  207. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts +3 -0
  208. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.d.ts.map +1 -0
  209. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js +12 -0
  210. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.promise.js.map +1 -0
  211. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts +3 -0
  212. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.d.ts.map +1 -0
  213. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js +14 -0
  214. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2018.regexp.js.map +1 -0
  215. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts +3 -0
  216. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.d.ts.map +1 -0
  217. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js +14 -0
  218. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.array.js.map +1 -0
  219. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts +3 -0
  220. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.d.ts.map +1 -0
  221. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts +3 -0
  222. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.d.ts.map +1 -0
  223. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js +14 -0
  224. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.full.js.map +1 -0
  225. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js +14 -0
  226. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.js.map +1 -0
  227. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts +3 -0
  228. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.d.ts.map +1 -0
  229. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js +11 -0
  230. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.object.js.map +1 -0
  231. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts +3 -0
  232. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.d.ts.map +1 -0
  233. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js +12 -0
  234. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.string.js.map +1 -0
  235. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts +3 -0
  236. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.d.ts.map +1 -0
  237. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js +12 -0
  238. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2019.symbol.js.map +1 -0
  239. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts +3 -0
  240. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.d.ts.map +1 -0
  241. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js +11 -0
  242. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.bigint.js.map +1 -0
  243. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts +3 -0
  244. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.d.ts.map +1 -0
  245. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts +3 -0
  246. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.d.ts.map +1 -0
  247. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js +11 -0
  248. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.date.js.map +1 -0
  249. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts +3 -0
  250. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.d.ts.map +1 -0
  251. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js +14 -0
  252. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.full.js.map +1 -0
  253. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts +3 -0
  254. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.d.ts.map +1 -0
  255. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js +11 -0
  256. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.intl.js.map +1 -0
  257. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js +18 -0
  258. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.js.map +1 -0
  259. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts +3 -0
  260. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.d.ts.map +1 -0
  261. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js +11 -0
  262. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.number.js.map +1 -0
  263. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts +3 -0
  264. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.d.ts.map +1 -0
  265. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js +15 -0
  266. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.promise.js.map +1 -0
  267. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts +3 -0
  268. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.d.ts.map +1 -0
  269. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js +12 -0
  270. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.sharedmemory.js.map +1 -0
  271. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts +3 -0
  272. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.d.ts.map +1 -0
  273. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js +11 -0
  274. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.string.js.map +1 -0
  275. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts +3 -0
  276. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.d.ts.map +1 -0
  277. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js +12 -0
  278. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2020.symbol.wellknown.js.map +1 -0
  279. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts +3 -0
  280. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.d.ts.map +1 -0
  281. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts +3 -0
  282. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.d.ts.map +1 -0
  283. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js +14 -0
  284. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.full.js.map +1 -0
  285. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts +3 -0
  286. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.d.ts.map +1 -0
  287. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js +12 -0
  288. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.intl.js.map +1 -0
  289. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js +14 -0
  290. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.js.map +1 -0
  291. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts +3 -0
  292. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.d.ts.map +1 -0
  293. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js +14 -0
  294. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.promise.js.map +1 -0
  295. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts +3 -0
  296. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.d.ts.map +1 -0
  297. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js +12 -0
  298. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.string.js.map +1 -0
  299. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts +3 -0
  300. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.d.ts.map +1 -0
  301. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js +15 -0
  302. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2021.weakref.js.map +1 -0
  303. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts +3 -0
  304. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.d.ts.map +1 -0
  305. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js +24 -0
  306. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.array.js.map +1 -0
  307. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts +3 -0
  308. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.d.ts.map +1 -0
  309. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts +3 -0
  310. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.d.ts.map +1 -0
  311. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js +21 -0
  312. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.error.js.map +1 -0
  313. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts +3 -0
  314. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.d.ts.map +1 -0
  315. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js +14 -0
  316. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.full.js.map +1 -0
  317. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts +3 -0
  318. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.d.ts.map +1 -0
  319. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js +12 -0
  320. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.intl.js.map +1 -0
  321. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js +16 -0
  322. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.js.map +1 -0
  323. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts +3 -0
  324. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.d.ts.map +1 -0
  325. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js +12 -0
  326. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.object.js.map +1 -0
  327. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts +3 -0
  328. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.d.ts.map +1 -0
  329. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js +12 -0
  330. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.sharedmemory.js.map +1 -0
  331. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts +3 -0
  332. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.d.ts.map +1 -0
  333. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js +12 -0
  334. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es2022.string.js.map +1 -0
  335. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts +3 -0
  336. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.d.ts.map +1 -0
  337. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js +114 -0
  338. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es5.js.map +1 -0
  339. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts +3 -0
  340. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.d.ts.map +1 -0
  341. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js +19 -0
  342. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es6.js.map +1 -0
  343. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts +3 -0
  344. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.d.ts.map +1 -0
  345. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js +11 -0
  346. package/node_modules/@typescript-eslint/scope-manager/dist/lib/es7.js.map +1 -0
  347. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts +3 -0
  348. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.d.ts.map +1 -0
  349. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js +24 -0
  350. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.array.js.map +1 -0
  351. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts +3 -0
  352. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.d.ts.map +1 -0
  353. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js +12 -0
  354. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.asynciterable.js.map +1 -0
  355. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts +3 -0
  356. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.d.ts.map +1 -0
  357. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js +11 -0
  358. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.bigint.js.map +1 -0
  359. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts +3 -0
  360. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.d.ts.map +1 -0
  361. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts +3 -0
  362. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.d.ts.map +1 -0
  363. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js +14 -0
  364. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.full.js.map +1 -0
  365. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts +3 -0
  366. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.d.ts.map +1 -0
  367. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js +12 -0
  368. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.intl.js.map +1 -0
  369. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js +11 -0
  370. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.js.map +1 -0
  371. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts +3 -0
  372. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.d.ts.map +1 -0
  373. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js +14 -0
  374. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.promise.js.map +1 -0
  375. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts +3 -0
  376. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.d.ts.map +1 -0
  377. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js +12 -0
  378. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.string.js.map +1 -0
  379. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts +3 -0
  380. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.d.ts.map +1 -0
  381. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js +12 -0
  382. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.symbol.js.map +1 -0
  383. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts +3 -0
  384. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.d.ts.map +1 -0
  385. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js +15 -0
  386. package/node_modules/@typescript-eslint/scope-manager/dist/lib/esnext.weakref.js.map +1 -0
  387. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts +81 -0
  388. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.d.ts.map +1 -0
  389. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js +165 -0
  390. package/node_modules/@typescript-eslint/scope-manager/dist/lib/index.js.map +1 -0
  391. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts +3 -0
  392. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.d.ts.map +1 -0
  393. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js +13 -0
  394. package/node_modules/@typescript-eslint/scope-manager/dist/lib/lib.js.map +1 -0
  395. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts +3 -0
  396. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.d.ts.map +1 -0
  397. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js +24 -0
  398. package/node_modules/@typescript-eslint/scope-manager/dist/lib/scripthost.js.map +1 -0
  399. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts +3 -0
  400. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.d.ts.map +1 -0
  401. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts +3 -0
  402. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.d.ts.map +1 -0
  403. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js +9 -0
  404. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.importscripts.js.map +1 -0
  405. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts +3 -0
  406. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.d.ts.map +1 -0
  407. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js +28 -0
  408. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.iterable.js.map +1 -0
  409. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js +453 -0
  410. package/node_modules/@typescript-eslint/scope-manager/dist/lib/webworker.js.map +1 -0
  411. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts +27 -0
  412. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.d.ts.map +1 -0
  413. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js +321 -0
  414. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ClassVisitor.js.map +1 -0
  415. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts +15 -0
  416. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.d.ts.map +1 -0
  417. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js +84 -0
  418. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ExportVisitor.js.map +1 -0
  419. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts +14 -0
  420. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.d.ts.map +1 -0
  421. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js +50 -0
  422. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/ImportVisitor.js.map +1 -0
  423. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts +28 -0
  424. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts.map +1 -0
  425. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js +111 -0
  426. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.js.map +1 -0
  427. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts +89 -0
  428. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts.map +1 -0
  429. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js +109 -0
  430. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.js.map +1 -0
  431. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts +84 -0
  432. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts.map +1 -0
  433. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js +544 -0
  434. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.js.map +1 -0
  435. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts +33 -0
  436. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.d.ts.map +1 -0
  437. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js +228 -0
  438. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/TypeVisitor.js.map +1 -0
  439. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts +13 -0
  440. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts.map +1 -0
  441. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js +41 -0
  442. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.js.map +1 -0
  443. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts +22 -0
  444. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts.map +1 -0
  445. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js +82 -0
  446. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.js.map +1 -0
  447. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts +2 -0
  448. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts.map +1 -0
  449. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js +6 -0
  450. package/node_modules/@typescript-eslint/scope-manager/dist/referencer/index.js.map +1 -0
  451. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts +10 -0
  452. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts.map +1 -0
  453. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js +12 -0
  454. package/node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.js.map +1 -0
  455. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts +10 -0
  456. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts.map +1 -0
  457. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js +12 -0
  458. package/node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.js.map +1 -0
  459. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts +10 -0
  460. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts.map +1 -0
  461. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js +12 -0
  462. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.js.map +1 -0
  463. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts +10 -0
  464. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts.map +1 -0
  465. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js +12 -0
  466. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.js.map +1 -0
  467. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts +10 -0
  468. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts.map +1 -0
  469. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js +12 -0
  470. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.js.map +1 -0
  471. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts +10 -0
  472. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts.map +1 -0
  473. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js +12 -0
  474. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.js.map +1 -0
  475. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts +10 -0
  476. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts.map +1 -0
  477. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js +12 -0
  478. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.js.map +1 -0
  479. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts +11 -0
  480. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts.map +1 -0
  481. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js +17 -0
  482. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.js.map +1 -0
  483. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts +13 -0
  484. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts.map +1 -0
  485. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js +37 -0
  486. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.js.map +1 -0
  487. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts +10 -0
  488. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts.map +1 -0
  489. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js +12 -0
  490. package/node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.js.map +1 -0
  491. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts +18 -0
  492. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts.map +1 -0
  493. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js +39 -0
  494. package/node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.js.map +1 -0
  495. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts +10 -0
  496. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts.map +1 -0
  497. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js +12 -0
  498. package/node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.js.map +1 -0
  499. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts +10 -0
  500. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts.map +1 -0
  501. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js +12 -0
  502. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.js.map +1 -0
  503. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts +21 -0
  504. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts.map +1 -0
  505. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js +3 -0
  506. package/node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.js.map +1 -0
  507. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts +106 -0
  508. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts.map +1 -0
  509. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js +363 -0
  510. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.js.map +1 -0
  511. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts +22 -0
  512. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts.map +1 -0
  513. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js +26 -0
  514. package/node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.js.map +1 -0
  515. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts +10 -0
  516. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts.map +1 -0
  517. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js +12 -0
  518. package/node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.js.map +1 -0
  519. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts +10 -0
  520. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts.map +1 -0
  521. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js +12 -0
  522. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.js.map +1 -0
  523. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts +10 -0
  524. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts.map +1 -0
  525. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js +12 -0
  526. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.js.map +1 -0
  527. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts +10 -0
  528. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts.map +1 -0
  529. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js +12 -0
  530. package/node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.js.map +1 -0
  531. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts +11 -0
  532. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts.map +1 -0
  533. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js +22 -0
  534. package/node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.js.map +1 -0
  535. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts +20 -0
  536. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts.map +1 -0
  537. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js +36 -0
  538. package/node_modules/@typescript-eslint/scope-manager/dist/scope/index.js.map +1 -0
  539. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts +34 -0
  540. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts.map +1 -0
  541. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js +12 -0
  542. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.js.map +1 -0
  543. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts +25 -0
  544. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts.map +1 -0
  545. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js +19 -0
  546. package/node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.js.map +1 -0
  547. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts +18 -0
  548. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts.map +1 -0
  549. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js +33 -0
  550. package/node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.js.map +1 -0
  551. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts +44 -0
  552. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts.map +1 -0
  553. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js +39 -0
  554. package/node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.js.map +1 -0
  555. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts +4 -0
  556. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts.map +1 -0
  557. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js +10 -0
  558. package/node_modules/@typescript-eslint/scope-manager/dist/variable/index.js.map +1 -0
  559. package/node_modules/@typescript-eslint/scope-manager/package.json +67 -0
  560. package/node_modules/@typescript-eslint/types/LICENSE +21 -0
  561. package/node_modules/@typescript-eslint/types/README.md +17 -0
  562. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts +1729 -0
  563. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts.map +1 -0
  564. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js +199 -0
  565. package/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js.map +1 -0
  566. package/node_modules/@typescript-eslint/types/dist/index.d.ts +5 -0
  567. package/node_modules/@typescript-eslint/types/dist/index.d.ts.map +1 -0
  568. package/node_modules/@typescript-eslint/types/dist/index.js +24 -0
  569. package/node_modules/@typescript-eslint/types/dist/index.js.map +1 -0
  570. package/node_modules/@typescript-eslint/types/dist/lib.d.ts +3 -0
  571. package/node_modules/@typescript-eslint/types/dist/lib.d.ts.map +1 -0
  572. package/node_modules/@typescript-eslint/types/dist/lib.js +7 -0
  573. package/node_modules/@typescript-eslint/types/dist/lib.js.map +1 -0
  574. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts +36 -0
  575. package/node_modules/@typescript-eslint/types/dist/parser-options.d.ts.map +1 -0
  576. package/node_modules/@typescript-eslint/types/dist/parser-options.js +3 -0
  577. package/node_modules/@typescript-eslint/types/dist/parser-options.js.map +1 -0
  578. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts +8 -0
  579. package/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts.map +1 -0
  580. package/node_modules/@typescript-eslint/types/dist/ts-estree.js +28 -0
  581. package/node_modules/@typescript-eslint/types/dist/ts-estree.js.map +1 -0
  582. package/node_modules/@typescript-eslint/types/package.json +84 -0
  583. package/node_modules/@typescript-eslint/typescript-estree/LICENSE +26 -0
  584. package/node_modules/@typescript-eslint/typescript-estree/README.md +383 -0
  585. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts +9 -0
  586. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.d.ts.map +1 -0
  587. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js +60 -0
  588. package/node_modules/@typescript-eslint/typescript-estree/dist/ast-converter.js.map +1 -0
  589. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts +11 -0
  590. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.d.ts.map +1 -0
  591. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js +63 -0
  592. package/node_modules/@typescript-eslint/typescript-estree/dist/convert-comments.js.map +1 -0
  593. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts +159 -0
  594. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.d.ts.map +1 -0
  595. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js +2358 -0
  596. package/node_modules/@typescript-eslint/typescript-estree/dist/convert.js.map +1 -0
  597. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts +13 -0
  598. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.d.ts.map +1 -0
  599. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js +6 -0
  600. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/WatchCompilerHostOfConfigFile.js.map +1 -0
  601. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts +12 -0
  602. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.d.ts.map +1 -0
  603. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js +66 -0
  604. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createDefaultProgram.js.map +1 -0
  605. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts +9 -0
  606. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.d.ts.map +1 -0
  607. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js +83 -0
  608. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createIsolatedProgram.js.map +1 -0
  609. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts +11 -0
  610. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.d.ts.map +1 -0
  611. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js +94 -0
  612. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createProjectProgram.js.map +1 -0
  613. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts +5 -0
  614. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.d.ts.map +1 -0
  615. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js +40 -0
  616. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createSourceFile.js.map +1 -0
  617. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts +19 -0
  618. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.d.ts.map +1 -0
  619. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js +414 -0
  620. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/createWatchProgram.js.map +1 -0
  621. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts +5 -0
  622. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.d.ts.map +1 -0
  623. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js +72 -0
  624. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/getScriptKind.js.map +1 -0
  625. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts +22 -0
  626. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.d.ts.map +1 -0
  627. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js +116 -0
  628. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/shared.js.map +1 -0
  629. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts +13 -0
  630. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.d.ts.map +1 -0
  631. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js +93 -0
  632. package/node_modules/@typescript-eslint/typescript-estree/dist/create-program/useProvidedPrograms.js.map +1 -0
  633. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts +4 -0
  634. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.d.ts.map +1 -0
  635. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js +68 -0
  636. package/node_modules/@typescript-eslint/typescript-estree/dist/getModifiers.js.map +1 -0
  637. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts +12 -0
  638. package/node_modules/@typescript-eslint/typescript-estree/dist/index.d.ts.map +1 -0
  639. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js +40 -0
  640. package/node_modules/@typescript-eslint/typescript-estree/dist/index.js.map +1 -0
  641. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts +2 -0
  642. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.d.ts.map +1 -0
  643. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js +259 -0
  644. package/node_modules/@typescript-eslint/typescript-estree/dist/jsx/xhtml-entities.js.map +1 -0
  645. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts +227 -0
  646. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.d.ts.map +1 -0
  647. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js +584 -0
  648. package/node_modules/@typescript-eslint/typescript-estree/dist/node-utils.js.map +1 -0
  649. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts +188 -0
  650. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.d.ts.map +1 -0
  651. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js +3 -0
  652. package/node_modules/@typescript-eslint/typescript-estree/dist/parser-options.js.map +1 -0
  653. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts +25 -0
  654. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.d.ts.map +1 -0
  655. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js +529 -0
  656. package/node_modules/@typescript-eslint/typescript-estree/dist/parser.js.map +1 -0
  657. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts +13 -0
  658. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.d.ts.map +1 -0
  659. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js +93 -0
  660. package/node_modules/@typescript-eslint/typescript-estree/dist/semantic-or-syntactic-errors.js.map +1 -0
  661. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts +9 -0
  662. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.d.ts.map +1 -0
  663. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js +54 -0
  664. package/node_modules/@typescript-eslint/typescript-estree/dist/simple-traverse.js.map +1 -0
  665. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts +175 -0
  666. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.d.ts.map +1 -0
  667. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js +4 -0
  668. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/estree-to-ts-node-types.js.map +1 -0
  669. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts +4 -0
  670. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.d.ts.map +1 -0
  671. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js +25 -0
  672. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/index.js.map +1 -0
  673. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts +18 -0
  674. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.d.ts.map +1 -0
  675. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js +3 -0
  676. package/node_modules/@typescript-eslint/typescript-estree/dist/ts-estree/ts-nodes.js.map +1 -0
  677. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts +3 -0
  678. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.d.ts.map +1 -0
  679. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js +53 -0
  680. package/node_modules/@typescript-eslint/typescript-estree/dist/version-check.js.map +1 -0
  681. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/gitignore.js +120 -0
  682. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.d.ts +186 -0
  683. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/index.js +181 -0
  684. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/license +9 -0
  685. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/package.json +82 -0
  686. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/readme.md +170 -0
  687. package/node_modules/@typescript-eslint/typescript-estree/node_modules/globby/stream-utils.js +46 -0
  688. package/node_modules/@typescript-eslint/typescript-estree/package.json +86 -0
  689. package/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  690. package/node_modules/@typescript-eslint/visitor-keys/README.md +13 -0
  691. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts +4 -0
  692. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts.map +1 -0
  693. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js +7 -0
  694. package/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.js.map +1 -0
  695. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts +3 -0
  696. package/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts.map +1 -0
  697. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js +8 -0
  698. package/node_modules/@typescript-eslint/visitor-keys/dist/index.js.map +1 -0
  699. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts +6 -0
  700. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts.map +1 -0
  701. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js +160 -0
  702. package/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.js.map +1 -0
  703. package/node_modules/@typescript-eslint/visitor-keys/package.json +60 -0
  704. package/package.json +37 -37
@@ -0,0 +1,1283 @@
1
+ "use strict";
2
+ // THIS CODE WAS AUTOMATICALLY GENERATED
3
+ // DO NOT EDIT THIS CODE BY HAND
4
+ // RUN THE FOLLOWING COMMAND FROM THE WORKSPACE ROOT TO REGENERATE:
5
+ // npx nx generate-lib @typescript-eslint/scope-manager
6
+ Object.defineProperty(exports, "__esModule", { value: true });
7
+ exports.dom = void 0;
8
+ const base_config_1 = require("./base-config");
9
+ exports.dom = {
10
+ AddEventListenerOptions: base_config_1.TYPE,
11
+ AesCbcParams: base_config_1.TYPE,
12
+ AesCtrParams: base_config_1.TYPE,
13
+ AesDerivedKeyParams: base_config_1.TYPE,
14
+ AesGcmParams: base_config_1.TYPE,
15
+ AesKeyAlgorithm: base_config_1.TYPE,
16
+ AesKeyGenParams: base_config_1.TYPE,
17
+ Algorithm: base_config_1.TYPE,
18
+ AnalyserOptions: base_config_1.TYPE,
19
+ AnimationEventInit: base_config_1.TYPE,
20
+ AnimationPlaybackEventInit: base_config_1.TYPE,
21
+ AssignedNodesOptions: base_config_1.TYPE,
22
+ AudioBufferOptions: base_config_1.TYPE,
23
+ AudioBufferSourceOptions: base_config_1.TYPE,
24
+ AudioConfiguration: base_config_1.TYPE,
25
+ AudioContextOptions: base_config_1.TYPE,
26
+ AudioNodeOptions: base_config_1.TYPE,
27
+ AudioProcessingEventInit: base_config_1.TYPE,
28
+ AudioTimestamp: base_config_1.TYPE,
29
+ AudioWorkletNodeOptions: base_config_1.TYPE,
30
+ AuthenticationExtensionsClientInputs: base_config_1.TYPE,
31
+ AuthenticationExtensionsClientOutputs: base_config_1.TYPE,
32
+ AuthenticatorSelectionCriteria: base_config_1.TYPE,
33
+ BiquadFilterOptions: base_config_1.TYPE,
34
+ BlobEventInit: base_config_1.TYPE,
35
+ BlobPropertyBag: base_config_1.TYPE,
36
+ CSSStyleSheetInit: base_config_1.TYPE,
37
+ CacheQueryOptions: base_config_1.TYPE,
38
+ CanvasRenderingContext2DSettings: base_config_1.TYPE,
39
+ ChannelMergerOptions: base_config_1.TYPE,
40
+ ChannelSplitterOptions: base_config_1.TYPE,
41
+ ClientQueryOptions: base_config_1.TYPE,
42
+ ClipboardEventInit: base_config_1.TYPE,
43
+ ClipboardItemOptions: base_config_1.TYPE,
44
+ CloseEventInit: base_config_1.TYPE,
45
+ CompositionEventInit: base_config_1.TYPE,
46
+ ComputedEffectTiming: base_config_1.TYPE,
47
+ ComputedKeyframe: base_config_1.TYPE,
48
+ ConstantSourceOptions: base_config_1.TYPE,
49
+ ConstrainBooleanParameters: base_config_1.TYPE,
50
+ ConstrainDOMStringParameters: base_config_1.TYPE,
51
+ ConstrainDoubleRange: base_config_1.TYPE,
52
+ ConstrainULongRange: base_config_1.TYPE,
53
+ ConvolverOptions: base_config_1.TYPE,
54
+ CredentialCreationOptions: base_config_1.TYPE,
55
+ CredentialPropertiesOutput: base_config_1.TYPE,
56
+ CredentialRequestOptions: base_config_1.TYPE,
57
+ CryptoKeyPair: base_config_1.TYPE,
58
+ CustomEventInit: base_config_1.TYPE,
59
+ DOMMatrix2DInit: base_config_1.TYPE,
60
+ DOMMatrixInit: base_config_1.TYPE,
61
+ DOMPointInit: base_config_1.TYPE,
62
+ DOMQuadInit: base_config_1.TYPE,
63
+ DOMRectInit: base_config_1.TYPE,
64
+ DelayOptions: base_config_1.TYPE,
65
+ DeviceMotionEventAccelerationInit: base_config_1.TYPE,
66
+ DeviceMotionEventInit: base_config_1.TYPE,
67
+ DeviceMotionEventRotationRateInit: base_config_1.TYPE,
68
+ DeviceOrientationEventInit: base_config_1.TYPE,
69
+ DisplayMediaStreamConstraints: base_config_1.TYPE,
70
+ DocumentTimelineOptions: base_config_1.TYPE,
71
+ DoubleRange: base_config_1.TYPE,
72
+ DragEventInit: base_config_1.TYPE,
73
+ DynamicsCompressorOptions: base_config_1.TYPE,
74
+ EcKeyAlgorithm: base_config_1.TYPE,
75
+ EcKeyGenParams: base_config_1.TYPE,
76
+ EcKeyImportParams: base_config_1.TYPE,
77
+ EcdhKeyDeriveParams: base_config_1.TYPE,
78
+ EcdsaParams: base_config_1.TYPE,
79
+ EffectTiming: base_config_1.TYPE,
80
+ ElementCreationOptions: base_config_1.TYPE,
81
+ ElementDefinitionOptions: base_config_1.TYPE,
82
+ ErrorEventInit: base_config_1.TYPE,
83
+ EventInit: base_config_1.TYPE,
84
+ EventListenerOptions: base_config_1.TYPE,
85
+ EventModifierInit: base_config_1.TYPE,
86
+ EventSourceInit: base_config_1.TYPE,
87
+ FilePropertyBag: base_config_1.TYPE,
88
+ FileSystemFlags: base_config_1.TYPE,
89
+ FileSystemGetDirectoryOptions: base_config_1.TYPE,
90
+ FileSystemGetFileOptions: base_config_1.TYPE,
91
+ FileSystemRemoveOptions: base_config_1.TYPE,
92
+ FocusEventInit: base_config_1.TYPE,
93
+ FocusOptions: base_config_1.TYPE,
94
+ FontFaceDescriptors: base_config_1.TYPE,
95
+ FontFaceSetLoadEventInit: base_config_1.TYPE,
96
+ FormDataEventInit: base_config_1.TYPE,
97
+ FullscreenOptions: base_config_1.TYPE,
98
+ GainOptions: base_config_1.TYPE,
99
+ GamepadEventInit: base_config_1.TYPE,
100
+ GetAnimationsOptions: base_config_1.TYPE,
101
+ GetNotificationOptions: base_config_1.TYPE,
102
+ GetRootNodeOptions: base_config_1.TYPE,
103
+ HashChangeEventInit: base_config_1.TYPE,
104
+ HkdfParams: base_config_1.TYPE,
105
+ HmacImportParams: base_config_1.TYPE,
106
+ HmacKeyAlgorithm: base_config_1.TYPE,
107
+ HmacKeyGenParams: base_config_1.TYPE,
108
+ IDBDatabaseInfo: base_config_1.TYPE,
109
+ IDBIndexParameters: base_config_1.TYPE,
110
+ IDBObjectStoreParameters: base_config_1.TYPE,
111
+ IDBTransactionOptions: base_config_1.TYPE,
112
+ IDBVersionChangeEventInit: base_config_1.TYPE,
113
+ IIRFilterOptions: base_config_1.TYPE,
114
+ IdleRequestOptions: base_config_1.TYPE,
115
+ ImageBitmapOptions: base_config_1.TYPE,
116
+ ImageBitmapRenderingContextSettings: base_config_1.TYPE,
117
+ ImageDataSettings: base_config_1.TYPE,
118
+ ImportMeta: base_config_1.TYPE,
119
+ InputEventInit: base_config_1.TYPE,
120
+ IntersectionObserverEntryInit: base_config_1.TYPE,
121
+ IntersectionObserverInit: base_config_1.TYPE,
122
+ JsonWebKey: base_config_1.TYPE,
123
+ KeyAlgorithm: base_config_1.TYPE,
124
+ KeyboardEventInit: base_config_1.TYPE,
125
+ Keyframe: base_config_1.TYPE,
126
+ KeyframeAnimationOptions: base_config_1.TYPE,
127
+ KeyframeEffectOptions: base_config_1.TYPE,
128
+ LockInfo: base_config_1.TYPE,
129
+ LockManagerSnapshot: base_config_1.TYPE,
130
+ LockOptions: base_config_1.TYPE,
131
+ MediaCapabilitiesDecodingInfo: base_config_1.TYPE,
132
+ MediaCapabilitiesEncodingInfo: base_config_1.TYPE,
133
+ MediaCapabilitiesInfo: base_config_1.TYPE,
134
+ MediaConfiguration: base_config_1.TYPE,
135
+ MediaDecodingConfiguration: base_config_1.TYPE,
136
+ MediaElementAudioSourceOptions: base_config_1.TYPE,
137
+ MediaEncodingConfiguration: base_config_1.TYPE,
138
+ MediaEncryptedEventInit: base_config_1.TYPE,
139
+ MediaImage: base_config_1.TYPE,
140
+ MediaKeyMessageEventInit: base_config_1.TYPE,
141
+ MediaKeySystemConfiguration: base_config_1.TYPE,
142
+ MediaKeySystemMediaCapability: base_config_1.TYPE,
143
+ MediaMetadataInit: base_config_1.TYPE,
144
+ MediaPositionState: base_config_1.TYPE,
145
+ MediaQueryListEventInit: base_config_1.TYPE,
146
+ MediaRecorderErrorEventInit: base_config_1.TYPE,
147
+ MediaRecorderOptions: base_config_1.TYPE,
148
+ MediaSessionActionDetails: base_config_1.TYPE,
149
+ MediaStreamAudioSourceOptions: base_config_1.TYPE,
150
+ MediaStreamConstraints: base_config_1.TYPE,
151
+ MediaStreamTrackEventInit: base_config_1.TYPE,
152
+ MediaTrackCapabilities: base_config_1.TYPE,
153
+ MediaTrackConstraintSet: base_config_1.TYPE,
154
+ MediaTrackConstraints: base_config_1.TYPE,
155
+ MediaTrackSettings: base_config_1.TYPE,
156
+ MediaTrackSupportedConstraints: base_config_1.TYPE,
157
+ MessageEventInit: base_config_1.TYPE,
158
+ MouseEventInit: base_config_1.TYPE,
159
+ MultiCacheQueryOptions: base_config_1.TYPE,
160
+ MutationObserverInit: base_config_1.TYPE,
161
+ NavigationPreloadState: base_config_1.TYPE,
162
+ NotificationAction: base_config_1.TYPE,
163
+ NotificationOptions: base_config_1.TYPE,
164
+ OfflineAudioCompletionEventInit: base_config_1.TYPE,
165
+ OfflineAudioContextOptions: base_config_1.TYPE,
166
+ OptionalEffectTiming: base_config_1.TYPE,
167
+ OscillatorOptions: base_config_1.TYPE,
168
+ PageTransitionEventInit: base_config_1.TYPE,
169
+ PannerOptions: base_config_1.TYPE,
170
+ PaymentCurrencyAmount: base_config_1.TYPE,
171
+ PaymentDetailsBase: base_config_1.TYPE,
172
+ PaymentDetailsInit: base_config_1.TYPE,
173
+ PaymentDetailsModifier: base_config_1.TYPE,
174
+ PaymentDetailsUpdate: base_config_1.TYPE,
175
+ PaymentItem: base_config_1.TYPE,
176
+ PaymentMethodChangeEventInit: base_config_1.TYPE,
177
+ PaymentMethodData: base_config_1.TYPE,
178
+ PaymentRequestUpdateEventInit: base_config_1.TYPE,
179
+ PaymentValidationErrors: base_config_1.TYPE,
180
+ Pbkdf2Params: base_config_1.TYPE,
181
+ PerformanceMarkOptions: base_config_1.TYPE,
182
+ PerformanceMeasureOptions: base_config_1.TYPE,
183
+ PerformanceObserverInit: base_config_1.TYPE,
184
+ PeriodicWaveConstraints: base_config_1.TYPE,
185
+ PeriodicWaveOptions: base_config_1.TYPE,
186
+ PermissionDescriptor: base_config_1.TYPE,
187
+ PointerEventInit: base_config_1.TYPE,
188
+ PopStateEventInit: base_config_1.TYPE,
189
+ PositionOptions: base_config_1.TYPE,
190
+ ProgressEventInit: base_config_1.TYPE,
191
+ PromiseRejectionEventInit: base_config_1.TYPE,
192
+ PropertyIndexedKeyframes: base_config_1.TYPE,
193
+ PublicKeyCredentialCreationOptions: base_config_1.TYPE,
194
+ PublicKeyCredentialDescriptor: base_config_1.TYPE,
195
+ PublicKeyCredentialEntity: base_config_1.TYPE,
196
+ PublicKeyCredentialParameters: base_config_1.TYPE,
197
+ PublicKeyCredentialRequestOptions: base_config_1.TYPE,
198
+ PublicKeyCredentialRpEntity: base_config_1.TYPE,
199
+ PublicKeyCredentialUserEntity: base_config_1.TYPE,
200
+ PushSubscriptionJSON: base_config_1.TYPE,
201
+ PushSubscriptionOptionsInit: base_config_1.TYPE,
202
+ QueuingStrategy: base_config_1.TYPE,
203
+ QueuingStrategyInit: base_config_1.TYPE,
204
+ RTCAnswerOptions: base_config_1.TYPE,
205
+ RTCCertificateExpiration: base_config_1.TYPE,
206
+ RTCConfiguration: base_config_1.TYPE,
207
+ RTCDTMFToneChangeEventInit: base_config_1.TYPE,
208
+ RTCDataChannelEventInit: base_config_1.TYPE,
209
+ RTCDataChannelInit: base_config_1.TYPE,
210
+ RTCDtlsFingerprint: base_config_1.TYPE,
211
+ RTCEncodedAudioFrameMetadata: base_config_1.TYPE,
212
+ RTCEncodedVideoFrameMetadata: base_config_1.TYPE,
213
+ RTCErrorEventInit: base_config_1.TYPE,
214
+ RTCErrorInit: base_config_1.TYPE,
215
+ RTCIceCandidateInit: base_config_1.TYPE,
216
+ RTCIceCandidatePairStats: base_config_1.TYPE,
217
+ RTCIceServer: base_config_1.TYPE,
218
+ RTCInboundRtpStreamStats: base_config_1.TYPE,
219
+ RTCLocalSessionDescriptionInit: base_config_1.TYPE,
220
+ RTCOfferAnswerOptions: base_config_1.TYPE,
221
+ RTCOfferOptions: base_config_1.TYPE,
222
+ RTCOutboundRtpStreamStats: base_config_1.TYPE,
223
+ RTCPeerConnectionIceErrorEventInit: base_config_1.TYPE,
224
+ RTCPeerConnectionIceEventInit: base_config_1.TYPE,
225
+ RTCReceivedRtpStreamStats: base_config_1.TYPE,
226
+ RTCRtcpParameters: base_config_1.TYPE,
227
+ RTCRtpCapabilities: base_config_1.TYPE,
228
+ RTCRtpCodecCapability: base_config_1.TYPE,
229
+ RTCRtpCodecParameters: base_config_1.TYPE,
230
+ RTCRtpCodingParameters: base_config_1.TYPE,
231
+ RTCRtpContributingSource: base_config_1.TYPE,
232
+ RTCRtpEncodingParameters: base_config_1.TYPE,
233
+ RTCRtpHeaderExtensionCapability: base_config_1.TYPE,
234
+ RTCRtpHeaderExtensionParameters: base_config_1.TYPE,
235
+ RTCRtpParameters: base_config_1.TYPE,
236
+ RTCRtpReceiveParameters: base_config_1.TYPE,
237
+ RTCRtpSendParameters: base_config_1.TYPE,
238
+ RTCRtpStreamStats: base_config_1.TYPE,
239
+ RTCRtpSynchronizationSource: base_config_1.TYPE,
240
+ RTCRtpTransceiverInit: base_config_1.TYPE,
241
+ RTCSentRtpStreamStats: base_config_1.TYPE,
242
+ RTCSessionDescriptionInit: base_config_1.TYPE,
243
+ RTCStats: base_config_1.TYPE,
244
+ RTCTrackEventInit: base_config_1.TYPE,
245
+ RTCTransportStats: base_config_1.TYPE,
246
+ ReadableStreamReadDoneResult: base_config_1.TYPE,
247
+ ReadableStreamReadValueResult: base_config_1.TYPE,
248
+ ReadableWritablePair: base_config_1.TYPE,
249
+ RegistrationOptions: base_config_1.TYPE,
250
+ RequestInit: base_config_1.TYPE,
251
+ ResizeObserverOptions: base_config_1.TYPE,
252
+ ResponseInit: base_config_1.TYPE,
253
+ RsaHashedImportParams: base_config_1.TYPE,
254
+ RsaHashedKeyAlgorithm: base_config_1.TYPE,
255
+ RsaHashedKeyGenParams: base_config_1.TYPE,
256
+ RsaKeyAlgorithm: base_config_1.TYPE,
257
+ RsaKeyGenParams: base_config_1.TYPE,
258
+ RsaOaepParams: base_config_1.TYPE,
259
+ RsaOtherPrimesInfo: base_config_1.TYPE,
260
+ RsaPssParams: base_config_1.TYPE,
261
+ SVGBoundingBoxOptions: base_config_1.TYPE,
262
+ ScrollIntoViewOptions: base_config_1.TYPE,
263
+ ScrollOptions: base_config_1.TYPE,
264
+ ScrollToOptions: base_config_1.TYPE,
265
+ SecurityPolicyViolationEventInit: base_config_1.TYPE,
266
+ ShadowRootInit: base_config_1.TYPE,
267
+ ShareData: base_config_1.TYPE,
268
+ SpeechSynthesisErrorEventInit: base_config_1.TYPE,
269
+ SpeechSynthesisEventInit: base_config_1.TYPE,
270
+ StaticRangeInit: base_config_1.TYPE,
271
+ StereoPannerOptions: base_config_1.TYPE,
272
+ StorageEstimate: base_config_1.TYPE,
273
+ StorageEventInit: base_config_1.TYPE,
274
+ StreamPipeOptions: base_config_1.TYPE,
275
+ StructuredSerializeOptions: base_config_1.TYPE,
276
+ SubmitEventInit: base_config_1.TYPE,
277
+ TextDecodeOptions: base_config_1.TYPE,
278
+ TextDecoderOptions: base_config_1.TYPE,
279
+ TextEncoderEncodeIntoResult: base_config_1.TYPE,
280
+ TouchEventInit: base_config_1.TYPE,
281
+ TouchInit: base_config_1.TYPE,
282
+ TrackEventInit: base_config_1.TYPE,
283
+ Transformer: base_config_1.TYPE,
284
+ TransitionEventInit: base_config_1.TYPE,
285
+ UIEventInit: base_config_1.TYPE,
286
+ ULongRange: base_config_1.TYPE,
287
+ UnderlyingSink: base_config_1.TYPE,
288
+ UnderlyingSource: base_config_1.TYPE,
289
+ ValidityStateFlags: base_config_1.TYPE,
290
+ VideoColorSpaceInit: base_config_1.TYPE,
291
+ VideoConfiguration: base_config_1.TYPE,
292
+ VideoFrameMetadata: base_config_1.TYPE,
293
+ WaveShaperOptions: base_config_1.TYPE,
294
+ WebGLContextAttributes: base_config_1.TYPE,
295
+ WebGLContextEventInit: base_config_1.TYPE,
296
+ WheelEventInit: base_config_1.TYPE,
297
+ WindowPostMessageOptions: base_config_1.TYPE,
298
+ WorkerOptions: base_config_1.TYPE,
299
+ WorkletOptions: base_config_1.TYPE,
300
+ NodeFilter: base_config_1.TYPE_VALUE,
301
+ XPathNSResolver: base_config_1.TYPE,
302
+ ANGLE_instanced_arrays: base_config_1.TYPE,
303
+ ARIAMixin: base_config_1.TYPE,
304
+ AbortController: base_config_1.TYPE_VALUE,
305
+ AbortSignalEventMap: base_config_1.TYPE,
306
+ AbortSignal: base_config_1.TYPE_VALUE,
307
+ AbstractRange: base_config_1.TYPE_VALUE,
308
+ AbstractWorkerEventMap: base_config_1.TYPE,
309
+ AbstractWorker: base_config_1.TYPE,
310
+ AnalyserNode: base_config_1.TYPE_VALUE,
311
+ Animatable: base_config_1.TYPE,
312
+ AnimationEventMap: base_config_1.TYPE,
313
+ Animation: base_config_1.TYPE_VALUE,
314
+ AnimationEffect: base_config_1.TYPE_VALUE,
315
+ AnimationEvent: base_config_1.TYPE_VALUE,
316
+ AnimationFrameProvider: base_config_1.TYPE,
317
+ AnimationPlaybackEvent: base_config_1.TYPE_VALUE,
318
+ AnimationTimeline: base_config_1.TYPE_VALUE,
319
+ Attr: base_config_1.TYPE_VALUE,
320
+ AudioBuffer: base_config_1.TYPE_VALUE,
321
+ AudioBufferSourceNode: base_config_1.TYPE_VALUE,
322
+ AudioContext: base_config_1.TYPE_VALUE,
323
+ AudioDestinationNode: base_config_1.TYPE_VALUE,
324
+ AudioListener: base_config_1.TYPE_VALUE,
325
+ AudioNode: base_config_1.TYPE_VALUE,
326
+ AudioParam: base_config_1.TYPE_VALUE,
327
+ AudioParamMap: base_config_1.TYPE_VALUE,
328
+ AudioProcessingEvent: base_config_1.TYPE_VALUE,
329
+ AudioScheduledSourceNodeEventMap: base_config_1.TYPE,
330
+ AudioScheduledSourceNode: base_config_1.TYPE_VALUE,
331
+ AudioWorklet: base_config_1.TYPE_VALUE,
332
+ AudioWorkletNodeEventMap: base_config_1.TYPE,
333
+ AudioWorkletNode: base_config_1.TYPE_VALUE,
334
+ AuthenticatorAssertionResponse: base_config_1.TYPE_VALUE,
335
+ AuthenticatorAttestationResponse: base_config_1.TYPE_VALUE,
336
+ AuthenticatorResponse: base_config_1.TYPE_VALUE,
337
+ BarProp: base_config_1.TYPE_VALUE,
338
+ BaseAudioContextEventMap: base_config_1.TYPE,
339
+ BaseAudioContext: base_config_1.TYPE_VALUE,
340
+ BeforeUnloadEvent: base_config_1.TYPE_VALUE,
341
+ BiquadFilterNode: base_config_1.TYPE_VALUE,
342
+ Blob: base_config_1.TYPE_VALUE,
343
+ BlobEvent: base_config_1.TYPE_VALUE,
344
+ Body: base_config_1.TYPE,
345
+ BroadcastChannelEventMap: base_config_1.TYPE,
346
+ BroadcastChannel: base_config_1.TYPE_VALUE,
347
+ ByteLengthQueuingStrategy: base_config_1.TYPE_VALUE,
348
+ CDATASection: base_config_1.TYPE_VALUE,
349
+ CSSAnimation: base_config_1.TYPE_VALUE,
350
+ CSSConditionRule: base_config_1.TYPE_VALUE,
351
+ CSSCounterStyleRule: base_config_1.TYPE_VALUE,
352
+ CSSFontFaceRule: base_config_1.TYPE_VALUE,
353
+ CSSGroupingRule: base_config_1.TYPE_VALUE,
354
+ CSSImportRule: base_config_1.TYPE_VALUE,
355
+ CSSKeyframeRule: base_config_1.TYPE_VALUE,
356
+ CSSKeyframesRule: base_config_1.TYPE_VALUE,
357
+ CSSMediaRule: base_config_1.TYPE_VALUE,
358
+ CSSNamespaceRule: base_config_1.TYPE_VALUE,
359
+ CSSPageRule: base_config_1.TYPE_VALUE,
360
+ CSSRule: base_config_1.TYPE_VALUE,
361
+ CSSRuleList: base_config_1.TYPE_VALUE,
362
+ CSSStyleDeclaration: base_config_1.TYPE_VALUE,
363
+ CSSStyleRule: base_config_1.TYPE_VALUE,
364
+ CSSStyleSheet: base_config_1.TYPE_VALUE,
365
+ CSSSupportsRule: base_config_1.TYPE_VALUE,
366
+ CSSTransition: base_config_1.TYPE_VALUE,
367
+ Cache: base_config_1.TYPE_VALUE,
368
+ CacheStorage: base_config_1.TYPE_VALUE,
369
+ CanvasCaptureMediaStreamTrack: base_config_1.TYPE_VALUE,
370
+ CanvasCompositing: base_config_1.TYPE,
371
+ CanvasDrawImage: base_config_1.TYPE,
372
+ CanvasDrawPath: base_config_1.TYPE,
373
+ CanvasFillStrokeStyles: base_config_1.TYPE,
374
+ CanvasFilters: base_config_1.TYPE,
375
+ CanvasGradient: base_config_1.TYPE_VALUE,
376
+ CanvasImageData: base_config_1.TYPE,
377
+ CanvasImageSmoothing: base_config_1.TYPE,
378
+ CanvasPath: base_config_1.TYPE,
379
+ CanvasPathDrawingStyles: base_config_1.TYPE,
380
+ CanvasPattern: base_config_1.TYPE_VALUE,
381
+ CanvasRect: base_config_1.TYPE,
382
+ CanvasRenderingContext2D: base_config_1.TYPE_VALUE,
383
+ CanvasShadowStyles: base_config_1.TYPE,
384
+ CanvasState: base_config_1.TYPE,
385
+ CanvasText: base_config_1.TYPE,
386
+ CanvasTextDrawingStyles: base_config_1.TYPE,
387
+ CanvasTransform: base_config_1.TYPE,
388
+ CanvasUserInterface: base_config_1.TYPE,
389
+ ChannelMergerNode: base_config_1.TYPE_VALUE,
390
+ ChannelSplitterNode: base_config_1.TYPE_VALUE,
391
+ CharacterData: base_config_1.TYPE_VALUE,
392
+ ChildNode: base_config_1.TYPE,
393
+ ClientRect: base_config_1.TYPE,
394
+ Clipboard: base_config_1.TYPE_VALUE,
395
+ ClipboardEvent: base_config_1.TYPE_VALUE,
396
+ ClipboardItem: base_config_1.TYPE_VALUE,
397
+ CloseEvent: base_config_1.TYPE_VALUE,
398
+ Comment: base_config_1.TYPE_VALUE,
399
+ CompositionEvent: base_config_1.TYPE_VALUE,
400
+ ConstantSourceNode: base_config_1.TYPE_VALUE,
401
+ ConvolverNode: base_config_1.TYPE_VALUE,
402
+ CountQueuingStrategy: base_config_1.TYPE_VALUE,
403
+ Credential: base_config_1.TYPE_VALUE,
404
+ CredentialsContainer: base_config_1.TYPE_VALUE,
405
+ Crypto: base_config_1.TYPE_VALUE,
406
+ CryptoKey: base_config_1.TYPE_VALUE,
407
+ CustomElementRegistry: base_config_1.TYPE_VALUE,
408
+ CustomEvent: base_config_1.TYPE_VALUE,
409
+ DOMException: base_config_1.TYPE_VALUE,
410
+ DOMImplementation: base_config_1.TYPE_VALUE,
411
+ DOMMatrix: base_config_1.TYPE_VALUE,
412
+ SVGMatrix: base_config_1.TYPE_VALUE,
413
+ WebKitCSSMatrix: base_config_1.TYPE_VALUE,
414
+ DOMMatrixReadOnly: base_config_1.TYPE_VALUE,
415
+ DOMParser: base_config_1.TYPE_VALUE,
416
+ DOMPoint: base_config_1.TYPE_VALUE,
417
+ SVGPoint: base_config_1.TYPE_VALUE,
418
+ DOMPointReadOnly: base_config_1.TYPE_VALUE,
419
+ DOMQuad: base_config_1.TYPE_VALUE,
420
+ DOMRect: base_config_1.TYPE_VALUE,
421
+ SVGRect: base_config_1.TYPE_VALUE,
422
+ DOMRectList: base_config_1.TYPE_VALUE,
423
+ DOMRectReadOnly: base_config_1.TYPE_VALUE,
424
+ DOMStringList: base_config_1.TYPE_VALUE,
425
+ DOMStringMap: base_config_1.TYPE_VALUE,
426
+ DOMTokenList: base_config_1.TYPE_VALUE,
427
+ DataTransfer: base_config_1.TYPE_VALUE,
428
+ DataTransferItem: base_config_1.TYPE_VALUE,
429
+ DataTransferItemList: base_config_1.TYPE_VALUE,
430
+ DelayNode: base_config_1.TYPE_VALUE,
431
+ DeviceMotionEvent: base_config_1.TYPE_VALUE,
432
+ DeviceMotionEventAcceleration: base_config_1.TYPE,
433
+ DeviceMotionEventRotationRate: base_config_1.TYPE,
434
+ DeviceOrientationEvent: base_config_1.TYPE_VALUE,
435
+ DocumentEventMap: base_config_1.TYPE,
436
+ Document: base_config_1.TYPE_VALUE,
437
+ DocumentAndElementEventHandlersEventMap: base_config_1.TYPE,
438
+ DocumentAndElementEventHandlers: base_config_1.TYPE,
439
+ DocumentFragment: base_config_1.TYPE_VALUE,
440
+ DocumentOrShadowRoot: base_config_1.TYPE,
441
+ DocumentTimeline: base_config_1.TYPE_VALUE,
442
+ DocumentType: base_config_1.TYPE_VALUE,
443
+ DragEvent: base_config_1.TYPE_VALUE,
444
+ DynamicsCompressorNode: base_config_1.TYPE_VALUE,
445
+ EXT_blend_minmax: base_config_1.TYPE,
446
+ EXT_color_buffer_float: base_config_1.TYPE,
447
+ EXT_color_buffer_half_float: base_config_1.TYPE,
448
+ EXT_float_blend: base_config_1.TYPE,
449
+ EXT_frag_depth: base_config_1.TYPE,
450
+ EXT_sRGB: base_config_1.TYPE,
451
+ EXT_shader_texture_lod: base_config_1.TYPE,
452
+ EXT_texture_compression_rgtc: base_config_1.TYPE,
453
+ EXT_texture_filter_anisotropic: base_config_1.TYPE,
454
+ ElementEventMap: base_config_1.TYPE,
455
+ Element: base_config_1.TYPE_VALUE,
456
+ ElementCSSInlineStyle: base_config_1.TYPE,
457
+ ElementContentEditable: base_config_1.TYPE,
458
+ ElementInternals: base_config_1.TYPE_VALUE,
459
+ ErrorEvent: base_config_1.TYPE_VALUE,
460
+ Event: base_config_1.TYPE_VALUE,
461
+ EventCounts: base_config_1.TYPE_VALUE,
462
+ EventListener: base_config_1.TYPE,
463
+ EventListenerObject: base_config_1.TYPE,
464
+ EventSourceEventMap: base_config_1.TYPE,
465
+ EventSource: base_config_1.TYPE_VALUE,
466
+ EventTarget: base_config_1.TYPE_VALUE,
467
+ External: base_config_1.TYPE_VALUE,
468
+ File: base_config_1.TYPE_VALUE,
469
+ FileList: base_config_1.TYPE_VALUE,
470
+ FileReaderEventMap: base_config_1.TYPE,
471
+ FileReader: base_config_1.TYPE_VALUE,
472
+ FileSystem: base_config_1.TYPE_VALUE,
473
+ FileSystemDirectoryEntry: base_config_1.TYPE_VALUE,
474
+ FileSystemDirectoryHandle: base_config_1.TYPE_VALUE,
475
+ FileSystemDirectoryReader: base_config_1.TYPE_VALUE,
476
+ FileSystemEntry: base_config_1.TYPE_VALUE,
477
+ FileSystemFileEntry: base_config_1.TYPE_VALUE,
478
+ FileSystemFileHandle: base_config_1.TYPE_VALUE,
479
+ FileSystemHandle: base_config_1.TYPE_VALUE,
480
+ FocusEvent: base_config_1.TYPE_VALUE,
481
+ FontFace: base_config_1.TYPE_VALUE,
482
+ FontFaceSetEventMap: base_config_1.TYPE,
483
+ FontFaceSet: base_config_1.TYPE_VALUE,
484
+ FontFaceSetLoadEvent: base_config_1.TYPE_VALUE,
485
+ FontFaceSource: base_config_1.TYPE,
486
+ FormData: base_config_1.TYPE_VALUE,
487
+ FormDataEvent: base_config_1.TYPE_VALUE,
488
+ GainNode: base_config_1.TYPE_VALUE,
489
+ Gamepad: base_config_1.TYPE_VALUE,
490
+ GamepadButton: base_config_1.TYPE_VALUE,
491
+ GamepadEvent: base_config_1.TYPE_VALUE,
492
+ GamepadHapticActuator: base_config_1.TYPE_VALUE,
493
+ GenericTransformStream: base_config_1.TYPE,
494
+ Geolocation: base_config_1.TYPE_VALUE,
495
+ GeolocationCoordinates: base_config_1.TYPE_VALUE,
496
+ GeolocationPosition: base_config_1.TYPE_VALUE,
497
+ GeolocationPositionError: base_config_1.TYPE_VALUE,
498
+ GlobalEventHandlersEventMap: base_config_1.TYPE,
499
+ GlobalEventHandlers: base_config_1.TYPE,
500
+ HTMLAllCollection: base_config_1.TYPE_VALUE,
501
+ HTMLAnchorElement: base_config_1.TYPE_VALUE,
502
+ HTMLAreaElement: base_config_1.TYPE_VALUE,
503
+ HTMLAudioElement: base_config_1.TYPE_VALUE,
504
+ HTMLBRElement: base_config_1.TYPE_VALUE,
505
+ HTMLBaseElement: base_config_1.TYPE_VALUE,
506
+ HTMLBodyElementEventMap: base_config_1.TYPE,
507
+ HTMLBodyElement: base_config_1.TYPE_VALUE,
508
+ HTMLButtonElement: base_config_1.TYPE_VALUE,
509
+ HTMLCanvasElement: base_config_1.TYPE_VALUE,
510
+ HTMLCollectionBase: base_config_1.TYPE,
511
+ HTMLCollection: base_config_1.TYPE_VALUE,
512
+ HTMLCollectionOf: base_config_1.TYPE,
513
+ HTMLDListElement: base_config_1.TYPE_VALUE,
514
+ HTMLDataElement: base_config_1.TYPE_VALUE,
515
+ HTMLDataListElement: base_config_1.TYPE_VALUE,
516
+ HTMLDetailsElement: base_config_1.TYPE_VALUE,
517
+ HTMLDialogElement: base_config_1.TYPE_VALUE,
518
+ HTMLDirectoryElement: base_config_1.TYPE_VALUE,
519
+ HTMLDivElement: base_config_1.TYPE_VALUE,
520
+ HTMLDocument: base_config_1.TYPE_VALUE,
521
+ HTMLElementEventMap: base_config_1.TYPE,
522
+ HTMLElement: base_config_1.TYPE_VALUE,
523
+ HTMLEmbedElement: base_config_1.TYPE_VALUE,
524
+ HTMLFieldSetElement: base_config_1.TYPE_VALUE,
525
+ HTMLFontElement: base_config_1.TYPE_VALUE,
526
+ HTMLFormControlsCollection: base_config_1.TYPE_VALUE,
527
+ HTMLFormElement: base_config_1.TYPE_VALUE,
528
+ HTMLFrameElement: base_config_1.TYPE_VALUE,
529
+ HTMLFrameSetElementEventMap: base_config_1.TYPE,
530
+ HTMLFrameSetElement: base_config_1.TYPE_VALUE,
531
+ HTMLHRElement: base_config_1.TYPE_VALUE,
532
+ HTMLHeadElement: base_config_1.TYPE_VALUE,
533
+ HTMLHeadingElement: base_config_1.TYPE_VALUE,
534
+ HTMLHtmlElement: base_config_1.TYPE_VALUE,
535
+ HTMLHyperlinkElementUtils: base_config_1.TYPE,
536
+ HTMLIFrameElement: base_config_1.TYPE_VALUE,
537
+ HTMLImageElement: base_config_1.TYPE_VALUE,
538
+ HTMLInputElement: base_config_1.TYPE_VALUE,
539
+ HTMLLIElement: base_config_1.TYPE_VALUE,
540
+ HTMLLabelElement: base_config_1.TYPE_VALUE,
541
+ HTMLLegendElement: base_config_1.TYPE_VALUE,
542
+ HTMLLinkElement: base_config_1.TYPE_VALUE,
543
+ HTMLMapElement: base_config_1.TYPE_VALUE,
544
+ HTMLMarqueeElement: base_config_1.TYPE_VALUE,
545
+ HTMLMediaElementEventMap: base_config_1.TYPE,
546
+ HTMLMediaElement: base_config_1.TYPE_VALUE,
547
+ HTMLMenuElement: base_config_1.TYPE_VALUE,
548
+ HTMLMetaElement: base_config_1.TYPE_VALUE,
549
+ HTMLMeterElement: base_config_1.TYPE_VALUE,
550
+ HTMLModElement: base_config_1.TYPE_VALUE,
551
+ HTMLOListElement: base_config_1.TYPE_VALUE,
552
+ HTMLObjectElement: base_config_1.TYPE_VALUE,
553
+ HTMLOptGroupElement: base_config_1.TYPE_VALUE,
554
+ HTMLOptionElement: base_config_1.TYPE_VALUE,
555
+ HTMLOptionsCollection: base_config_1.TYPE_VALUE,
556
+ HTMLOrSVGElement: base_config_1.TYPE,
557
+ HTMLOutputElement: base_config_1.TYPE_VALUE,
558
+ HTMLParagraphElement: base_config_1.TYPE_VALUE,
559
+ HTMLParamElement: base_config_1.TYPE_VALUE,
560
+ HTMLPictureElement: base_config_1.TYPE_VALUE,
561
+ HTMLPreElement: base_config_1.TYPE_VALUE,
562
+ HTMLProgressElement: base_config_1.TYPE_VALUE,
563
+ HTMLQuoteElement: base_config_1.TYPE_VALUE,
564
+ HTMLScriptElement: base_config_1.TYPE_VALUE,
565
+ HTMLSelectElement: base_config_1.TYPE_VALUE,
566
+ HTMLSlotElement: base_config_1.TYPE_VALUE,
567
+ HTMLSourceElement: base_config_1.TYPE_VALUE,
568
+ HTMLSpanElement: base_config_1.TYPE_VALUE,
569
+ HTMLStyleElement: base_config_1.TYPE_VALUE,
570
+ HTMLTableCaptionElement: base_config_1.TYPE_VALUE,
571
+ HTMLTableCellElement: base_config_1.TYPE_VALUE,
572
+ HTMLTableColElement: base_config_1.TYPE_VALUE,
573
+ HTMLTableDataCellElement: base_config_1.TYPE,
574
+ HTMLTableElement: base_config_1.TYPE_VALUE,
575
+ HTMLTableHeaderCellElement: base_config_1.TYPE,
576
+ HTMLTableRowElement: base_config_1.TYPE_VALUE,
577
+ HTMLTableSectionElement: base_config_1.TYPE_VALUE,
578
+ HTMLTemplateElement: base_config_1.TYPE_VALUE,
579
+ HTMLTextAreaElement: base_config_1.TYPE_VALUE,
580
+ HTMLTimeElement: base_config_1.TYPE_VALUE,
581
+ HTMLTitleElement: base_config_1.TYPE_VALUE,
582
+ HTMLTrackElement: base_config_1.TYPE_VALUE,
583
+ HTMLUListElement: base_config_1.TYPE_VALUE,
584
+ HTMLUnknownElement: base_config_1.TYPE_VALUE,
585
+ HTMLVideoElementEventMap: base_config_1.TYPE,
586
+ HTMLVideoElement: base_config_1.TYPE_VALUE,
587
+ HashChangeEvent: base_config_1.TYPE_VALUE,
588
+ Headers: base_config_1.TYPE_VALUE,
589
+ History: base_config_1.TYPE_VALUE,
590
+ IDBCursor: base_config_1.TYPE_VALUE,
591
+ IDBCursorWithValue: base_config_1.TYPE_VALUE,
592
+ IDBDatabaseEventMap: base_config_1.TYPE,
593
+ IDBDatabase: base_config_1.TYPE_VALUE,
594
+ IDBFactory: base_config_1.TYPE_VALUE,
595
+ IDBIndex: base_config_1.TYPE_VALUE,
596
+ IDBKeyRange: base_config_1.TYPE_VALUE,
597
+ IDBObjectStore: base_config_1.TYPE_VALUE,
598
+ IDBOpenDBRequestEventMap: base_config_1.TYPE,
599
+ IDBOpenDBRequest: base_config_1.TYPE_VALUE,
600
+ IDBRequestEventMap: base_config_1.TYPE,
601
+ IDBRequest: base_config_1.TYPE_VALUE,
602
+ IDBTransactionEventMap: base_config_1.TYPE,
603
+ IDBTransaction: base_config_1.TYPE_VALUE,
604
+ IDBVersionChangeEvent: base_config_1.TYPE_VALUE,
605
+ IIRFilterNode: base_config_1.TYPE_VALUE,
606
+ IdleDeadline: base_config_1.TYPE_VALUE,
607
+ ImageBitmap: base_config_1.TYPE_VALUE,
608
+ ImageBitmapRenderingContext: base_config_1.TYPE_VALUE,
609
+ ImageData: base_config_1.TYPE_VALUE,
610
+ InnerHTML: base_config_1.TYPE,
611
+ InputDeviceInfo: base_config_1.TYPE_VALUE,
612
+ InputEvent: base_config_1.TYPE_VALUE,
613
+ IntersectionObserver: base_config_1.TYPE_VALUE,
614
+ IntersectionObserverEntry: base_config_1.TYPE_VALUE,
615
+ KHR_parallel_shader_compile: base_config_1.TYPE,
616
+ KeyboardEvent: base_config_1.TYPE_VALUE,
617
+ KeyframeEffect: base_config_1.TYPE_VALUE,
618
+ LinkStyle: base_config_1.TYPE,
619
+ Location: base_config_1.TYPE_VALUE,
620
+ Lock: base_config_1.TYPE_VALUE,
621
+ LockManager: base_config_1.TYPE_VALUE,
622
+ MathMLElementEventMap: base_config_1.TYPE,
623
+ MathMLElement: base_config_1.TYPE_VALUE,
624
+ MediaCapabilities: base_config_1.TYPE_VALUE,
625
+ MediaDeviceInfo: base_config_1.TYPE_VALUE,
626
+ MediaDevicesEventMap: base_config_1.TYPE,
627
+ MediaDevices: base_config_1.TYPE_VALUE,
628
+ MediaElementAudioSourceNode: base_config_1.TYPE_VALUE,
629
+ MediaEncryptedEvent: base_config_1.TYPE_VALUE,
630
+ MediaError: base_config_1.TYPE_VALUE,
631
+ MediaKeyMessageEvent: base_config_1.TYPE_VALUE,
632
+ MediaKeySessionEventMap: base_config_1.TYPE,
633
+ MediaKeySession: base_config_1.TYPE_VALUE,
634
+ MediaKeyStatusMap: base_config_1.TYPE_VALUE,
635
+ MediaKeySystemAccess: base_config_1.TYPE_VALUE,
636
+ MediaKeys: base_config_1.TYPE_VALUE,
637
+ MediaList: base_config_1.TYPE_VALUE,
638
+ MediaMetadata: base_config_1.TYPE_VALUE,
639
+ MediaQueryListEventMap: base_config_1.TYPE,
640
+ MediaQueryList: base_config_1.TYPE_VALUE,
641
+ MediaQueryListEvent: base_config_1.TYPE_VALUE,
642
+ MediaRecorderEventMap: base_config_1.TYPE,
643
+ MediaRecorder: base_config_1.TYPE_VALUE,
644
+ MediaRecorderErrorEvent: base_config_1.TYPE_VALUE,
645
+ MediaSession: base_config_1.TYPE_VALUE,
646
+ MediaSourceEventMap: base_config_1.TYPE,
647
+ MediaSource: base_config_1.TYPE_VALUE,
648
+ MediaStreamEventMap: base_config_1.TYPE,
649
+ MediaStream: base_config_1.TYPE_VALUE,
650
+ MediaStreamAudioDestinationNode: base_config_1.TYPE_VALUE,
651
+ MediaStreamAudioSourceNode: base_config_1.TYPE_VALUE,
652
+ MediaStreamTrackEventMap: base_config_1.TYPE,
653
+ MediaStreamTrack: base_config_1.TYPE_VALUE,
654
+ MediaStreamTrackEvent: base_config_1.TYPE_VALUE,
655
+ MessageChannel: base_config_1.TYPE_VALUE,
656
+ MessageEvent: base_config_1.TYPE_VALUE,
657
+ MessagePortEventMap: base_config_1.TYPE,
658
+ MessagePort: base_config_1.TYPE_VALUE,
659
+ MimeType: base_config_1.TYPE_VALUE,
660
+ MimeTypeArray: base_config_1.TYPE_VALUE,
661
+ MouseEvent: base_config_1.TYPE_VALUE,
662
+ MutationEvent: base_config_1.TYPE_VALUE,
663
+ MutationObserver: base_config_1.TYPE_VALUE,
664
+ MutationRecord: base_config_1.TYPE_VALUE,
665
+ NamedNodeMap: base_config_1.TYPE_VALUE,
666
+ NavigationPreloadManager: base_config_1.TYPE_VALUE,
667
+ Navigator: base_config_1.TYPE_VALUE,
668
+ NavigatorAutomationInformation: base_config_1.TYPE,
669
+ NavigatorConcurrentHardware: base_config_1.TYPE,
670
+ NavigatorContentUtils: base_config_1.TYPE,
671
+ NavigatorCookies: base_config_1.TYPE,
672
+ NavigatorID: base_config_1.TYPE,
673
+ NavigatorLanguage: base_config_1.TYPE,
674
+ NavigatorLocks: base_config_1.TYPE,
675
+ NavigatorOnLine: base_config_1.TYPE,
676
+ NavigatorPlugins: base_config_1.TYPE,
677
+ NavigatorStorage: base_config_1.TYPE,
678
+ Node: base_config_1.TYPE_VALUE,
679
+ NodeIterator: base_config_1.TYPE_VALUE,
680
+ NodeList: base_config_1.TYPE_VALUE,
681
+ NodeListOf: base_config_1.TYPE,
682
+ NonDocumentTypeChildNode: base_config_1.TYPE,
683
+ NonElementParentNode: base_config_1.TYPE,
684
+ NotificationEventMap: base_config_1.TYPE,
685
+ Notification: base_config_1.TYPE_VALUE,
686
+ OES_element_index_uint: base_config_1.TYPE,
687
+ OES_fbo_render_mipmap: base_config_1.TYPE,
688
+ OES_standard_derivatives: base_config_1.TYPE,
689
+ OES_texture_float: base_config_1.TYPE,
690
+ OES_texture_float_linear: base_config_1.TYPE,
691
+ OES_texture_half_float: base_config_1.TYPE,
692
+ OES_texture_half_float_linear: base_config_1.TYPE,
693
+ OES_vertex_array_object: base_config_1.TYPE,
694
+ OVR_multiview2: base_config_1.TYPE,
695
+ OfflineAudioCompletionEvent: base_config_1.TYPE_VALUE,
696
+ OfflineAudioContextEventMap: base_config_1.TYPE,
697
+ OfflineAudioContext: base_config_1.TYPE_VALUE,
698
+ OscillatorNode: base_config_1.TYPE_VALUE,
699
+ OverconstrainedError: base_config_1.TYPE_VALUE,
700
+ PageTransitionEvent: base_config_1.TYPE_VALUE,
701
+ PannerNode: base_config_1.TYPE_VALUE,
702
+ ParentNode: base_config_1.TYPE,
703
+ Path2D: base_config_1.TYPE_VALUE,
704
+ PaymentMethodChangeEvent: base_config_1.TYPE_VALUE,
705
+ PaymentRequestEventMap: base_config_1.TYPE,
706
+ PaymentRequest: base_config_1.TYPE_VALUE,
707
+ PaymentRequestUpdateEvent: base_config_1.TYPE_VALUE,
708
+ PaymentResponse: base_config_1.TYPE_VALUE,
709
+ PerformanceEventMap: base_config_1.TYPE,
710
+ Performance: base_config_1.TYPE_VALUE,
711
+ PerformanceEntry: base_config_1.TYPE_VALUE,
712
+ PerformanceEventTiming: base_config_1.TYPE_VALUE,
713
+ PerformanceMark: base_config_1.TYPE_VALUE,
714
+ PerformanceMeasure: base_config_1.TYPE_VALUE,
715
+ PerformanceNavigation: base_config_1.TYPE_VALUE,
716
+ PerformanceNavigationTiming: base_config_1.TYPE_VALUE,
717
+ PerformanceObserver: base_config_1.TYPE_VALUE,
718
+ PerformanceObserverEntryList: base_config_1.TYPE_VALUE,
719
+ PerformancePaintTiming: base_config_1.TYPE_VALUE,
720
+ PerformanceResourceTiming: base_config_1.TYPE_VALUE,
721
+ PerformanceServerTiming: base_config_1.TYPE_VALUE,
722
+ PerformanceTiming: base_config_1.TYPE_VALUE,
723
+ PeriodicWave: base_config_1.TYPE_VALUE,
724
+ PermissionStatusEventMap: base_config_1.TYPE,
725
+ PermissionStatus: base_config_1.TYPE_VALUE,
726
+ Permissions: base_config_1.TYPE_VALUE,
727
+ PictureInPictureWindowEventMap: base_config_1.TYPE,
728
+ PictureInPictureWindow: base_config_1.TYPE_VALUE,
729
+ Plugin: base_config_1.TYPE_VALUE,
730
+ PluginArray: base_config_1.TYPE_VALUE,
731
+ PointerEvent: base_config_1.TYPE_VALUE,
732
+ PopStateEvent: base_config_1.TYPE_VALUE,
733
+ ProcessingInstruction: base_config_1.TYPE_VALUE,
734
+ ProgressEvent: base_config_1.TYPE_VALUE,
735
+ PromiseRejectionEvent: base_config_1.TYPE_VALUE,
736
+ PublicKeyCredential: base_config_1.TYPE_VALUE,
737
+ PushManager: base_config_1.TYPE_VALUE,
738
+ PushSubscription: base_config_1.TYPE_VALUE,
739
+ PushSubscriptionOptions: base_config_1.TYPE_VALUE,
740
+ RTCCertificate: base_config_1.TYPE_VALUE,
741
+ RTCDTMFSenderEventMap: base_config_1.TYPE,
742
+ RTCDTMFSender: base_config_1.TYPE_VALUE,
743
+ RTCDTMFToneChangeEvent: base_config_1.TYPE_VALUE,
744
+ RTCDataChannelEventMap: base_config_1.TYPE,
745
+ RTCDataChannel: base_config_1.TYPE_VALUE,
746
+ RTCDataChannelEvent: base_config_1.TYPE_VALUE,
747
+ RTCDtlsTransportEventMap: base_config_1.TYPE,
748
+ RTCDtlsTransport: base_config_1.TYPE_VALUE,
749
+ RTCEncodedAudioFrame: base_config_1.TYPE_VALUE,
750
+ RTCEncodedVideoFrame: base_config_1.TYPE_VALUE,
751
+ RTCError: base_config_1.TYPE_VALUE,
752
+ RTCErrorEvent: base_config_1.TYPE_VALUE,
753
+ RTCIceCandidate: base_config_1.TYPE_VALUE,
754
+ RTCIceTransportEventMap: base_config_1.TYPE,
755
+ RTCIceTransport: base_config_1.TYPE_VALUE,
756
+ RTCPeerConnectionEventMap: base_config_1.TYPE,
757
+ RTCPeerConnection: base_config_1.TYPE_VALUE,
758
+ RTCPeerConnectionIceErrorEvent: base_config_1.TYPE_VALUE,
759
+ RTCPeerConnectionIceEvent: base_config_1.TYPE_VALUE,
760
+ RTCRtpReceiver: base_config_1.TYPE_VALUE,
761
+ RTCRtpSender: base_config_1.TYPE_VALUE,
762
+ RTCRtpTransceiver: base_config_1.TYPE_VALUE,
763
+ RTCSctpTransportEventMap: base_config_1.TYPE,
764
+ RTCSctpTransport: base_config_1.TYPE_VALUE,
765
+ RTCSessionDescription: base_config_1.TYPE_VALUE,
766
+ RTCStatsReport: base_config_1.TYPE_VALUE,
767
+ RTCTrackEvent: base_config_1.TYPE_VALUE,
768
+ RadioNodeList: base_config_1.TYPE_VALUE,
769
+ Range: base_config_1.TYPE_VALUE,
770
+ ReadableByteStreamController: base_config_1.TYPE_VALUE,
771
+ ReadableStream: base_config_1.TYPE_VALUE,
772
+ ReadableStreamBYOBReader: base_config_1.TYPE_VALUE,
773
+ ReadableStreamBYOBRequest: base_config_1.TYPE_VALUE,
774
+ ReadableStreamDefaultController: base_config_1.TYPE_VALUE,
775
+ ReadableStreamDefaultReader: base_config_1.TYPE_VALUE,
776
+ ReadableStreamGenericReader: base_config_1.TYPE,
777
+ RemotePlaybackEventMap: base_config_1.TYPE,
778
+ RemotePlayback: base_config_1.TYPE_VALUE,
779
+ Request: base_config_1.TYPE_VALUE,
780
+ ResizeObserver: base_config_1.TYPE_VALUE,
781
+ ResizeObserverEntry: base_config_1.TYPE_VALUE,
782
+ ResizeObserverSize: base_config_1.TYPE_VALUE,
783
+ Response: base_config_1.TYPE_VALUE,
784
+ SVGAElement: base_config_1.TYPE_VALUE,
785
+ SVGAngle: base_config_1.TYPE_VALUE,
786
+ SVGAnimateElement: base_config_1.TYPE_VALUE,
787
+ SVGAnimateMotionElement: base_config_1.TYPE_VALUE,
788
+ SVGAnimateTransformElement: base_config_1.TYPE_VALUE,
789
+ SVGAnimatedAngle: base_config_1.TYPE_VALUE,
790
+ SVGAnimatedBoolean: base_config_1.TYPE_VALUE,
791
+ SVGAnimatedEnumeration: base_config_1.TYPE_VALUE,
792
+ SVGAnimatedInteger: base_config_1.TYPE_VALUE,
793
+ SVGAnimatedLength: base_config_1.TYPE_VALUE,
794
+ SVGAnimatedLengthList: base_config_1.TYPE_VALUE,
795
+ SVGAnimatedNumber: base_config_1.TYPE_VALUE,
796
+ SVGAnimatedNumberList: base_config_1.TYPE_VALUE,
797
+ SVGAnimatedPoints: base_config_1.TYPE,
798
+ SVGAnimatedPreserveAspectRatio: base_config_1.TYPE_VALUE,
799
+ SVGAnimatedRect: base_config_1.TYPE_VALUE,
800
+ SVGAnimatedString: base_config_1.TYPE_VALUE,
801
+ SVGAnimatedTransformList: base_config_1.TYPE_VALUE,
802
+ SVGAnimationElement: base_config_1.TYPE_VALUE,
803
+ SVGCircleElement: base_config_1.TYPE_VALUE,
804
+ SVGClipPathElement: base_config_1.TYPE_VALUE,
805
+ SVGComponentTransferFunctionElement: base_config_1.TYPE_VALUE,
806
+ SVGDefsElement: base_config_1.TYPE_VALUE,
807
+ SVGDescElement: base_config_1.TYPE_VALUE,
808
+ SVGElementEventMap: base_config_1.TYPE,
809
+ SVGElement: base_config_1.TYPE_VALUE,
810
+ SVGEllipseElement: base_config_1.TYPE_VALUE,
811
+ SVGFEBlendElement: base_config_1.TYPE_VALUE,
812
+ SVGFEColorMatrixElement: base_config_1.TYPE_VALUE,
813
+ SVGFEComponentTransferElement: base_config_1.TYPE_VALUE,
814
+ SVGFECompositeElement: base_config_1.TYPE_VALUE,
815
+ SVGFEConvolveMatrixElement: base_config_1.TYPE_VALUE,
816
+ SVGFEDiffuseLightingElement: base_config_1.TYPE_VALUE,
817
+ SVGFEDisplacementMapElement: base_config_1.TYPE_VALUE,
818
+ SVGFEDistantLightElement: base_config_1.TYPE_VALUE,
819
+ SVGFEDropShadowElement: base_config_1.TYPE_VALUE,
820
+ SVGFEFloodElement: base_config_1.TYPE_VALUE,
821
+ SVGFEFuncAElement: base_config_1.TYPE_VALUE,
822
+ SVGFEFuncBElement: base_config_1.TYPE_VALUE,
823
+ SVGFEFuncGElement: base_config_1.TYPE_VALUE,
824
+ SVGFEFuncRElement: base_config_1.TYPE_VALUE,
825
+ SVGFEGaussianBlurElement: base_config_1.TYPE_VALUE,
826
+ SVGFEImageElement: base_config_1.TYPE_VALUE,
827
+ SVGFEMergeElement: base_config_1.TYPE_VALUE,
828
+ SVGFEMergeNodeElement: base_config_1.TYPE_VALUE,
829
+ SVGFEMorphologyElement: base_config_1.TYPE_VALUE,
830
+ SVGFEOffsetElement: base_config_1.TYPE_VALUE,
831
+ SVGFEPointLightElement: base_config_1.TYPE_VALUE,
832
+ SVGFESpecularLightingElement: base_config_1.TYPE_VALUE,
833
+ SVGFESpotLightElement: base_config_1.TYPE_VALUE,
834
+ SVGFETileElement: base_config_1.TYPE_VALUE,
835
+ SVGFETurbulenceElement: base_config_1.TYPE_VALUE,
836
+ SVGFilterElement: base_config_1.TYPE_VALUE,
837
+ SVGFilterPrimitiveStandardAttributes: base_config_1.TYPE,
838
+ SVGFitToViewBox: base_config_1.TYPE,
839
+ SVGForeignObjectElement: base_config_1.TYPE_VALUE,
840
+ SVGGElement: base_config_1.TYPE_VALUE,
841
+ SVGGeometryElement: base_config_1.TYPE_VALUE,
842
+ SVGGradientElement: base_config_1.TYPE_VALUE,
843
+ SVGGraphicsElement: base_config_1.TYPE_VALUE,
844
+ SVGImageElement: base_config_1.TYPE_VALUE,
845
+ SVGLength: base_config_1.TYPE_VALUE,
846
+ SVGLengthList: base_config_1.TYPE_VALUE,
847
+ SVGLineElement: base_config_1.TYPE_VALUE,
848
+ SVGLinearGradientElement: base_config_1.TYPE_VALUE,
849
+ SVGMPathElement: base_config_1.TYPE_VALUE,
850
+ SVGMarkerElement: base_config_1.TYPE_VALUE,
851
+ SVGMaskElement: base_config_1.TYPE_VALUE,
852
+ SVGMetadataElement: base_config_1.TYPE_VALUE,
853
+ SVGNumber: base_config_1.TYPE_VALUE,
854
+ SVGNumberList: base_config_1.TYPE_VALUE,
855
+ SVGPathElement: base_config_1.TYPE_VALUE,
856
+ SVGPatternElement: base_config_1.TYPE_VALUE,
857
+ SVGPointList: base_config_1.TYPE_VALUE,
858
+ SVGPolygonElement: base_config_1.TYPE_VALUE,
859
+ SVGPolylineElement: base_config_1.TYPE_VALUE,
860
+ SVGPreserveAspectRatio: base_config_1.TYPE_VALUE,
861
+ SVGRadialGradientElement: base_config_1.TYPE_VALUE,
862
+ SVGRectElement: base_config_1.TYPE_VALUE,
863
+ SVGSVGElementEventMap: base_config_1.TYPE,
864
+ SVGSVGElement: base_config_1.TYPE_VALUE,
865
+ SVGScriptElement: base_config_1.TYPE_VALUE,
866
+ SVGSetElement: base_config_1.TYPE_VALUE,
867
+ SVGStopElement: base_config_1.TYPE_VALUE,
868
+ SVGStringList: base_config_1.TYPE_VALUE,
869
+ SVGStyleElement: base_config_1.TYPE_VALUE,
870
+ SVGSwitchElement: base_config_1.TYPE_VALUE,
871
+ SVGSymbolElement: base_config_1.TYPE_VALUE,
872
+ SVGTSpanElement: base_config_1.TYPE_VALUE,
873
+ SVGTests: base_config_1.TYPE,
874
+ SVGTextContentElement: base_config_1.TYPE_VALUE,
875
+ SVGTextElement: base_config_1.TYPE_VALUE,
876
+ SVGTextPathElement: base_config_1.TYPE_VALUE,
877
+ SVGTextPositioningElement: base_config_1.TYPE_VALUE,
878
+ SVGTitleElement: base_config_1.TYPE_VALUE,
879
+ SVGTransform: base_config_1.TYPE_VALUE,
880
+ SVGTransformList: base_config_1.TYPE_VALUE,
881
+ SVGURIReference: base_config_1.TYPE,
882
+ SVGUnitTypes: base_config_1.TYPE_VALUE,
883
+ SVGUseElement: base_config_1.TYPE_VALUE,
884
+ SVGViewElement: base_config_1.TYPE_VALUE,
885
+ Screen: base_config_1.TYPE_VALUE,
886
+ ScreenOrientationEventMap: base_config_1.TYPE,
887
+ ScreenOrientation: base_config_1.TYPE_VALUE,
888
+ ScriptProcessorNodeEventMap: base_config_1.TYPE,
889
+ ScriptProcessorNode: base_config_1.TYPE_VALUE,
890
+ SecurityPolicyViolationEvent: base_config_1.TYPE_VALUE,
891
+ Selection: base_config_1.TYPE_VALUE,
892
+ ServiceWorkerEventMap: base_config_1.TYPE,
893
+ ServiceWorker: base_config_1.TYPE_VALUE,
894
+ ServiceWorkerContainerEventMap: base_config_1.TYPE,
895
+ ServiceWorkerContainer: base_config_1.TYPE_VALUE,
896
+ ServiceWorkerRegistrationEventMap: base_config_1.TYPE,
897
+ ServiceWorkerRegistration: base_config_1.TYPE_VALUE,
898
+ ShadowRootEventMap: base_config_1.TYPE,
899
+ ShadowRoot: base_config_1.TYPE_VALUE,
900
+ SharedWorker: base_config_1.TYPE_VALUE,
901
+ Slottable: base_config_1.TYPE,
902
+ SourceBufferEventMap: base_config_1.TYPE,
903
+ SourceBuffer: base_config_1.TYPE_VALUE,
904
+ SourceBufferListEventMap: base_config_1.TYPE,
905
+ SourceBufferList: base_config_1.TYPE_VALUE,
906
+ SpeechRecognitionAlternative: base_config_1.TYPE_VALUE,
907
+ SpeechRecognitionResult: base_config_1.TYPE_VALUE,
908
+ SpeechRecognitionResultList: base_config_1.TYPE_VALUE,
909
+ SpeechSynthesisEventMap: base_config_1.TYPE,
910
+ SpeechSynthesis: base_config_1.TYPE_VALUE,
911
+ SpeechSynthesisErrorEvent: base_config_1.TYPE_VALUE,
912
+ SpeechSynthesisEvent: base_config_1.TYPE_VALUE,
913
+ SpeechSynthesisUtteranceEventMap: base_config_1.TYPE,
914
+ SpeechSynthesisUtterance: base_config_1.TYPE_VALUE,
915
+ SpeechSynthesisVoice: base_config_1.TYPE_VALUE,
916
+ StaticRange: base_config_1.TYPE_VALUE,
917
+ StereoPannerNode: base_config_1.TYPE_VALUE,
918
+ Storage: base_config_1.TYPE_VALUE,
919
+ StorageEvent: base_config_1.TYPE_VALUE,
920
+ StorageManager: base_config_1.TYPE_VALUE,
921
+ StyleMedia: base_config_1.TYPE,
922
+ StyleSheet: base_config_1.TYPE_VALUE,
923
+ StyleSheetList: base_config_1.TYPE_VALUE,
924
+ SubmitEvent: base_config_1.TYPE_VALUE,
925
+ SubtleCrypto: base_config_1.TYPE_VALUE,
926
+ Text: base_config_1.TYPE_VALUE,
927
+ TextDecoder: base_config_1.TYPE_VALUE,
928
+ TextDecoderCommon: base_config_1.TYPE,
929
+ TextDecoderStream: base_config_1.TYPE_VALUE,
930
+ TextEncoder: base_config_1.TYPE_VALUE,
931
+ TextEncoderCommon: base_config_1.TYPE,
932
+ TextEncoderStream: base_config_1.TYPE_VALUE,
933
+ TextMetrics: base_config_1.TYPE_VALUE,
934
+ TextTrackEventMap: base_config_1.TYPE,
935
+ TextTrack: base_config_1.TYPE_VALUE,
936
+ TextTrackCueEventMap: base_config_1.TYPE,
937
+ TextTrackCue: base_config_1.TYPE_VALUE,
938
+ TextTrackCueList: base_config_1.TYPE_VALUE,
939
+ TextTrackListEventMap: base_config_1.TYPE,
940
+ TextTrackList: base_config_1.TYPE_VALUE,
941
+ TimeRanges: base_config_1.TYPE_VALUE,
942
+ Touch: base_config_1.TYPE_VALUE,
943
+ TouchEvent: base_config_1.TYPE_VALUE,
944
+ TouchList: base_config_1.TYPE_VALUE,
945
+ TrackEvent: base_config_1.TYPE_VALUE,
946
+ TransformStream: base_config_1.TYPE_VALUE,
947
+ TransformStreamDefaultController: base_config_1.TYPE_VALUE,
948
+ TransitionEvent: base_config_1.TYPE_VALUE,
949
+ TreeWalker: base_config_1.TYPE_VALUE,
950
+ UIEvent: base_config_1.TYPE_VALUE,
951
+ URL: base_config_1.TYPE_VALUE,
952
+ webkitURL: base_config_1.TYPE_VALUE,
953
+ URLSearchParams: base_config_1.TYPE_VALUE,
954
+ VTTCue: base_config_1.TYPE_VALUE,
955
+ VTTRegion: base_config_1.TYPE_VALUE,
956
+ ValidityState: base_config_1.TYPE_VALUE,
957
+ VideoColorSpace: base_config_1.TYPE_VALUE,
958
+ VideoPlaybackQuality: base_config_1.TYPE_VALUE,
959
+ VisualViewportEventMap: base_config_1.TYPE,
960
+ VisualViewport: base_config_1.TYPE_VALUE,
961
+ WEBGL_color_buffer_float: base_config_1.TYPE,
962
+ WEBGL_compressed_texture_astc: base_config_1.TYPE,
963
+ WEBGL_compressed_texture_etc: base_config_1.TYPE,
964
+ WEBGL_compressed_texture_etc1: base_config_1.TYPE,
965
+ WEBGL_compressed_texture_s3tc: base_config_1.TYPE,
966
+ WEBGL_compressed_texture_s3tc_srgb: base_config_1.TYPE,
967
+ WEBGL_debug_renderer_info: base_config_1.TYPE,
968
+ WEBGL_debug_shaders: base_config_1.TYPE,
969
+ WEBGL_depth_texture: base_config_1.TYPE,
970
+ WEBGL_draw_buffers: base_config_1.TYPE,
971
+ WEBGL_lose_context: base_config_1.TYPE,
972
+ WEBGL_multi_draw: base_config_1.TYPE,
973
+ WaveShaperNode: base_config_1.TYPE_VALUE,
974
+ WebGL2RenderingContext: base_config_1.TYPE_VALUE,
975
+ WebGL2RenderingContextBase: base_config_1.TYPE,
976
+ WebGL2RenderingContextOverloads: base_config_1.TYPE,
977
+ WebGLActiveInfo: base_config_1.TYPE_VALUE,
978
+ WebGLBuffer: base_config_1.TYPE_VALUE,
979
+ WebGLContextEvent: base_config_1.TYPE_VALUE,
980
+ WebGLFramebuffer: base_config_1.TYPE_VALUE,
981
+ WebGLProgram: base_config_1.TYPE_VALUE,
982
+ WebGLQuery: base_config_1.TYPE_VALUE,
983
+ WebGLRenderbuffer: base_config_1.TYPE_VALUE,
984
+ WebGLRenderingContext: base_config_1.TYPE_VALUE,
985
+ WebGLRenderingContextBase: base_config_1.TYPE,
986
+ WebGLRenderingContextOverloads: base_config_1.TYPE,
987
+ WebGLSampler: base_config_1.TYPE_VALUE,
988
+ WebGLShader: base_config_1.TYPE_VALUE,
989
+ WebGLShaderPrecisionFormat: base_config_1.TYPE_VALUE,
990
+ WebGLSync: base_config_1.TYPE_VALUE,
991
+ WebGLTexture: base_config_1.TYPE_VALUE,
992
+ WebGLTransformFeedback: base_config_1.TYPE_VALUE,
993
+ WebGLUniformLocation: base_config_1.TYPE_VALUE,
994
+ WebGLVertexArrayObject: base_config_1.TYPE_VALUE,
995
+ WebGLVertexArrayObjectOES: base_config_1.TYPE,
996
+ WebSocketEventMap: base_config_1.TYPE,
997
+ WebSocket: base_config_1.TYPE_VALUE,
998
+ WheelEvent: base_config_1.TYPE_VALUE,
999
+ WindowEventMap: base_config_1.TYPE,
1000
+ Window: base_config_1.TYPE_VALUE,
1001
+ WindowEventHandlersEventMap: base_config_1.TYPE,
1002
+ WindowEventHandlers: base_config_1.TYPE,
1003
+ WindowLocalStorage: base_config_1.TYPE,
1004
+ WindowOrWorkerGlobalScope: base_config_1.TYPE,
1005
+ WindowSessionStorage: base_config_1.TYPE,
1006
+ WorkerEventMap: base_config_1.TYPE,
1007
+ Worker: base_config_1.TYPE_VALUE,
1008
+ Worklet: base_config_1.TYPE_VALUE,
1009
+ WritableStream: base_config_1.TYPE_VALUE,
1010
+ WritableStreamDefaultController: base_config_1.TYPE_VALUE,
1011
+ WritableStreamDefaultWriter: base_config_1.TYPE_VALUE,
1012
+ XMLDocument: base_config_1.TYPE_VALUE,
1013
+ XMLHttpRequestEventMap: base_config_1.TYPE,
1014
+ XMLHttpRequest: base_config_1.TYPE_VALUE,
1015
+ XMLHttpRequestEventTargetEventMap: base_config_1.TYPE,
1016
+ XMLHttpRequestEventTarget: base_config_1.TYPE_VALUE,
1017
+ XMLHttpRequestUpload: base_config_1.TYPE_VALUE,
1018
+ XMLSerializer: base_config_1.TYPE_VALUE,
1019
+ XPathEvaluator: base_config_1.TYPE_VALUE,
1020
+ XPathEvaluatorBase: base_config_1.TYPE,
1021
+ XPathExpression: base_config_1.TYPE_VALUE,
1022
+ XPathResult: base_config_1.TYPE_VALUE,
1023
+ XSLTProcessor: base_config_1.TYPE_VALUE,
1024
+ Console: base_config_1.TYPE,
1025
+ CSS: base_config_1.TYPE_VALUE,
1026
+ WebAssembly: base_config_1.TYPE_VALUE,
1027
+ BlobCallback: base_config_1.TYPE,
1028
+ CustomElementConstructor: base_config_1.TYPE,
1029
+ DecodeErrorCallback: base_config_1.TYPE,
1030
+ DecodeSuccessCallback: base_config_1.TYPE,
1031
+ ErrorCallback: base_config_1.TYPE,
1032
+ FileCallback: base_config_1.TYPE,
1033
+ FileSystemEntriesCallback: base_config_1.TYPE,
1034
+ FileSystemEntryCallback: base_config_1.TYPE,
1035
+ FrameRequestCallback: base_config_1.TYPE,
1036
+ FunctionStringCallback: base_config_1.TYPE,
1037
+ IdleRequestCallback: base_config_1.TYPE,
1038
+ IntersectionObserverCallback: base_config_1.TYPE,
1039
+ LockGrantedCallback: base_config_1.TYPE,
1040
+ MediaSessionActionHandler: base_config_1.TYPE,
1041
+ MutationCallback: base_config_1.TYPE,
1042
+ NotificationPermissionCallback: base_config_1.TYPE,
1043
+ OnBeforeUnloadEventHandlerNonNull: base_config_1.TYPE,
1044
+ OnErrorEventHandlerNonNull: base_config_1.TYPE,
1045
+ PerformanceObserverCallback: base_config_1.TYPE,
1046
+ PositionCallback: base_config_1.TYPE,
1047
+ PositionErrorCallback: base_config_1.TYPE,
1048
+ QueuingStrategySize: base_config_1.TYPE,
1049
+ RTCPeerConnectionErrorCallback: base_config_1.TYPE,
1050
+ RTCSessionDescriptionCallback: base_config_1.TYPE,
1051
+ RemotePlaybackAvailabilityCallback: base_config_1.TYPE,
1052
+ ResizeObserverCallback: base_config_1.TYPE,
1053
+ TransformerFlushCallback: base_config_1.TYPE,
1054
+ TransformerStartCallback: base_config_1.TYPE,
1055
+ TransformerTransformCallback: base_config_1.TYPE,
1056
+ UnderlyingSinkAbortCallback: base_config_1.TYPE,
1057
+ UnderlyingSinkCloseCallback: base_config_1.TYPE,
1058
+ UnderlyingSinkStartCallback: base_config_1.TYPE,
1059
+ UnderlyingSinkWriteCallback: base_config_1.TYPE,
1060
+ UnderlyingSourceCancelCallback: base_config_1.TYPE,
1061
+ UnderlyingSourcePullCallback: base_config_1.TYPE,
1062
+ UnderlyingSourceStartCallback: base_config_1.TYPE,
1063
+ VideoFrameRequestCallback: base_config_1.TYPE,
1064
+ VoidFunction: base_config_1.TYPE,
1065
+ HTMLElementTagNameMap: base_config_1.TYPE,
1066
+ HTMLElementDeprecatedTagNameMap: base_config_1.TYPE,
1067
+ SVGElementTagNameMap: base_config_1.TYPE,
1068
+ ElementTagNameMap: base_config_1.TYPE,
1069
+ AlgorithmIdentifier: base_config_1.TYPE,
1070
+ BigInteger: base_config_1.TYPE,
1071
+ BinaryData: base_config_1.TYPE,
1072
+ BlobPart: base_config_1.TYPE,
1073
+ BodyInit: base_config_1.TYPE,
1074
+ BufferSource: base_config_1.TYPE,
1075
+ COSEAlgorithmIdentifier: base_config_1.TYPE,
1076
+ CSSNumberish: base_config_1.TYPE,
1077
+ CanvasImageSource: base_config_1.TYPE,
1078
+ ClipboardItemData: base_config_1.TYPE,
1079
+ ClipboardItems: base_config_1.TYPE,
1080
+ ConstrainBoolean: base_config_1.TYPE,
1081
+ ConstrainDOMString: base_config_1.TYPE,
1082
+ ConstrainDouble: base_config_1.TYPE,
1083
+ ConstrainULong: base_config_1.TYPE,
1084
+ DOMHighResTimeStamp: base_config_1.TYPE,
1085
+ EpochTimeStamp: base_config_1.TYPE,
1086
+ EventListenerOrEventListenerObject: base_config_1.TYPE,
1087
+ Float32List: base_config_1.TYPE,
1088
+ FormDataEntryValue: base_config_1.TYPE,
1089
+ GLbitfield: base_config_1.TYPE,
1090
+ GLboolean: base_config_1.TYPE,
1091
+ GLclampf: base_config_1.TYPE,
1092
+ GLenum: base_config_1.TYPE,
1093
+ GLfloat: base_config_1.TYPE,
1094
+ GLint: base_config_1.TYPE,
1095
+ GLint64: base_config_1.TYPE,
1096
+ GLintptr: base_config_1.TYPE,
1097
+ GLsizei: base_config_1.TYPE,
1098
+ GLsizeiptr: base_config_1.TYPE,
1099
+ GLuint: base_config_1.TYPE,
1100
+ GLuint64: base_config_1.TYPE,
1101
+ HTMLOrSVGImageElement: base_config_1.TYPE,
1102
+ HTMLOrSVGScriptElement: base_config_1.TYPE,
1103
+ HashAlgorithmIdentifier: base_config_1.TYPE,
1104
+ HeadersInit: base_config_1.TYPE,
1105
+ IDBValidKey: base_config_1.TYPE,
1106
+ ImageBitmapSource: base_config_1.TYPE,
1107
+ InsertPosition: base_config_1.TYPE,
1108
+ Int32List: base_config_1.TYPE,
1109
+ LineAndPositionSetting: base_config_1.TYPE,
1110
+ MediaProvider: base_config_1.TYPE,
1111
+ MessageEventSource: base_config_1.TYPE,
1112
+ MutationRecordType: base_config_1.TYPE,
1113
+ NamedCurve: base_config_1.TYPE,
1114
+ OnBeforeUnloadEventHandler: base_config_1.TYPE,
1115
+ OnErrorEventHandler: base_config_1.TYPE,
1116
+ PerformanceEntryList: base_config_1.TYPE,
1117
+ ReadableStreamController: base_config_1.TYPE,
1118
+ ReadableStreamReadResult: base_config_1.TYPE,
1119
+ ReadableStreamReader: base_config_1.TYPE,
1120
+ RenderingContext: base_config_1.TYPE,
1121
+ RequestInfo: base_config_1.TYPE,
1122
+ TexImageSource: base_config_1.TYPE,
1123
+ TimerHandler: base_config_1.TYPE,
1124
+ Transferable: base_config_1.TYPE,
1125
+ Uint32List: base_config_1.TYPE,
1126
+ UvmEntries: base_config_1.TYPE,
1127
+ UvmEntry: base_config_1.TYPE,
1128
+ VibratePattern: base_config_1.TYPE,
1129
+ WindowProxy: base_config_1.TYPE,
1130
+ XMLHttpRequestBodyInit: base_config_1.TYPE,
1131
+ AlignSetting: base_config_1.TYPE,
1132
+ AnimationPlayState: base_config_1.TYPE,
1133
+ AnimationReplaceState: base_config_1.TYPE,
1134
+ AppendMode: base_config_1.TYPE,
1135
+ AttestationConveyancePreference: base_config_1.TYPE,
1136
+ AudioContextLatencyCategory: base_config_1.TYPE,
1137
+ AudioContextState: base_config_1.TYPE,
1138
+ AuthenticatorAttachment: base_config_1.TYPE,
1139
+ AuthenticatorTransport: base_config_1.TYPE,
1140
+ AutoKeyword: base_config_1.TYPE,
1141
+ AutomationRate: base_config_1.TYPE,
1142
+ BinaryType: base_config_1.TYPE,
1143
+ BiquadFilterType: base_config_1.TYPE,
1144
+ CanPlayTypeResult: base_config_1.TYPE,
1145
+ CanvasDirection: base_config_1.TYPE,
1146
+ CanvasFillRule: base_config_1.TYPE,
1147
+ CanvasFontKerning: base_config_1.TYPE,
1148
+ CanvasFontStretch: base_config_1.TYPE,
1149
+ CanvasFontVariantCaps: base_config_1.TYPE,
1150
+ CanvasLineCap: base_config_1.TYPE,
1151
+ CanvasLineJoin: base_config_1.TYPE,
1152
+ CanvasTextAlign: base_config_1.TYPE,
1153
+ CanvasTextBaseline: base_config_1.TYPE,
1154
+ CanvasTextRendering: base_config_1.TYPE,
1155
+ ChannelCountMode: base_config_1.TYPE,
1156
+ ChannelInterpretation: base_config_1.TYPE,
1157
+ ClientTypes: base_config_1.TYPE,
1158
+ ColorGamut: base_config_1.TYPE,
1159
+ ColorSpaceConversion: base_config_1.TYPE,
1160
+ CompositeOperation: base_config_1.TYPE,
1161
+ CompositeOperationOrAuto: base_config_1.TYPE,
1162
+ CredentialMediationRequirement: base_config_1.TYPE,
1163
+ DOMParserSupportedType: base_config_1.TYPE,
1164
+ DirectionSetting: base_config_1.TYPE,
1165
+ DisplayCaptureSurfaceType: base_config_1.TYPE,
1166
+ DistanceModelType: base_config_1.TYPE,
1167
+ DocumentReadyState: base_config_1.TYPE,
1168
+ DocumentVisibilityState: base_config_1.TYPE,
1169
+ EndOfStreamError: base_config_1.TYPE,
1170
+ EndingType: base_config_1.TYPE,
1171
+ FileSystemHandleKind: base_config_1.TYPE,
1172
+ FillMode: base_config_1.TYPE,
1173
+ FontFaceLoadStatus: base_config_1.TYPE,
1174
+ FontFaceSetLoadStatus: base_config_1.TYPE,
1175
+ FullscreenNavigationUI: base_config_1.TYPE,
1176
+ GamepadHapticActuatorType: base_config_1.TYPE,
1177
+ GamepadMappingType: base_config_1.TYPE,
1178
+ GlobalCompositeOperation: base_config_1.TYPE,
1179
+ HdrMetadataType: base_config_1.TYPE,
1180
+ IDBCursorDirection: base_config_1.TYPE,
1181
+ IDBRequestReadyState: base_config_1.TYPE,
1182
+ IDBTransactionDurability: base_config_1.TYPE,
1183
+ IDBTransactionMode: base_config_1.TYPE,
1184
+ ImageOrientation: base_config_1.TYPE,
1185
+ ImageSmoothingQuality: base_config_1.TYPE,
1186
+ IterationCompositeOperation: base_config_1.TYPE,
1187
+ KeyFormat: base_config_1.TYPE,
1188
+ KeyType: base_config_1.TYPE,
1189
+ KeyUsage: base_config_1.TYPE,
1190
+ LineAlignSetting: base_config_1.TYPE,
1191
+ LockMode: base_config_1.TYPE,
1192
+ MediaDecodingType: base_config_1.TYPE,
1193
+ MediaDeviceKind: base_config_1.TYPE,
1194
+ MediaEncodingType: base_config_1.TYPE,
1195
+ MediaKeyMessageType: base_config_1.TYPE,
1196
+ MediaKeySessionClosedReason: base_config_1.TYPE,
1197
+ MediaKeySessionType: base_config_1.TYPE,
1198
+ MediaKeyStatus: base_config_1.TYPE,
1199
+ MediaKeysRequirement: base_config_1.TYPE,
1200
+ MediaSessionAction: base_config_1.TYPE,
1201
+ MediaSessionPlaybackState: base_config_1.TYPE,
1202
+ MediaStreamTrackState: base_config_1.TYPE,
1203
+ NavigationTimingType: base_config_1.TYPE,
1204
+ NotificationDirection: base_config_1.TYPE,
1205
+ NotificationPermission: base_config_1.TYPE,
1206
+ OrientationLockType: base_config_1.TYPE,
1207
+ OrientationType: base_config_1.TYPE,
1208
+ OscillatorType: base_config_1.TYPE,
1209
+ OverSampleType: base_config_1.TYPE,
1210
+ PanningModelType: base_config_1.TYPE,
1211
+ PaymentComplete: base_config_1.TYPE,
1212
+ PermissionName: base_config_1.TYPE,
1213
+ PermissionState: base_config_1.TYPE,
1214
+ PlaybackDirection: base_config_1.TYPE,
1215
+ PositionAlignSetting: base_config_1.TYPE,
1216
+ PredefinedColorSpace: base_config_1.TYPE,
1217
+ PremultiplyAlpha: base_config_1.TYPE,
1218
+ PresentationStyle: base_config_1.TYPE,
1219
+ PublicKeyCredentialType: base_config_1.TYPE,
1220
+ PushEncryptionKeyName: base_config_1.TYPE,
1221
+ RTCBundlePolicy: base_config_1.TYPE,
1222
+ RTCDataChannelState: base_config_1.TYPE,
1223
+ RTCDegradationPreference: base_config_1.TYPE,
1224
+ RTCDtlsTransportState: base_config_1.TYPE,
1225
+ RTCEncodedVideoFrameType: base_config_1.TYPE,
1226
+ RTCErrorDetailType: base_config_1.TYPE,
1227
+ RTCIceCandidateType: base_config_1.TYPE,
1228
+ RTCIceComponent: base_config_1.TYPE,
1229
+ RTCIceConnectionState: base_config_1.TYPE,
1230
+ RTCIceCredentialType: base_config_1.TYPE,
1231
+ RTCIceGathererState: base_config_1.TYPE,
1232
+ RTCIceGatheringState: base_config_1.TYPE,
1233
+ RTCIceProtocol: base_config_1.TYPE,
1234
+ RTCIceTcpCandidateType: base_config_1.TYPE,
1235
+ RTCIceTransportPolicy: base_config_1.TYPE,
1236
+ RTCIceTransportState: base_config_1.TYPE,
1237
+ RTCPeerConnectionState: base_config_1.TYPE,
1238
+ RTCPriorityType: base_config_1.TYPE,
1239
+ RTCRtcpMuxPolicy: base_config_1.TYPE,
1240
+ RTCRtpTransceiverDirection: base_config_1.TYPE,
1241
+ RTCSctpTransportState: base_config_1.TYPE,
1242
+ RTCSdpType: base_config_1.TYPE,
1243
+ RTCSignalingState: base_config_1.TYPE,
1244
+ RTCStatsIceCandidatePairState: base_config_1.TYPE,
1245
+ RTCStatsType: base_config_1.TYPE,
1246
+ ReadyState: base_config_1.TYPE,
1247
+ RecordingState: base_config_1.TYPE,
1248
+ ReferrerPolicy: base_config_1.TYPE,
1249
+ RemotePlaybackState: base_config_1.TYPE,
1250
+ RequestCache: base_config_1.TYPE,
1251
+ RequestCredentials: base_config_1.TYPE,
1252
+ RequestDestination: base_config_1.TYPE,
1253
+ RequestMode: base_config_1.TYPE,
1254
+ RequestRedirect: base_config_1.TYPE,
1255
+ ResidentKeyRequirement: base_config_1.TYPE,
1256
+ ResizeObserverBoxOptions: base_config_1.TYPE,
1257
+ ResizeQuality: base_config_1.TYPE,
1258
+ ResponseType: base_config_1.TYPE,
1259
+ ScrollBehavior: base_config_1.TYPE,
1260
+ ScrollLogicalPosition: base_config_1.TYPE,
1261
+ ScrollRestoration: base_config_1.TYPE,
1262
+ ScrollSetting: base_config_1.TYPE,
1263
+ SecurityPolicyViolationEventDisposition: base_config_1.TYPE,
1264
+ SelectionMode: base_config_1.TYPE,
1265
+ ServiceWorkerState: base_config_1.TYPE,
1266
+ ServiceWorkerUpdateViaCache: base_config_1.TYPE,
1267
+ ShadowRootMode: base_config_1.TYPE,
1268
+ SlotAssignmentMode: base_config_1.TYPE,
1269
+ SpeechSynthesisErrorCode: base_config_1.TYPE,
1270
+ TextTrackKind: base_config_1.TYPE,
1271
+ TextTrackMode: base_config_1.TYPE,
1272
+ TouchType: base_config_1.TYPE,
1273
+ TransferFunction: base_config_1.TYPE,
1274
+ UserVerificationRequirement: base_config_1.TYPE,
1275
+ VideoColorPrimaries: base_config_1.TYPE,
1276
+ VideoFacingModeEnum: base_config_1.TYPE,
1277
+ VideoMatrixCoefficients: base_config_1.TYPE,
1278
+ VideoTransferCharacteristics: base_config_1.TYPE,
1279
+ WebGLPowerPreference: base_config_1.TYPE,
1280
+ WorkerType: base_config_1.TYPE,
1281
+ XMLHttpRequestResponseType: base_config_1.TYPE,
1282
+ };
1283
+ //# sourceMappingURL=dom.js.map