@sprucelabs/spruce-cli 17.1.6 → 17.1.7

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