@templmf/temp-solf-lmf 0.0.128 → 0.0.129

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 (2145) hide show
  1. package/esm.sh/AGENTS.md +42 -0
  2. package/esm.sh/CHANGELOG-CLI.md +53 -0
  3. package/esm.sh/CHANGELOG-SERVER.md +1138 -0
  4. package/esm.sh/CONTRIBUTING.md +62 -0
  5. package/esm.sh/Dockerfile +34 -0
  6. package/esm.sh/HOSTING.md +164 -0
  7. package/esm.sh/LICENSE +21 -0
  8. package/esm.sh/Makefile +22 -0
  9. package/esm.sh/README.md +420 -0
  10. package/esm.sh/cli/README.md +47 -0
  11. package/esm.sh/cli/cli.go +46 -0
  12. package/esm.sh/cli/command_add.go +531 -0
  13. package/esm.sh/cli/command_tidy.go +152 -0
  14. package/esm.sh/cli/npm/README.md +44 -0
  15. package/esm.sh/cli/npm/bin/esm.sh +73 -0
  16. package/esm.sh/cli/npm/install.mjs +82 -0
  17. package/esm.sh/cli/npm/package.json +6 -0
  18. package/esm.sh/cli/utils.go +81 -0
  19. package/esm.sh/cli/version.go +4 -0
  20. package/esm.sh/config.example.jsonc +129 -0
  21. package/esm.sh/config.json +33 -0
  22. package/esm.sh/go.mod +23 -0
  23. package/esm.sh/go.sum +41 -0
  24. package/esm.sh/internal/app_dir/app_dir.go +21 -0
  25. package/esm.sh/internal/deno/deno.go +177 -0
  26. package/esm.sh/internal/fetch/fetch.go +60 -0
  27. package/esm.sh/internal/importmap/importmap.go +627 -0
  28. package/esm.sh/internal/importmap/importmap_test.go +150 -0
  29. package/esm.sh/internal/importmap/meta.go +294 -0
  30. package/esm.sh/internal/importmap/scope.go +28 -0
  31. package/esm.sh/internal/jsonc/jsonc.go +81 -0
  32. package/esm.sh/internal/mime/mime.go +80 -0
  33. package/esm.sh/internal/npm/npm.go +343 -0
  34. package/esm.sh/internal/npm/npm_test.go +131 -0
  35. package/esm.sh/internal/npm/package_json.go +427 -0
  36. package/esm.sh/internal/npm_replacements/build.go +94 -0
  37. package/esm.sh/internal/npm_replacements/src/README.md +5 -0
  38. package/esm.sh/internal/npm_replacements/src/abort-controller/browser.mjs +3 -0
  39. package/esm.sh/internal/npm_replacements/src/abort-controller/index.mjs +3 -0
  40. package/esm.sh/internal/npm_replacements/src/abort-controller/polyfill.mjs +1 -0
  41. package/esm.sh/internal/npm_replacements/src/array-buffer-byte-length.mjs +1 -0
  42. package/esm.sh/internal/npm_replacements/src/array-every.mjs +1 -0
  43. package/esm.sh/internal/npm_replacements/src/array-includes.mjs +1 -0
  44. package/esm.sh/internal/npm_replacements/src/array-map.mjs +1 -0
  45. package/esm.sh/internal/npm_replacements/src/array.from.mjs +1 -0
  46. package/esm.sh/internal/npm_replacements/src/array.of.mjs +1 -0
  47. package/esm.sh/internal/npm_replacements/src/array.prototype.at.mjs +1 -0
  48. package/esm.sh/internal/npm_replacements/src/array.prototype.concat.mjs +1 -0
  49. package/esm.sh/internal/npm_replacements/src/array.prototype.copywithin.mjs +1 -0
  50. package/esm.sh/internal/npm_replacements/src/array.prototype.entries.mjs +1 -0
  51. package/esm.sh/internal/npm_replacements/src/array.prototype.every.mjs +1 -0
  52. package/esm.sh/internal/npm_replacements/src/array.prototype.fill.mjs +1 -0
  53. package/esm.sh/internal/npm_replacements/src/array.prototype.filter.mjs +1 -0
  54. package/esm.sh/internal/npm_replacements/src/array.prototype.find.mjs +1 -0
  55. package/esm.sh/internal/npm_replacements/src/array.prototype.findindex.mjs +1 -0
  56. package/esm.sh/internal/npm_replacements/src/array.prototype.findlast.mjs +1 -0
  57. package/esm.sh/internal/npm_replacements/src/array.prototype.findlastindex.mjs +1 -0
  58. package/esm.sh/internal/npm_replacements/src/array.prototype.flat.mjs +1 -0
  59. package/esm.sh/internal/npm_replacements/src/array.prototype.flatmap.mjs +1 -0
  60. package/esm.sh/internal/npm_replacements/src/array.prototype.foreach.mjs +1 -0
  61. package/esm.sh/internal/npm_replacements/src/array.prototype.includes.mjs +1 -0
  62. package/esm.sh/internal/npm_replacements/src/array.prototype.indexof.mjs +1 -0
  63. package/esm.sh/internal/npm_replacements/src/array.prototype.join.mjs +1 -0
  64. package/esm.sh/internal/npm_replacements/src/array.prototype.keys.mjs +1 -0
  65. package/esm.sh/internal/npm_replacements/src/array.prototype.lastindexof.mjs +1 -0
  66. package/esm.sh/internal/npm_replacements/src/array.prototype.map.mjs +1 -0
  67. package/esm.sh/internal/npm_replacements/src/array.prototype.push.mjs +1 -0
  68. package/esm.sh/internal/npm_replacements/src/array.prototype.reduce.mjs +1 -0
  69. package/esm.sh/internal/npm_replacements/src/array.prototype.reduceright.mjs +1 -0
  70. package/esm.sh/internal/npm_replacements/src/array.prototype.slice.mjs +1 -0
  71. package/esm.sh/internal/npm_replacements/src/array.prototype.some.mjs +1 -0
  72. package/esm.sh/internal/npm_replacements/src/array.prototype.splice.mjs +1 -0
  73. package/esm.sh/internal/npm_replacements/src/array.prototype.toreversed.mjs +1 -0
  74. package/esm.sh/internal/npm_replacements/src/array.prototype.tosorted.mjs +1 -0
  75. package/esm.sh/internal/npm_replacements/src/array.prototype.tospliced.mjs +1 -0
  76. package/esm.sh/internal/npm_replacements/src/array.prototype.unshift.mjs +1 -0
  77. package/esm.sh/internal/npm_replacements/src/array.prototype.values.mjs +1 -0
  78. package/esm.sh/internal/npm_replacements/src/array.prototype.with.mjs +1 -0
  79. package/esm.sh/internal/npm_replacements/src/arraybuffer.prototype.slice.mjs +1 -0
  80. package/esm.sh/internal/npm_replacements/src/call-bind.mjs +1 -0
  81. package/esm.sh/internal/npm_replacements/src/clone-regexp.mjs +26 -0
  82. package/esm.sh/internal/npm_replacements/src/concat-map.mjs +1 -0
  83. package/esm.sh/internal/npm_replacements/src/cross-fetch/index.mjs +2 -0
  84. package/esm.sh/internal/npm_replacements/src/cross-fetch/polyfill.mjs +1 -0
  85. package/esm.sh/internal/npm_replacements/src/data-view-buffer.mjs +1 -0
  86. package/esm.sh/internal/npm_replacements/src/data-view-byte-length.mjs +2 -0
  87. package/esm.sh/internal/npm_replacements/src/data-view-byte-offset.mjs +2 -0
  88. package/esm.sh/internal/npm_replacements/src/deep-extend.mjs +1 -0
  89. package/esm.sh/internal/npm_replacements/src/defaults.mjs +2 -0
  90. package/esm.sh/internal/npm_replacements/src/define-accessor-property.mjs +2 -0
  91. package/esm.sh/internal/npm_replacements/src/define-data-property.mjs +3 -0
  92. package/esm.sh/internal/npm_replacements/src/define-properties.mjs +2 -0
  93. package/esm.sh/internal/npm_replacements/src/define-property.mjs +1 -0
  94. package/esm.sh/internal/npm_replacements/src/es-aggregate-error.mjs +2 -0
  95. package/esm.sh/internal/npm_replacements/src/es-define-property.mjs +1 -0
  96. package/esm.sh/internal/npm_replacements/src/es-errors/eval.mjs +1 -0
  97. package/esm.sh/internal/npm_replacements/src/es-errors/index.mjs +1 -0
  98. package/esm.sh/internal/npm_replacements/src/es-errors/range.mjs +1 -0
  99. package/esm.sh/internal/npm_replacements/src/es-errors/ref.mjs +1 -0
  100. package/esm.sh/internal/npm_replacements/src/es-errors/syntax.mjs +1 -0
  101. package/esm.sh/internal/npm_replacements/src/es-errors/type.mjs +1 -0
  102. package/esm.sh/internal/npm_replacements/src/es-errors/uri.mjs +1 -0
  103. package/esm.sh/internal/npm_replacements/src/es-get-iterator.mjs +1 -0
  104. package/esm.sh/internal/npm_replacements/src/es-set-tostringtag.mjs +1 -0
  105. package/esm.sh/internal/npm_replacements/src/es-shim-unscopables.mjs +5 -0
  106. package/esm.sh/internal/npm_replacements/src/es6-object-assign.mjs +2 -0
  107. package/esm.sh/internal/npm_replacements/src/esm-env.mjs +3 -0
  108. package/esm.sh/internal/npm_replacements/src/esm-env_browser.mjs +3 -0
  109. package/esm.sh/internal/npm_replacements/src/esm-env_node.mjs +3 -0
  110. package/esm.sh/internal/npm_replacements/src/esm-env_node_dev.mjs +3 -0
  111. package/esm.sh/internal/npm_replacements/src/extend-shallow.mjs +2 -0
  112. package/esm.sh/internal/npm_replacements/src/filter-array.mjs +1 -0
  113. package/esm.sh/internal/npm_replacements/src/for-each.mjs +9 -0
  114. package/esm.sh/internal/npm_replacements/src/fsevents.mjs +14 -0
  115. package/esm.sh/internal/npm_replacements/src/function-bind.mjs +1 -0
  116. package/esm.sh/internal/npm_replacements/src/function.prototype.name.mjs +3 -0
  117. package/esm.sh/internal/npm_replacements/src/functions-have-names.mjs +2 -0
  118. package/esm.sh/internal/npm_replacements/src/get-symbol-description.mjs +2 -0
  119. package/esm.sh/internal/npm_replacements/src/global/console.mjs +1 -0
  120. package/esm.sh/internal/npm_replacements/src/global/document.mjs +1 -0
  121. package/esm.sh/internal/npm_replacements/src/global/index.mjs +1 -0
  122. package/esm.sh/internal/npm_replacements/src/global/process.mjs +1 -0
  123. package/esm.sh/internal/npm_replacements/src/global/window.mjs +1 -0
  124. package/esm.sh/internal/npm_replacements/src/globalthis.mjs +3 -0
  125. package/esm.sh/internal/npm_replacements/src/gopd.mjs +2 -0
  126. package/esm.sh/internal/npm_replacements/src/has-own-prop.mjs +1 -0
  127. package/esm.sh/internal/npm_replacements/src/has-own.mjs +1 -0
  128. package/esm.sh/internal/npm_replacements/src/has-property-descriptors.mjs +1 -0
  129. package/esm.sh/internal/npm_replacements/src/has-proto.mjs +1 -0
  130. package/esm.sh/internal/npm_replacements/src/has-symbols.mjs +1 -0
  131. package/esm.sh/internal/npm_replacements/src/has-tostringtag.mjs +1 -0
  132. package/esm.sh/internal/npm_replacements/src/has.mjs +2 -0
  133. package/esm.sh/internal/npm_replacements/src/hasown.mjs +1 -0
  134. package/esm.sh/internal/npm_replacements/src/indent-string.mjs +2 -0
  135. package/esm.sh/internal/npm_replacements/src/index-of.mjs +1 -0
  136. package/esm.sh/internal/npm_replacements/src/inherits.mjs +14 -0
  137. package/esm.sh/internal/npm_replacements/src/is-array-buffer.mjs +1 -0
  138. package/esm.sh/internal/npm_replacements/src/is-boolean-object.mjs +1 -0
  139. package/esm.sh/internal/npm_replacements/src/is-date-object.mjs +1 -0
  140. package/esm.sh/internal/npm_replacements/src/is-even.mjs +1 -0
  141. package/esm.sh/internal/npm_replacements/src/is-nan.mjs +1 -0
  142. package/esm.sh/internal/npm_replacements/src/is-negative-zero.mjs +1 -0
  143. package/esm.sh/internal/npm_replacements/src/is-npm.mjs +3 -0
  144. package/esm.sh/internal/npm_replacements/src/is-number-object.mjs +1 -0
  145. package/esm.sh/internal/npm_replacements/src/is-number.mjs +2 -0
  146. package/esm.sh/internal/npm_replacements/src/is-odd.mjs +1 -0
  147. package/esm.sh/internal/npm_replacements/src/is-plain-object.mjs +4 -0
  148. package/esm.sh/internal/npm_replacements/src/is-primitive.mjs +1 -0
  149. package/esm.sh/internal/npm_replacements/src/is-regexp.mjs +1 -0
  150. package/esm.sh/internal/npm_replacements/src/is-shared-array-buffer.mjs +1 -0
  151. package/esm.sh/internal/npm_replacements/src/is-string.mjs +1 -0
  152. package/esm.sh/internal/npm_replacements/src/is-whitespace.mjs +1 -0
  153. package/esm.sh/internal/npm_replacements/src/iterate-iterator.mjs +11 -0
  154. package/esm.sh/internal/npm_replacements/src/iterate-value.mjs +10 -0
  155. package/esm.sh/internal/npm_replacements/src/left-pad.mjs +1 -0
  156. package/esm.sh/internal/npm_replacements/src/node-fetch.mjs +18 -0
  157. package/esm.sh/internal/npm_replacements/src/node-fetch_deno.mjs +30 -0
  158. package/esm.sh/internal/npm_replacements/src/node.extend.mjs +5 -0
  159. package/esm.sh/internal/npm_replacements/src/object-assign.mjs +1 -0
  160. package/esm.sh/internal/npm_replacements/src/object-is.mjs +1 -0
  161. package/esm.sh/internal/npm_replacements/src/object-keys.mjs +1 -0
  162. package/esm.sh/internal/npm_replacements/src/object.assign.mjs +1 -0
  163. package/esm.sh/internal/npm_replacements/src/object.entries.mjs +1 -0
  164. package/esm.sh/internal/npm_replacements/src/object.fromentries.mjs +1 -0
  165. package/esm.sh/internal/npm_replacements/src/object.getownpropertydescriptors.mjs +1 -0
  166. package/esm.sh/internal/npm_replacements/src/object.getprototypeof.mjs +1 -0
  167. package/esm.sh/internal/npm_replacements/src/object.hasown.mjs +1 -0
  168. package/esm.sh/internal/npm_replacements/src/object.keys.mjs +1 -0
  169. package/esm.sh/internal/npm_replacements/src/object.values.mjs +1 -0
  170. package/esm.sh/internal/npm_replacements/src/pad-left.mjs +1 -0
  171. package/esm.sh/internal/npm_replacements/src/pad-right.mjs +1 -0
  172. package/esm.sh/internal/npm_replacements/src/promise.allsettled.mjs +2 -0
  173. package/esm.sh/internal/npm_replacements/src/promise.any.mjs +2 -0
  174. package/esm.sh/internal/npm_replacements/src/promise.prototype.finally.mjs +2 -0
  175. package/esm.sh/internal/npm_replacements/src/reflect.getprototypeof.mjs +2 -0
  176. package/esm.sh/internal/npm_replacements/src/reflect.ownkeys.mjs +2 -0
  177. package/esm.sh/internal/npm_replacements/src/regexp.prototype.flags.mjs +1 -0
  178. package/esm.sh/internal/npm_replacements/src/slash.mjs +1 -0
  179. package/esm.sh/internal/npm_replacements/src/string.prototype.at.mjs +1 -0
  180. package/esm.sh/internal/npm_replacements/src/string.prototype.codepointat.mjs +1 -0
  181. package/esm.sh/internal/npm_replacements/src/string.prototype.endswith.mjs +1 -0
  182. package/esm.sh/internal/npm_replacements/src/string.prototype.includes.mjs +1 -0
  183. package/esm.sh/internal/npm_replacements/src/string.prototype.iswellformed.mjs +1 -0
  184. package/esm.sh/internal/npm_replacements/src/string.prototype.lastindexof.mjs +1 -0
  185. package/esm.sh/internal/npm_replacements/src/string.prototype.matchall.mjs +1 -0
  186. package/esm.sh/internal/npm_replacements/src/string.prototype.padend.mjs +1 -0
  187. package/esm.sh/internal/npm_replacements/src/string.prototype.padstart.mjs +1 -0
  188. package/esm.sh/internal/npm_replacements/src/string.prototype.repeat.mjs +1 -0
  189. package/esm.sh/internal/npm_replacements/src/string.prototype.replaceall.mjs +1 -0
  190. package/esm.sh/internal/npm_replacements/src/string.prototype.split.mjs +1 -0
  191. package/esm.sh/internal/npm_replacements/src/string.prototype.startswith.mjs +1 -0
  192. package/esm.sh/internal/npm_replacements/src/string.prototype.substr.mjs +1 -0
  193. package/esm.sh/internal/npm_replacements/src/string.prototype.towellformed.mjs +1 -0
  194. package/esm.sh/internal/npm_replacements/src/string.prototype.trim.mjs +1 -0
  195. package/esm.sh/internal/npm_replacements/src/string.prototype.trimend.mjs +1 -0
  196. package/esm.sh/internal/npm_replacements/src/string.prototype.trimleft.mjs +1 -0
  197. package/esm.sh/internal/npm_replacements/src/string.prototype.trimright.mjs +1 -0
  198. package/esm.sh/internal/npm_replacements/src/string.prototype.trimstart.mjs +1 -0
  199. package/esm.sh/internal/npm_replacements/src/string.raw.mjs +1 -0
  200. package/esm.sh/internal/npm_replacements/src/symbol.prototype.description.mjs +2 -0
  201. package/esm.sh/internal/npm_replacements/src/typed-array-buffer.mjs +2 -0
  202. package/esm.sh/internal/npm_replacements/src/typed-array-byte-length.mjs +2 -0
  203. package/esm.sh/internal/npm_replacements/src/typed-array-byte-offset.mjs +2 -0
  204. package/esm.sh/internal/npm_replacements/src/typed-array-length.mjs +2 -0
  205. package/esm.sh/internal/npm_replacements/src/typedarray.prototype.slice.mjs +2 -0
  206. package/esm.sh/internal/npm_replacements/src/xtend.mjs +1 -0
  207. package/esm.sh/internal/storage/storage.go +46 -0
  208. package/esm.sh/internal/storage/storage_fs.go +190 -0
  209. package/esm.sh/internal/storage/storage_fs_test.go +163 -0
  210. package/esm.sh/internal/storage/storage_s3.go +463 -0
  211. package/esm.sh/internal/storage/storage_s3_test.go +142 -0
  212. package/esm.sh/internal/storage/storage_s3_utils.go +55 -0
  213. package/esm.sh/main +0 -0
  214. package/esm.sh/main.go +9 -0
  215. package/esm.sh/scripts/deploy-ci.sh +100 -0
  216. package/esm.sh/scripts/deploy-vm.sh +85 -0
  217. package/esm.sh/scripts/deploy.sh +141 -0
  218. package/esm.sh/server/build.go +1661 -0
  219. package/esm.sh/server/build_analyzer.go +210 -0
  220. package/esm.sh/server/build_args.go +294 -0
  221. package/esm.sh/server/build_args_test.go +52 -0
  222. package/esm.sh/server/build_meta.go +168 -0
  223. package/esm.sh/server/build_meta_test.go +35 -0
  224. package/esm.sh/server/build_queue.go +187 -0
  225. package/esm.sh/server/build_resolver.go +1447 -0
  226. package/esm.sh/server/build_rewriter.go +67 -0
  227. package/esm.sh/server/build_target.go +46 -0
  228. package/esm.sh/server/cache.go +136 -0
  229. package/esm.sh/server/cache_test.go +65 -0
  230. package/esm.sh/server/cjs_module_lexer.go +299 -0
  231. package/esm.sh/server/config.go +335 -0
  232. package/esm.sh/server/config_test.go +278 -0
  233. package/esm.sh/server/consts.go +146 -0
  234. package/esm.sh/server/db.go +13 -0
  235. package/esm.sh/server/db_bolt.go +50 -0
  236. package/esm.sh/server/debug.go +53 -0
  237. package/esm.sh/server/disk.go +67 -0
  238. package/esm.sh/server/dts_lexer.go +272 -0
  239. package/esm.sh/server/dts_lexer_test.go +96 -0
  240. package/esm.sh/server/dts_transform.go +281 -0
  241. package/esm.sh/server/embed/favicon.ico +0 -0
  242. package/esm.sh/server/embed/images/banner.svg +8 -0
  243. package/esm.sh/server/embed/images/cloudflare.svg +1 -0
  244. package/esm.sh/server/embed/images/fig-x-typescript-types.png +0 -0
  245. package/esm.sh/server/embed/index.html +392 -0
  246. package/esm.sh/server/embed/install.sh +109 -0
  247. package/esm.sh/server/embed/node-runtime.tgz +0 -0
  248. package/esm.sh/server/embed/tsx.ts +110 -0
  249. package/esm.sh/server/esmd/main.go +9 -0
  250. package/esm.sh/server/git.go +92 -0
  251. package/esm.sh/server/git_test.go +39 -0
  252. package/esm.sh/server/legacy_router.go +266 -0
  253. package/esm.sh/server/loader.go +97 -0
  254. package/esm.sh/server/loader_implements.go +121 -0
  255. package/esm.sh/server/npmrc.go +767 -0
  256. package/esm.sh/server/npmrc_test.go +101 -0
  257. package/esm.sh/server/path.go +400 -0
  258. package/esm.sh/server/path_test.go +46 -0
  259. package/esm.sh/server/release.go +25 -0
  260. package/esm.sh/server/router.go +1623 -0
  261. package/esm.sh/server/router_test.go +35 -0
  262. package/esm.sh/server/server.go +202 -0
  263. package/esm.sh/server/transform.go +231 -0
  264. package/esm.sh/server/unenv.go +221 -0
  265. package/esm.sh/server/utils.go +191 -0
  266. package/esm.sh/test/.template/deno.json +5 -0
  267. package/esm.sh/test/.template/test.ts +11 -0
  268. package/esm.sh/test/bad-url/test.ts +16 -0
  269. package/esm.sh/test/bootstrap.ts +153 -0
  270. package/esm.sh/test/build-args/alias.test.ts +11 -0
  271. package/esm.sh/test/build-args/bundle.test.ts +28 -0
  272. package/esm.sh/test/build-args/deps.test.ts +42 -0
  273. package/esm.sh/test/build-args/dev.test.ts +17 -0
  274. package/esm.sh/test/build-args/exports.test.ts +25 -0
  275. package/esm.sh/test/build-args/external.test.ts +113 -0
  276. package/esm.sh/test/build-args/package-css.test.ts +13 -0
  277. package/esm.sh/test/build-args/target.test.ts +67 -0
  278. package/esm.sh/test/build-args/web-worker.test.ts +44 -0
  279. package/esm.sh/test/builtin-scripts/test.ts +25 -0
  280. package/esm.sh/test/common/ajv.test.ts +13 -0
  281. package/esm.sh/test/common/axios.test.ts +8 -0
  282. package/esm.sh/test/common/esbuild.test.ts +8 -0
  283. package/esm.sh/test/common/graphgl.test.ts +24 -0
  284. package/esm.sh/test/common/html-to-react.tsx +14 -0
  285. package/esm.sh/test/common/io-ts.test.ts +28 -0
  286. package/esm.sh/test/common/jotail.test.ts +6 -0
  287. package/esm.sh/test/common/marked.test.ts +22 -0
  288. package/esm.sh/test/common/micromark.test.ts +31 -0
  289. package/esm.sh/test/common/misc.test.ts +15 -0
  290. package/esm.sh/test/common/prismjs.test.ts +14 -0
  291. package/esm.sh/test/common/rc-util.test.ts +10 -0
  292. package/esm.sh/test/common/sanitize-html.test.ts +15 -0
  293. package/esm.sh/test/common/terser.test.ts +10 -0
  294. package/esm.sh/test/common/unocss.test.ts +36 -0
  295. package/esm.sh/test/common/webtorrent.test.ts +7 -0
  296. package/esm.sh/test/cors/cors.test.ts +37 -0
  297. package/esm.sh/test/date-version/test.ts +227 -0
  298. package/esm.sh/test/deno/express.test.ts +30 -0
  299. package/esm.sh/test/deno/postcss.test.ts +41 -0
  300. package/esm.sh/test/dts/dts-header.test.ts +11 -0
  301. package/esm.sh/test/dts/types-only.test.ts +14 -0
  302. package/esm.sh/test/dts/types-versions.test.ts +14 -0
  303. package/esm.sh/test/empty-mjs-module/test.ts +25 -0
  304. package/esm.sh/test/fixed-url/test.ts +197 -0
  305. package/esm.sh/test/gh/fluentui-emoji.test.ts +10 -0
  306. package/esm.sh/test/gh/issue-1099.test.ts +8 -0
  307. package/esm.sh/test/gh/jsr.test.ts +8 -0
  308. package/esm.sh/test/gh/phospor-icons.test.tsx +12 -0
  309. package/esm.sh/test/gh/streamlit.test.ts +7 -0
  310. package/esm.sh/test/gh/tslib.test.ts +7 -0
  311. package/esm.sh/test/import-json/test.ts +51 -0
  312. package/esm.sh/test/issue-1046/test.ts +16 -0
  313. package/esm.sh/test/issue-1145/test.ts +19 -0
  314. package/esm.sh/test/issue-1161/test.ts +11 -0
  315. package/esm.sh/test/issue-1166/test.ts +12 -0
  316. package/esm.sh/test/issue-1178/test.ts +32 -0
  317. package/esm.sh/test/issue-1191/test.ts +28 -0
  318. package/esm.sh/test/issue-1199/test.ts +10 -0
  319. package/esm.sh/test/issue-1217/test.ts +29 -0
  320. package/esm.sh/test/issue-1233/test.ts +14 -0
  321. package/esm.sh/test/issue-1285/test.ts +12 -0
  322. package/esm.sh/test/issue-1367/test.ts +43 -0
  323. package/esm.sh/test/issue-165/test.ts +11 -0
  324. package/esm.sh/test/issue-362/test.ts +9 -0
  325. package/esm.sh/test/issue-363/test.ts +8 -0
  326. package/esm.sh/test/issue-381/test.ts +9 -0
  327. package/esm.sh/test/issue-389/test.ts +8 -0
  328. package/esm.sh/test/issue-392/test.ts +7 -0
  329. package/esm.sh/test/issue-400/test.ts +7 -0
  330. package/esm.sh/test/issue-410/test.ts +9 -0
  331. package/esm.sh/test/issue-411/test.ts +17 -0
  332. package/esm.sh/test/issue-417/test.ts +8 -0
  333. package/esm.sh/test/issue-420/deno.json +8 -0
  334. package/esm.sh/test/issue-420/test.ts +17 -0
  335. package/esm.sh/test/issue-422/test.ts +8 -0
  336. package/esm.sh/test/issue-454/test.ts +7 -0
  337. package/esm.sh/test/issue-464/test.ts +12 -0
  338. package/esm.sh/test/issue-483/test.ts +7 -0
  339. package/esm.sh/test/issue-497/test.ts +14 -0
  340. package/esm.sh/test/issue-502/test.ts +7 -0
  341. package/esm.sh/test/issue-503/test.ts +7 -0
  342. package/esm.sh/test/issue-512/test.ts +11 -0
  343. package/esm.sh/test/issue-520/test.ts +7 -0
  344. package/esm.sh/test/issue-521/test.ts +7 -0
  345. package/esm.sh/test/issue-527/test.ts +7 -0
  346. package/esm.sh/test/issue-553/test.ts +7 -0
  347. package/esm.sh/test/issue-557/test.ts +7 -0
  348. package/esm.sh/test/issue-562/test.ts +7 -0
  349. package/esm.sh/test/issue-566/test.ts +7 -0
  350. package/esm.sh/test/issue-572/test.ts +7 -0
  351. package/esm.sh/test/issue-575/test.ts +21 -0
  352. package/esm.sh/test/issue-576/test.ts +8 -0
  353. package/esm.sh/test/issue-577/test.ts +14 -0
  354. package/esm.sh/test/issue-578/test.ts +11 -0
  355. package/esm.sh/test/issue-580/test.ts +11 -0
  356. package/esm.sh/test/issue-581/test.ts +10 -0
  357. package/esm.sh/test/issue-583/test.ts +9 -0
  358. package/esm.sh/test/issue-588/test.ts +7 -0
  359. package/esm.sh/test/issue-589/test.ts +16 -0
  360. package/esm.sh/test/issue-591/test.ts +7 -0
  361. package/esm.sh/test/issue-592/test.ts +7 -0
  362. package/esm.sh/test/issue-593/test.ts +9 -0
  363. package/esm.sh/test/issue-594/test.ts +7 -0
  364. package/esm.sh/test/issue-596/test.ts +6 -0
  365. package/esm.sh/test/issue-599/test.ts +9 -0
  366. package/esm.sh/test/issue-601/test.ts +7 -0
  367. package/esm.sh/test/issue-602/test.ts +24 -0
  368. package/esm.sh/test/issue-606/test.ts +25 -0
  369. package/esm.sh/test/issue-611/test.ts +7 -0
  370. package/esm.sh/test/issue-620/test.ts +8 -0
  371. package/esm.sh/test/issue-627/test.ts +13 -0
  372. package/esm.sh/test/issue-628/test.ts +7 -0
  373. package/esm.sh/test/issue-629/test.ts +10 -0
  374. package/esm.sh/test/issue-633/test.ts +7 -0
  375. package/esm.sh/test/issue-638/test.ts +14 -0
  376. package/esm.sh/test/issue-639/test.ts +14 -0
  377. package/esm.sh/test/issue-640/test.ts +17 -0
  378. package/esm.sh/test/issue-642/test.ts +14 -0
  379. package/esm.sh/test/issue-649/test.ts +20 -0
  380. package/esm.sh/test/issue-659/test.ts +7 -0
  381. package/esm.sh/test/issue-671/test.ts +23 -0
  382. package/esm.sh/test/issue-691/test.ts +7 -0
  383. package/esm.sh/test/issue-705/test.ts +8 -0
  384. package/esm.sh/test/issue-711/test.ts +16 -0
  385. package/esm.sh/test/issue-724/test.ts +11 -0
  386. package/esm.sh/test/issue-728/test.ts +12 -0
  387. package/esm.sh/test/issue-732/test.ts +12 -0
  388. package/esm.sh/test/issue-741/test.ts +27 -0
  389. package/esm.sh/test/issue-743/test.ts +8 -0
  390. package/esm.sh/test/issue-750/test.ts +19 -0
  391. package/esm.sh/test/issue-754/test.ts +24 -0
  392. package/esm.sh/test/issue-761/test.ts +7 -0
  393. package/esm.sh/test/issue-763/test.ts +13 -0
  394. package/esm.sh/test/issue-765/test.ts +18 -0
  395. package/esm.sh/test/issue-787/test.ts +8 -0
  396. package/esm.sh/test/issue-791/test.ts +7 -0
  397. package/esm.sh/test/issue-808/test.ts +7 -0
  398. package/esm.sh/test/issue-817/deno.json +13 -0
  399. package/esm.sh/test/issue-817/test.ts +7 -0
  400. package/esm.sh/test/issue-840/test.ts +11 -0
  401. package/esm.sh/test/issue-847/deno.json +5 -0
  402. package/esm.sh/test/issue-847/test.ts +8 -0
  403. package/esm.sh/test/issue-888/test.ts +15 -0
  404. package/esm.sh/test/issue-907/test.ts +7 -0
  405. package/esm.sh/test/jsr/hono.test.ts +9 -0
  406. package/esm.sh/test/jsr/other.ts +6 -0
  407. package/esm.sh/test/jsr/std.test.ts +20 -0
  408. package/esm.sh/test/legacy-routes/test.ts +178 -0
  409. package/esm.sh/test/mdx/mdx.test.ts +28 -0
  410. package/esm.sh/test/meta/meta.test.ts +47 -0
  411. package/esm.sh/test/node-polyfill/browser-excluded.test.ts +21 -0
  412. package/esm.sh/test/node-polyfill/polyfill.test.ts +10 -0
  413. package/esm.sh/test/npm-replacements/test.ts +11 -0
  414. package/esm.sh/test/pkg.pr.new/test.ts +23 -0
  415. package/esm.sh/test/preact/deno.json +10 -0
  416. package/esm.sh/test/preact/swr.test.tsx +26 -0
  417. package/esm.sh/test/preact/test.tsx +32 -0
  418. package/esm.sh/test/raw/raw.test.ts +19 -0
  419. package/esm.sh/test/react-17/deno.json +8 -0
  420. package/esm.sh/test/react-17/test.tsx +17 -0
  421. package/esm.sh/test/react-18/deno.json +8 -0
  422. package/esm.sh/test/react-18/dev.test.tsx +17 -0
  423. package/esm.sh/test/react-18/ssr.test.tsx +17 -0
  424. package/esm.sh/test/react-18/stream-ssr.test.tsx +18 -0
  425. package/esm.sh/test/scoped-fork/test.ts +36 -0
  426. package/esm.sh/test/solid-js-1.5/deno.json +9 -0
  427. package/esm.sh/test/solid-js-1.5/test.ts +49 -0
  428. package/esm.sh/test/solid-js-1.6/deno.json +9 -0
  429. package/esm.sh/test/solid-js-1.6/test.ts +56 -0
  430. package/esm.sh/test/solid-js-refresh/browser.test.ts +27 -0
  431. package/esm.sh/test/splitting/splitting.test.ts +7 -0
  432. package/esm.sh/test/svelte-4/svelte-compiler.test.ts +49 -0
  433. package/esm.sh/test/svelte-4/svelte-runtime.test.ts +16 -0
  434. package/esm.sh/test/svelte-5/svelte-compiler.test.ts +48 -0
  435. package/esm.sh/test/svelte-5/svelte-runtime.test.ts +7 -0
  436. package/esm.sh/test/transform/transform.test.ts +59 -0
  437. package/esm.sh/test/typescript/test.ts +21 -0
  438. package/esm.sh/test/valtown/gh.test.ts +9 -0
  439. package/esm.sh/test/valtown/test.ts +9 -0
  440. package/esm.sh/test/vue/sfc-compiler.test.ts +21 -0
  441. package/esm.sh/test/vue/ssr.test.ts +15 -0
  442. package/esm.sh/test/vue/transfrom-sfc-on-fly.test.ts +14 -0
  443. package/esm.sh/web/README.md +94 -0
  444. package/esm.sh/web/debug.go +11 -0
  445. package/esm.sh/web/embed.go +6 -0
  446. package/esm.sh/web/handler.go +1044 -0
  447. package/esm.sh/web/internal/hmr.js +169 -0
  448. package/esm.sh/web/internal/loader.js +168 -0
  449. package/esm.sh/web/internal/prefresh.js +53 -0
  450. package/esm.sh/web/internal/refresh.js +26 -0
  451. package/esm.sh/web/internal/vdr.js +19 -0
  452. package/esm.sh/web/release.go +8 -0
  453. package/esm.sh/web/utils.go +71 -0
  454. package/esm.sh/web/worker.go +166 -0
  455. package/esm.sh/~/.esmd/bin/cjs-module-lexer-1.0.8 +0 -0
  456. package/esm.sh/~/.esmd/log/server-20260609.log +18 -0
  457. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/README.md +15 -0
  458. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/canary.d.ts +129 -0
  459. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/compiler-runtime.d.ts +4 -0
  460. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/experimental.d.ts +184 -0
  461. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/global.d.ts +166 -0
  462. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/index.d.ts +4369 -0
  463. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-dev-runtime.d.ts +33 -0
  464. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/jsx-runtime.d.ts +24 -0
  465. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/package.json +210 -0
  466. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/canary.d.ts +129 -0
  467. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/experimental.d.ts +184 -0
  468. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/global.d.ts +166 -0
  469. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/index.d.ts +4356 -0
  470. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-dev-runtime.d.ts +33 -0
  471. package/esm.sh/~/.esmd/npm/@types/react@19.2.17/node_modules/@types/react/ts5.0/jsx-runtime.d.ts +24 -0
  472. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/README.md +13 -0
  473. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.js +1972 -0
  474. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.cjs.prod.js +1822 -0
  475. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.d.ts +1450 -0
  476. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.js +12857 -0
  477. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-browser.prod.js +7 -0
  478. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js +2011 -0
  479. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.js +12910 -0
  480. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/dist/runtime-dom.global.prod.js +7 -0
  481. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/index.js +7 -0
  482. package/esm.sh/~/.esmd/npm/@vue/runtime-dom@3.5.35/node_modules/@vue/runtime-dom/package.json +60 -0
  483. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/CHANGES.md +3340 -0
  484. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/README.md +468 -0
  485. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SECURITY.md +19 -0
  486. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/SUPPORTED_LANGUAGES.md +264 -0
  487. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_10_UPGRADE.md +58 -0
  488. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/VERSION_11_UPGRADE.md +203 -0
  489. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.d.ts +3 -0
  490. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/common.js +4 -0
  491. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.d.ts +3 -0
  492. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/core.js +4 -0
  493. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/index.js +4 -0
  494. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js +537 -0
  495. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/1c.js.js +11 -0
  496. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js +82 -0
  497. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/abnf.js.js +11 -0
  498. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js +92 -0
  499. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/accesslog.js.js +11 -0
  500. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js +153 -0
  501. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/actionscript.js.js +11 -0
  502. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js +265 -0
  503. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ada.js.js +11 -0
  504. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js +178 -0
  505. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/angelscript.js.js +11 -0
  506. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js +101 -0
  507. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/apache.js.js +11 -0
  508. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js +149 -0
  509. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/applescript.js.js +11 -0
  510. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js +361 -0
  511. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arcade.js.js +11 -0
  512. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js +970 -0
  513. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/arduino.js.js +11 -0
  514. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js +124 -0
  515. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/armasm.js.js +11 -0
  516. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js +261 -0
  517. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/asciidoc.js.js +11 -0
  518. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js +230 -0
  519. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/aspectj.js.js +11 -0
  520. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js +75 -0
  521. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autohotkey.js.js +11 -0
  522. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js +178 -0
  523. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/autoit.js.js +11 -0
  524. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js +78 -0
  525. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/avrasm.js.js +11 -0
  526. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js +67 -0
  527. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/awk.js.js +11 -0
  528. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js +188 -0
  529. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/axapta.js.js +11 -0
  530. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js +391 -0
  531. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bash.js.js +11 -0
  532. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js +229 -0
  533. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/basic.js.js +11 -0
  534. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js +38 -0
  535. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/bnf.js.js +11 -0
  536. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js +54 -0
  537. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/brainfuck.js.js +11 -0
  538. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js +318 -0
  539. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/c.js.js +11 -0
  540. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js +159 -0
  541. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cal.js.js +11 -0
  542. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js +99 -0
  543. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/capnproto.js.js +11 -0
  544. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js +139 -0
  545. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ceylon.js.js +11 -0
  546. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js +67 -0
  547. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clean.js.js +11 -0
  548. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js +27 -0
  549. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure-repl.js.js +11 -0
  550. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js +184 -0
  551. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/clojure.js.js +11 -0
  552. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js +63 -0
  553. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cmake.js.js +11 -0
  554. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js +366 -0
  555. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coffeescript.js.js +11 -0
  556. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js +445 -0
  557. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/coq.js.js +11 -0
  558. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js +140 -0
  559. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cos.js.js +11 -0
  560. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js +568 -0
  561. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/cpp.js.js +11 -0
  562. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js +100 -0
  563. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crmsh.js.js +11 -0
  564. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js +311 -0
  565. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/crystal.js.js +11 -0
  566. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js +400 -0
  567. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csharp.js.js +11 -0
  568. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js +57 -0
  569. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/csp.js.js +11 -0
  570. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js +738 -0
  571. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/css.js.js +11 -0
  572. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js +271 -0
  573. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/d.js.js +11 -0
  574. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js +262 -0
  575. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dart.js.js +11 -0
  576. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js +230 -0
  577. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/delphi.js.js +11 -0
  578. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js +62 -0
  579. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/diff.js.js +11 -0
  580. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js +75 -0
  581. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/django.js.js +11 -0
  582. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js +78 -0
  583. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dns.js.js +11 -0
  584. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js +44 -0
  585. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dockerfile.js.js +11 -0
  586. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js +166 -0
  587. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dos.js.js +11 -0
  588. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js +66 -0
  589. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dsconfig.js.js +11 -0
  590. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js +157 -0
  591. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dts.js.js +11 -0
  592. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js +47 -0
  593. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/dust.js.js +11 -0
  594. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js +53 -0
  595. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ebnf.js.js +11 -0
  596. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js +279 -0
  597. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elixir.js.js +11 -0
  598. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js +143 -0
  599. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/elm.js.js +11 -0
  600. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js +29 -0
  601. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erb.js.js +11 -0
  602. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js +54 -0
  603. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang-repl.js.js +11 -0
  604. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js +191 -0
  605. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/erlang.js.js +11 -0
  606. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js +544 -0
  607. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/excel.js.js +11 -0
  608. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js +39 -0
  609. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fix.js.js +11 -0
  610. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js +79 -0
  611. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/flix.js.js +11 -0
  612. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js +573 -0
  613. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fortran.js.js +11 -0
  614. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js +627 -0
  615. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/fsharp.js.js +11 -0
  616. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js +181 -0
  617. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gams.js.js +11 -0
  618. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js +306 -0
  619. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gauss.js.js +11 -0
  620. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js +80 -0
  621. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gcode.js.js +11 -0
  622. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js +49 -0
  623. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gherkin.js.js +11 -0
  624. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js +128 -0
  625. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/glsl.js.js +11 -0
  626. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js +2816 -0
  627. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gml.js.js +11 -0
  628. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js +141 -0
  629. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/go.js.js +11 -0
  630. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js +80 -0
  631. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/golo.js.js +11 -0
  632. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js +189 -0
  633. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/gradle.js.js +11 -0
  634. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js +78 -0
  635. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/graphql.js.js +11 -0
  636. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js +189 -0
  637. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/groovy.js.js +11 -0
  638. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js +113 -0
  639. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haml.js.js +11 -0
  640. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js +258 -0
  641. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/handlebars.js.js +11 -0
  642. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js +217 -0
  643. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haskell.js.js +11 -0
  644. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js +166 -0
  645. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/haxe.js.js +11 -0
  646. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js +59 -0
  647. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hsp.js.js +11 -0
  648. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js +97 -0
  649. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/http.js.js +11 -0
  650. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js +137 -0
  651. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/hy.js.js +11 -0
  652. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js +69 -0
  653. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/inform7.js.js +11 -0
  654. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js +121 -0
  655. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ini.js.js +11 -0
  656. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js +107 -0
  657. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/irpf90.js.js +11 -0
  658. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js +3205 -0
  659. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/isbl.js.js +11 -0
  660. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js +289 -0
  661. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/java.js.js +11 -0
  662. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js +766 -0
  663. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/javascript.js.js +11 -0
  664. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js +63 -0
  665. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/jboss-cli.js.js +11 -0
  666. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js +53 -0
  667. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/json.js.js +11 -0
  668. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js +50 -0
  669. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia-repl.js.js +11 -0
  670. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js +441 -0
  671. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/julia.js.js +11 -0
  672. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js +286 -0
  673. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/kotlin.js.js +11 -0
  674. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js +170 -0
  675. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lasso.js.js +11 -0
  676. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js +278 -0
  677. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/latex.js.js +11 -0
  678. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js +31 -0
  679. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ldif.js.js +11 -0
  680. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js +97 -0
  681. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/leaf.js.js +11 -0
  682. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js +839 -0
  683. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/less.js.js +11 -0
  684. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js +139 -0
  685. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lisp.js.js +11 -0
  686. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js +173 -0
  687. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livecodeserver.js.js +11 -0
  688. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js +378 -0
  689. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/livescript.js.js +11 -0
  690. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js +132 -0
  691. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/llvm.js.js +11 -0
  692. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js +76 -0
  693. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lsl.js.js +11 -0
  694. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js +80 -0
  695. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/lua.js.js +11 -0
  696. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js +86 -0
  697. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/makefile.js.js +11 -0
  698. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js +241 -0
  699. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/markdown.js.js +11 -0
  700. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js +7359 -0
  701. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mathematica.js.js +11 -0
  702. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js +107 -0
  703. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/matlab.js.js +11 -0
  704. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js +414 -0
  705. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/maxima.js.js +11 -0
  706. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js +235 -0
  707. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mel.js.js +11 -0
  708. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js +107 -0
  709. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mercury.js.js +11 -0
  710. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js +104 -0
  711. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mipsasm.js.js +11 -0
  712. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js +27 -0
  713. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mizar.js.js +11 -0
  714. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js +36 -0
  715. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/mojolicious.js.js +11 -0
  716. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js +183 -0
  717. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/monkey.js.js +11 -0
  718. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js +141 -0
  719. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/moonscript.js.js +11 -0
  720. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js +364 -0
  721. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/n1ql.js.js +11 -0
  722. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js +83 -0
  723. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nestedtext.js.js +11 -0
  724. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js +153 -0
  725. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nginx.js.js +11 -0
  726. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js +185 -0
  727. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nim.js.js +11 -0
  728. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js +94 -0
  729. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nix.js.js +11 -0
  730. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js +33 -0
  731. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/node-repl.js.js +11 -0
  732. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js +556 -0
  733. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/nsis.js.js +11 -0
  734. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js +253 -0
  735. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/objectivec.js.js +11 -0
  736. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js +83 -0
  737. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ocaml.js.js +11 -0
  738. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js +77 -0
  739. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/openscad.js.js +11 -0
  740. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js +86 -0
  741. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/oxygene.js.js +11 -0
  742. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js +55 -0
  743. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/parser3.js.js +11 -0
  744. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js +471 -0
  745. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/perl.js.js +11 -0
  746. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js +60 -0
  747. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pf.js.js +11 -0
  748. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js +524 -0
  749. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pgsql.js.js +11 -0
  750. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js +54 -0
  751. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php-template.js.js +11 -0
  752. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js +613 -0
  753. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/php.js.js +11 -0
  754. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js +19 -0
  755. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/plaintext.js.js +11 -0
  756. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js +89 -0
  757. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/pony.js.js +11 -0
  758. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js +316 -0
  759. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/powershell.js.js +11 -0
  760. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js +434 -0
  761. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/processing.js.js +11 -0
  762. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js +43 -0
  763. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/profile.js.js +11 -0
  764. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js +96 -0
  765. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/prolog.js.js +11 -0
  766. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js +68 -0
  767. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/properties.js.js +11 -0
  768. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js +79 -0
  769. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/protobuf.js.js +11 -0
  770. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js +146 -0
  771. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/puppet.js.js +11 -0
  772. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js +99 -0
  773. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/purebasic.js.js +11 -0
  774. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js +32 -0
  775. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python-repl.js.js +11 -0
  776. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js +434 -0
  777. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/python.js.js +11 -0
  778. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js +37 -0
  779. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/q.js.js +11 -0
  780. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js +189 -0
  781. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/qml.js.js +11 -0
  782. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js +257 -0
  783. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/r.js.js +11 -0
  784. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js +142 -0
  785. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/reasonml.js.js +11 -0
  786. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js +37 -0
  787. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rib.js.js +11 -0
  788. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js +82 -0
  789. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/roboconf.js.js +11 -0
  790. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js +163 -0
  791. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/routeros.js.js +11 -0
  792. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js +149 -0
  793. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rsl.js.js +11 -0
  794. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js +448 -0
  795. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruby.js.js +11 -0
  796. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js +76 -0
  797. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/ruleslanguage.js.js +11 -0
  798. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js +305 -0
  799. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/rust.js.js +11 -0
  800. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js +556 -0
  801. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sas.js.js +11 -0
  802. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js +214 -0
  803. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scala.js.js +11 -0
  804. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js +196 -0
  805. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scheme.js.js +11 -0
  806. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js +73 -0
  807. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scilab.js.js +11 -0
  808. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js +728 -0
  809. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/scss.js.js +11 -0
  810. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js +33 -0
  811. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/shell.js.js +11 -0
  812. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js +125 -0
  813. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smali.js.js +11 -0
  814. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js +68 -0
  815. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/smalltalk.js.js +11 -0
  816. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js +75 -0
  817. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sml.js.js +11 -0
  818. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js +2662 -0
  819. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sqf.js.js +11 -0
  820. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js +682 -0
  821. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/sql.js.js +11 -0
  822. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js +521 -0
  823. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stan.js.js +11 -0
  824. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js +53 -0
  825. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stata.js.js +11 -0
  826. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js +66 -0
  827. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/step21.js.js +11 -0
  828. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js +788 -0
  829. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/stylus.js.js +11 -0
  830. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js +43 -0
  831. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/subunit.js.js +11 -0
  832. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js +920 -0
  833. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/swift.js.js +11 -0
  834. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js +58 -0
  835. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/taggerscript.js.js +11 -0
  836. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js +47 -0
  837. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tap.js.js +11 -0
  838. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js +190 -0
  839. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tcl.js.js +11 -0
  840. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js +77 -0
  841. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/thrift.js.js +11 -0
  842. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js +171 -0
  843. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/tp.js.js +11 -0
  844. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js +260 -0
  845. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/twig.js.js +11 -0
  846. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js +880 -0
  847. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/typescript.js.js +11 -0
  848. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js +60 -0
  849. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vala.js.js +11 -0
  850. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js +157 -0
  851. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbnet.js.js +11 -0
  852. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js +24 -0
  853. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript-html.js.js +11 -0
  854. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js +220 -0
  855. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vbscript.js.js +11 -0
  856. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js +549 -0
  857. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/verilog.js.js +11 -0
  858. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js +215 -0
  859. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vhdl.js.js +11 -0
  860. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js +129 -0
  861. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/vim.js.js +11 -0
  862. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js +139 -0
  863. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wasm.js.js +11 -0
  864. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js +302 -0
  865. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/wren.js.js +11 -0
  866. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js +153 -0
  867. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/x86asm.js.js +11 -0
  868. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js +205 -0
  869. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xl.js.js +11 -0
  870. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js +241 -0
  871. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xml.js.js +11 -0
  872. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js +360 -0
  873. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/xquery.js.js +11 -0
  874. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js +194 -0
  875. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/yaml.js.js +11 -0
  876. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js +128 -0
  877. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/languages/zephir.js.js +11 -0
  878. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/package.json +1 -0
  879. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/es/utils/regex.js +155 -0
  880. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.d.ts +3 -0
  881. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/common.js +42 -0
  882. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.d.ts +3 -0
  883. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/core.js +2597 -0
  884. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/index.js +198 -0
  885. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js +537 -0
  886. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/1c.js.js +10 -0
  887. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js +82 -0
  888. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/abnf.js.js +10 -0
  889. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js +92 -0
  890. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/accesslog.js.js +10 -0
  891. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js +153 -0
  892. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/actionscript.js.js +10 -0
  893. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js +265 -0
  894. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ada.js.js +10 -0
  895. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js +178 -0
  896. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/angelscript.js.js +10 -0
  897. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js +101 -0
  898. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/apache.js.js +10 -0
  899. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js +149 -0
  900. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/applescript.js.js +10 -0
  901. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js +361 -0
  902. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arcade.js.js +10 -0
  903. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js +970 -0
  904. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/arduino.js.js +10 -0
  905. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js +124 -0
  906. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/armasm.js.js +10 -0
  907. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js +261 -0
  908. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/asciidoc.js.js +10 -0
  909. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js +230 -0
  910. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/aspectj.js.js +10 -0
  911. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js +75 -0
  912. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autohotkey.js.js +10 -0
  913. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js +178 -0
  914. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/autoit.js.js +10 -0
  915. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js +78 -0
  916. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/avrasm.js.js +10 -0
  917. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js +67 -0
  918. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/awk.js.js +10 -0
  919. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js +188 -0
  920. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/axapta.js.js +10 -0
  921. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js +391 -0
  922. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bash.js.js +10 -0
  923. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js +229 -0
  924. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/basic.js.js +10 -0
  925. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js +38 -0
  926. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/bnf.js.js +10 -0
  927. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js +54 -0
  928. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/brainfuck.js.js +10 -0
  929. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js +318 -0
  930. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/c.js.js +10 -0
  931. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js +159 -0
  932. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cal.js.js +10 -0
  933. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js +99 -0
  934. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/capnproto.js.js +10 -0
  935. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js +139 -0
  936. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ceylon.js.js +10 -0
  937. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js +67 -0
  938. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clean.js.js +10 -0
  939. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js +27 -0
  940. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure-repl.js.js +10 -0
  941. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js +184 -0
  942. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/clojure.js.js +10 -0
  943. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js +63 -0
  944. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cmake.js.js +10 -0
  945. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js +366 -0
  946. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coffeescript.js.js +10 -0
  947. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js +445 -0
  948. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/coq.js.js +10 -0
  949. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js +140 -0
  950. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cos.js.js +10 -0
  951. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js +568 -0
  952. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/cpp.js.js +10 -0
  953. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js +100 -0
  954. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crmsh.js.js +10 -0
  955. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js +311 -0
  956. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/crystal.js.js +10 -0
  957. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js +400 -0
  958. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csharp.js.js +10 -0
  959. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js +57 -0
  960. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/csp.js.js +10 -0
  961. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js +738 -0
  962. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/css.js.js +10 -0
  963. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js +271 -0
  964. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/d.js.js +10 -0
  965. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js +262 -0
  966. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dart.js.js +10 -0
  967. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js +230 -0
  968. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/delphi.js.js +10 -0
  969. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js +62 -0
  970. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/diff.js.js +10 -0
  971. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js +75 -0
  972. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/django.js.js +10 -0
  973. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js +78 -0
  974. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dns.js.js +10 -0
  975. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js +44 -0
  976. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dockerfile.js.js +10 -0
  977. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js +166 -0
  978. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dos.js.js +10 -0
  979. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js +66 -0
  980. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dsconfig.js.js +10 -0
  981. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js +157 -0
  982. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dts.js.js +10 -0
  983. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js +47 -0
  984. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/dust.js.js +10 -0
  985. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js +53 -0
  986. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ebnf.js.js +10 -0
  987. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js +279 -0
  988. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elixir.js.js +10 -0
  989. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js +143 -0
  990. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/elm.js.js +10 -0
  991. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js +29 -0
  992. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erb.js.js +10 -0
  993. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js +54 -0
  994. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang-repl.js.js +10 -0
  995. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js +191 -0
  996. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/erlang.js.js +10 -0
  997. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js +544 -0
  998. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/excel.js.js +10 -0
  999. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js +39 -0
  1000. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fix.js.js +10 -0
  1001. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js +79 -0
  1002. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/flix.js.js +10 -0
  1003. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js +573 -0
  1004. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fortran.js.js +10 -0
  1005. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js +627 -0
  1006. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/fsharp.js.js +10 -0
  1007. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js +181 -0
  1008. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gams.js.js +10 -0
  1009. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js +306 -0
  1010. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gauss.js.js +10 -0
  1011. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js +80 -0
  1012. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gcode.js.js +10 -0
  1013. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js +49 -0
  1014. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gherkin.js.js +10 -0
  1015. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js +128 -0
  1016. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/glsl.js.js +10 -0
  1017. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js +2816 -0
  1018. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gml.js.js +10 -0
  1019. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js +141 -0
  1020. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/go.js.js +10 -0
  1021. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js +80 -0
  1022. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/golo.js.js +10 -0
  1023. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js +189 -0
  1024. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/gradle.js.js +10 -0
  1025. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js +78 -0
  1026. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/graphql.js.js +10 -0
  1027. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js +189 -0
  1028. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/groovy.js.js +10 -0
  1029. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js +113 -0
  1030. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haml.js.js +10 -0
  1031. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js +258 -0
  1032. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/handlebars.js.js +10 -0
  1033. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js +217 -0
  1034. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haskell.js.js +10 -0
  1035. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js +166 -0
  1036. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/haxe.js.js +10 -0
  1037. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js +59 -0
  1038. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hsp.js.js +10 -0
  1039. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js +97 -0
  1040. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/http.js.js +10 -0
  1041. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js +137 -0
  1042. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/hy.js.js +10 -0
  1043. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js +69 -0
  1044. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/inform7.js.js +10 -0
  1045. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js +121 -0
  1046. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ini.js.js +10 -0
  1047. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js +107 -0
  1048. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/irpf90.js.js +10 -0
  1049. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js +3205 -0
  1050. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/isbl.js.js +10 -0
  1051. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js +289 -0
  1052. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/java.js.js +10 -0
  1053. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js +766 -0
  1054. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/javascript.js.js +10 -0
  1055. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js +63 -0
  1056. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/jboss-cli.js.js +10 -0
  1057. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js +53 -0
  1058. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/json.js.js +10 -0
  1059. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js +50 -0
  1060. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia-repl.js.js +10 -0
  1061. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js +441 -0
  1062. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/julia.js.js +10 -0
  1063. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js +286 -0
  1064. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/kotlin.js.js +10 -0
  1065. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js +170 -0
  1066. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lasso.js.js +10 -0
  1067. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js +278 -0
  1068. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/latex.js.js +10 -0
  1069. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js +31 -0
  1070. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ldif.js.js +10 -0
  1071. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js +97 -0
  1072. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/leaf.js.js +10 -0
  1073. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js +839 -0
  1074. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/less.js.js +10 -0
  1075. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js +139 -0
  1076. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lisp.js.js +10 -0
  1077. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js +173 -0
  1078. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livecodeserver.js.js +10 -0
  1079. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js +378 -0
  1080. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/livescript.js.js +10 -0
  1081. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js +132 -0
  1082. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/llvm.js.js +10 -0
  1083. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js +76 -0
  1084. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lsl.js.js +10 -0
  1085. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js +80 -0
  1086. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/lua.js.js +10 -0
  1087. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js +86 -0
  1088. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/makefile.js.js +10 -0
  1089. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js +241 -0
  1090. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/markdown.js.js +10 -0
  1091. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js +7359 -0
  1092. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mathematica.js.js +10 -0
  1093. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js +107 -0
  1094. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/matlab.js.js +10 -0
  1095. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js +414 -0
  1096. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/maxima.js.js +10 -0
  1097. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js +235 -0
  1098. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mel.js.js +10 -0
  1099. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js +107 -0
  1100. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mercury.js.js +10 -0
  1101. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js +104 -0
  1102. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mipsasm.js.js +10 -0
  1103. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js +27 -0
  1104. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mizar.js.js +10 -0
  1105. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js +36 -0
  1106. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/mojolicious.js.js +10 -0
  1107. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js +183 -0
  1108. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/monkey.js.js +10 -0
  1109. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js +141 -0
  1110. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/moonscript.js.js +10 -0
  1111. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js +364 -0
  1112. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/n1ql.js.js +10 -0
  1113. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js +83 -0
  1114. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nestedtext.js.js +10 -0
  1115. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js +153 -0
  1116. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nginx.js.js +10 -0
  1117. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js +185 -0
  1118. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nim.js.js +10 -0
  1119. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js +94 -0
  1120. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nix.js.js +10 -0
  1121. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js +33 -0
  1122. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/node-repl.js.js +10 -0
  1123. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js +556 -0
  1124. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/nsis.js.js +10 -0
  1125. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js +253 -0
  1126. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/objectivec.js.js +10 -0
  1127. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js +83 -0
  1128. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ocaml.js.js +10 -0
  1129. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js +77 -0
  1130. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/openscad.js.js +10 -0
  1131. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js +86 -0
  1132. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/oxygene.js.js +10 -0
  1133. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js +55 -0
  1134. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/parser3.js.js +10 -0
  1135. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js +471 -0
  1136. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/perl.js.js +10 -0
  1137. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js +60 -0
  1138. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pf.js.js +10 -0
  1139. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js +524 -0
  1140. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pgsql.js.js +10 -0
  1141. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js +54 -0
  1142. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php-template.js.js +10 -0
  1143. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js +613 -0
  1144. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/php.js.js +10 -0
  1145. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js +19 -0
  1146. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/plaintext.js.js +10 -0
  1147. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js +89 -0
  1148. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/pony.js.js +10 -0
  1149. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js +316 -0
  1150. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/powershell.js.js +10 -0
  1151. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js +434 -0
  1152. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/processing.js.js +10 -0
  1153. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js +43 -0
  1154. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/profile.js.js +10 -0
  1155. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js +96 -0
  1156. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/prolog.js.js +10 -0
  1157. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js +68 -0
  1158. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/properties.js.js +10 -0
  1159. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js +79 -0
  1160. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/protobuf.js.js +10 -0
  1161. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js +146 -0
  1162. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/puppet.js.js +10 -0
  1163. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js +99 -0
  1164. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/purebasic.js.js +10 -0
  1165. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js +32 -0
  1166. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python-repl.js.js +10 -0
  1167. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js +434 -0
  1168. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/python.js.js +10 -0
  1169. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js +37 -0
  1170. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/q.js.js +10 -0
  1171. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js +189 -0
  1172. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/qml.js.js +10 -0
  1173. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js +257 -0
  1174. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/r.js.js +10 -0
  1175. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js +142 -0
  1176. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/reasonml.js.js +10 -0
  1177. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js +37 -0
  1178. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rib.js.js +10 -0
  1179. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js +82 -0
  1180. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/roboconf.js.js +10 -0
  1181. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js +163 -0
  1182. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/routeros.js.js +10 -0
  1183. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js +149 -0
  1184. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rsl.js.js +10 -0
  1185. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js +448 -0
  1186. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruby.js.js +10 -0
  1187. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js +76 -0
  1188. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/ruleslanguage.js.js +10 -0
  1189. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js +305 -0
  1190. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/rust.js.js +10 -0
  1191. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js +556 -0
  1192. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sas.js.js +10 -0
  1193. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js +214 -0
  1194. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scala.js.js +10 -0
  1195. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js +196 -0
  1196. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scheme.js.js +10 -0
  1197. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js +73 -0
  1198. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scilab.js.js +10 -0
  1199. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js +728 -0
  1200. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/scss.js.js +10 -0
  1201. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js +33 -0
  1202. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/shell.js.js +10 -0
  1203. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js +125 -0
  1204. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smali.js.js +10 -0
  1205. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js +68 -0
  1206. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/smalltalk.js.js +10 -0
  1207. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js +75 -0
  1208. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sml.js.js +10 -0
  1209. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js +2662 -0
  1210. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sqf.js.js +10 -0
  1211. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js +682 -0
  1212. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/sql.js.js +10 -0
  1213. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js +521 -0
  1214. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stan.js.js +10 -0
  1215. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js +53 -0
  1216. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stata.js.js +10 -0
  1217. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js +66 -0
  1218. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/step21.js.js +10 -0
  1219. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js +788 -0
  1220. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/stylus.js.js +10 -0
  1221. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js +43 -0
  1222. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/subunit.js.js +10 -0
  1223. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js +920 -0
  1224. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/swift.js.js +10 -0
  1225. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js +58 -0
  1226. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/taggerscript.js.js +10 -0
  1227. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js +47 -0
  1228. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tap.js.js +10 -0
  1229. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js +190 -0
  1230. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tcl.js.js +10 -0
  1231. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js +77 -0
  1232. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/thrift.js.js +10 -0
  1233. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js +171 -0
  1234. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/tp.js.js +10 -0
  1235. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js +260 -0
  1236. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/twig.js.js +10 -0
  1237. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js +880 -0
  1238. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/typescript.js.js +10 -0
  1239. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js +60 -0
  1240. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vala.js.js +10 -0
  1241. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js +157 -0
  1242. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbnet.js.js +10 -0
  1243. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js +24 -0
  1244. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript-html.js.js +10 -0
  1245. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js +220 -0
  1246. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vbscript.js.js +10 -0
  1247. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js +549 -0
  1248. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/verilog.js.js +10 -0
  1249. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js +215 -0
  1250. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vhdl.js.js +10 -0
  1251. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js +129 -0
  1252. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/vim.js.js +10 -0
  1253. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js +139 -0
  1254. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wasm.js.js +10 -0
  1255. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js +302 -0
  1256. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/wren.js.js +10 -0
  1257. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js +153 -0
  1258. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/x86asm.js.js +10 -0
  1259. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js +205 -0
  1260. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xl.js.js +10 -0
  1261. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js +241 -0
  1262. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xml.js.js +10 -0
  1263. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js +360 -0
  1264. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/xquery.js.js +10 -0
  1265. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js +194 -0
  1266. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/yaml.js.js +10 -0
  1267. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js +128 -0
  1268. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/lib/languages/zephir.js.js +10 -0
  1269. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/package.json +119 -0
  1270. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-dark.scss +94 -0
  1271. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/a11y-light.scss +94 -0
  1272. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/agate.scss +127 -0
  1273. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/an-old-hope.scss +75 -0
  1274. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/androidstudio.scss +60 -0
  1275. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arduino-light.scss +78 -0
  1276. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/arta.scss +66 -0
  1277. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ascetic.scss +45 -0
  1278. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark-reasonable.scss +105 -0
  1279. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-dark.scss +90 -0
  1280. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/atom-one-light.scss +90 -0
  1281. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/3024.scss +163 -0
  1282. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apathy.scss +163 -0
  1283. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/apprentice.scss +163 -0
  1284. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ashes.scss +163 -0
  1285. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave-light.scss +163 -0
  1286. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-cave.scss +163 -0
  1287. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune-light.scss +163 -0
  1288. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-dune.scss +163 -0
  1289. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary-light.scss +163 -0
  1290. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-estuary.scss +163 -0
  1291. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest-light.scss +163 -0
  1292. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-forest.scss +163 -0
  1293. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath-light.scss +163 -0
  1294. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-heath.scss +163 -0
  1295. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside-light.scss +163 -0
  1296. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-lakeside.scss +163 -0
  1297. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau-light.scss +163 -0
  1298. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-plateau.scss +163 -0
  1299. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna-light.scss +163 -0
  1300. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-savanna.scss +163 -0
  1301. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside-light.scss +163 -0
  1302. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-seaside.scss +163 -0
  1303. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool-light.scss +163 -0
  1304. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atelier-sulphurpool.scss +163 -0
  1305. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/atlas.scss +163 -0
  1306. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bespin.scss +163 -0
  1307. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-bathory.scss +163 -0
  1308. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-burzum.scss +163 -0
  1309. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-dark-funeral.scss +163 -0
  1310. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-gorgoroth.scss +163 -0
  1311. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-immortal.scss +163 -0
  1312. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-khold.scss +163 -0
  1313. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-marduk.scss +163 -0
  1314. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-mayhem.scss +163 -0
  1315. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-nile.scss +163 -0
  1316. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal-venom.scss +163 -0
  1317. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/black-metal.scss +163 -0
  1318. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brewer.scss +163 -0
  1319. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/bright.scss +163 -0
  1320. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brogrammer.scss +163 -0
  1321. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees-dark.scss +163 -0
  1322. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/brush-trees.scss +163 -0
  1323. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/chalk.scss +163 -0
  1324. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/circus.scss +163 -0
  1325. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-dark.scss +163 -0
  1326. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/classic-light.scss +163 -0
  1327. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/codeschool.scss +163 -0
  1328. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/colors.scss +163 -0
  1329. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupcake.scss +163 -0
  1330. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/cupertino.scss +163 -0
  1331. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/danqing.scss +163 -0
  1332. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darcula.scss +163 -0
  1333. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dark-violet.scss +163 -0
  1334. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darkmoss.scss +163 -0
  1335. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/darktooth.scss +163 -0
  1336. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/decaf.scss +163 -0
  1337. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-dark.scss +163 -0
  1338. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/default-light.scss +163 -0
  1339. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dirtysea.scss +163 -0
  1340. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/dracula.scss +163 -0
  1341. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-dark.scss +163 -0
  1342. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/edge-light.scss +163 -0
  1343. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eighties.scss +163 -0
  1344. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/embers.scss +163 -0
  1345. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-dark.scss +163 -0
  1346. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-dark.scss +163 -0
  1347. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-gray-light.scss +163 -0
  1348. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/equilibrium-light.scss +163 -0
  1349. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/espresso.scss +163 -0
  1350. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva-dim.scss +163 -0
  1351. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/eva.scss +163 -0
  1352. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/flat.scss +163 -0
  1353. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/framer.scss +163 -0
  1354. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/fruit-soda.scss +163 -0
  1355. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gigavolt.scss +163 -0
  1356. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/github.scss +163 -0
  1357. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-dark.scss +163 -0
  1358. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/google-light.scss +163 -0
  1359. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-dark.scss +163 -0
  1360. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/grayscale-light.scss +163 -0
  1361. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/green-screen.scss +163 -0
  1362. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-hard.scss +163 -0
  1363. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-medium.scss +163 -0
  1364. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-pale.scss +163 -0
  1365. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-dark-soft.scss +163 -0
  1366. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-hard.scss +163 -0
  1367. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-medium.scss +163 -0
  1368. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/gruvbox-light-soft.scss +163 -0
  1369. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hardcore.scss +163 -0
  1370. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-dark.scss +163 -0
  1371. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/harmonic16-light.scss +163 -0
  1372. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-dark.scss +163 -0
  1373. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/heetch-light.scss +163 -0
  1374. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/helios.scss +163 -0
  1375. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/hopscotch.scss +163 -0
  1376. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-dark.scss +163 -0
  1377. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/horizon-light.scss +163 -0
  1378. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-dark.scss +163 -0
  1379. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/humanoid-light.scss +163 -0
  1380. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-dark.scss +163 -0
  1381. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ia-light.scss +163 -0
  1382. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/icy-dark.scss +163 -0
  1383. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ir-black.scss +163 -0
  1384. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/isotope.scss +163 -0
  1385. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/kimber.scss +163 -0
  1386. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/london-tube.scss +163 -0
  1387. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/macintosh.scss +163 -0
  1388. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/marrakesh.scss +163 -0
  1389. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/materia.scss +163 -0
  1390. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-darker.scss +163 -0
  1391. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-lighter.scss +163 -0
  1392. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-palenight.scss +163 -0
  1393. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material-vivid.scss +163 -0
  1394. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/material.scss +163 -0
  1395. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mellow-purple.scss +163 -0
  1396. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mexico-light.scss +163 -0
  1397. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/mocha.scss +163 -0
  1398. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/monokai.scss +163 -0
  1399. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nebula.scss +163 -0
  1400. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nord.scss +163 -0
  1401. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/nova.scss +163 -0
  1402. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ocean.scss +163 -0
  1403. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/oceanicnext.scss +163 -0
  1404. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/one-light.scss +163 -0
  1405. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/onedark.scss +163 -0
  1406. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/outrun-dark.scss +163 -0
  1407. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-dark.scss +163 -0
  1408. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/papercolor-light.scss +163 -0
  1409. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/paraiso.scss +163 -0
  1410. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pasque.scss +163 -0
  1411. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/phd.scss +163 -0
  1412. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pico.scss +163 -0
  1413. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/pop.scss +163 -0
  1414. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/porple.scss +163 -0
  1415. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/qualia.scss +163 -0
  1416. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/railscasts.scss +163 -0
  1417. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/rebecca.scss +163 -0
  1418. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-dawn.scss +163 -0
  1419. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine-moon.scss +163 -0
  1420. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/ros-pine.scss +163 -0
  1421. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sagelight.scss +163 -0
  1422. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/sandcastle.scss +163 -0
  1423. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/seti-ui.scss +163 -0
  1424. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/shapeshifter.scss +163 -0
  1425. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-dark.scss +163 -0
  1426. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/silk-light.scss +163 -0
  1427. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/snazzy.scss +163 -0
  1428. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare-light.scss +163 -0
  1429. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solar-flare.scss +163 -0
  1430. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-dark.scss +163 -0
  1431. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/solarized-light.scss +163 -0
  1432. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/spacemacs.scss +163 -0
  1433. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summercamp.scss +163 -0
  1434. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-dark.scss +163 -0
  1435. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/summerfruit-light.scss +163 -0
  1436. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-dark.scss +163 -0
  1437. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/synth-midnight-terminal-light.scss +163 -0
  1438. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tango.scss +163 -0
  1439. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tender.scss +163 -0
  1440. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow-night.scss +163 -0
  1441. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/tomorrow.scss +163 -0
  1442. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/twilight.scss +163 -0
  1443. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-dark.scss +163 -0
  1444. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/unikitty-light.scss +163 -0
  1445. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/vulcan.scss +163 -0
  1446. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10-light.scss +163 -0
  1447. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-10.scss +163 -0
  1448. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95-light.scss +163 -0
  1449. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-95.scss +163 -0
  1450. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast-light.scss +163 -0
  1451. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-high-contrast.scss +163 -0
  1452. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt-light.scss +163 -0
  1453. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/windows-nt.scss +163 -0
  1454. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/woodland.scss +163 -0
  1455. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/xcode-dusk.scss +163 -0
  1456. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/base16/zenburn.scss +163 -0
  1457. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/brown-paper.scss +63 -0
  1458. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/codepen-embed.scss +57 -0
  1459. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/color-brewer.scss +66 -0
  1460. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/dark.scss +62 -0
  1461. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/default.scss +117 -0
  1462. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/devibeans.scss +90 -0
  1463. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/docco.scss +83 -0
  1464. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/far.scss +67 -0
  1465. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/felipec.scss +94 -0
  1466. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/foundation.scss +80 -0
  1467. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark-dimmed.scss +117 -0
  1468. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github-dark.scss +118 -0
  1469. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/github.scss +118 -0
  1470. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gml.scss +72 -0
  1471. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/googlecode.scss +79 -0
  1472. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-dark.scss +90 -0
  1473. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/gradient-light.scss +90 -0
  1474. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/grayscale.scss +89 -0
  1475. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/hybrid.scss +88 -0
  1476. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/idea.scss +86 -0
  1477. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/intellij-light.scss +107 -0
  1478. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/ir-black.scss +66 -0
  1479. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-dark.scss +94 -0
  1480. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/isbl-editor-light.scss +93 -0
  1481. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-dark.scss +69 -0
  1482. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/kimbie-light.scss +69 -0
  1483. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lightfair.scss +81 -0
  1484. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/lioshi.scss +76 -0
  1485. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/magula.scss +66 -0
  1486. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/mono-blue.scss +56 -0
  1487. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai-sublime.scss +76 -0
  1488. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/monokai.scss +68 -0
  1489. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/night-owl.scss +174 -0
  1490. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-dark.scss +104 -0
  1491. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nnfx-light.scss +104 -0
  1492. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/nord.scss +275 -0
  1493. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/obsidian.scss +79 -0
  1494. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-dark.scss +92 -0
  1495. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/panda-syntax-light.scss +89 -0
  1496. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-dark.scss +67 -0
  1497. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/paraiso-light.scss +67 -0
  1498. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/pojoaque.scss +76 -0
  1499. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/purebasic.scss +103 -0
  1500. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-dark.scss +76 -0
  1501. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/qtcreator-light.scss +74 -0
  1502. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/rainbow.scss +77 -0
  1503. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/routeros.scss +86 -0
  1504. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/school-book.scss +62 -0
  1505. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/shades-of-purple.scss +84 -0
  1506. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/srcery.scss +89 -0
  1507. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-dark.scss +117 -0
  1508. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/stackoverflow-light.scss +117 -0
  1509. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/sunburst.scss +89 -0
  1510. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-dark.scss +114 -0
  1511. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tokyo-night-light.scss +114 -0
  1512. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-blue.scss +69 -0
  1513. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/tomorrow-night-bright.scss +68 -0
  1514. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs.scss +63 -0
  1515. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/vs2015.scss +100 -0
  1516. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xcode.scss +90 -0
  1517. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/scss/xt256.scss +79 -0
  1518. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.css +94 -0
  1519. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-dark.min.css +7 -0
  1520. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.css +94 -0
  1521. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/a11y-light.min.css +7 -0
  1522. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.css +127 -0
  1523. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/agate.min.css +20 -0
  1524. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.css +75 -0
  1525. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/an-old-hope.min.css +9 -0
  1526. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.css +60 -0
  1527. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/androidstudio.min.css +1 -0
  1528. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.css +78 -0
  1529. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arduino-light.min.css +1 -0
  1530. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.css +66 -0
  1531. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/arta.min.css +1 -0
  1532. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.css +45 -0
  1533. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ascetic.min.css +1 -0
  1534. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.css +105 -0
  1535. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark-reasonable.min.css +1 -0
  1536. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.css +90 -0
  1537. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-dark.min.css +1 -0
  1538. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.css +90 -0
  1539. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/atom-one-light.min.css +1 -0
  1540. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.css +163 -0
  1541. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/3024.min.css +7 -0
  1542. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.css +163 -0
  1543. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apathy.min.css +7 -0
  1544. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.css +163 -0
  1545. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/apprentice.min.css +7 -0
  1546. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.css +163 -0
  1547. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ashes.min.css +7 -0
  1548. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.css +163 -0
  1549. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave-light.min.css +7 -0
  1550. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.css +163 -0
  1551. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-cave.min.css +7 -0
  1552. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.css +163 -0
  1553. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune-light.min.css +7 -0
  1554. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.css +163 -0
  1555. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-dune.min.css +7 -0
  1556. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.css +163 -0
  1557. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary-light.min.css +7 -0
  1558. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.css +163 -0
  1559. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-estuary.min.css +7 -0
  1560. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.css +163 -0
  1561. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest-light.min.css +7 -0
  1562. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.css +163 -0
  1563. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-forest.min.css +7 -0
  1564. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.css +163 -0
  1565. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath-light.min.css +7 -0
  1566. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.css +163 -0
  1567. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-heath.min.css +7 -0
  1568. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.css +163 -0
  1569. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside-light.min.css +7 -0
  1570. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.css +163 -0
  1571. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-lakeside.min.css +7 -0
  1572. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.css +163 -0
  1573. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau-light.min.css +7 -0
  1574. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.css +163 -0
  1575. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-plateau.min.css +7 -0
  1576. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.css +163 -0
  1577. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna-light.min.css +7 -0
  1578. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.css +163 -0
  1579. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-savanna.min.css +7 -0
  1580. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.css +163 -0
  1581. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside-light.min.css +7 -0
  1582. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.css +163 -0
  1583. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-seaside.min.css +7 -0
  1584. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.css +163 -0
  1585. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool-light.min.css +7 -0
  1586. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.css +163 -0
  1587. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atelier-sulphurpool.min.css +7 -0
  1588. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.css +163 -0
  1589. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/atlas.min.css +7 -0
  1590. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.css +163 -0
  1591. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bespin.min.css +7 -0
  1592. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.css +163 -0
  1593. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-bathory.min.css +7 -0
  1594. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.css +163 -0
  1595. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-burzum.min.css +7 -0
  1596. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.css +163 -0
  1597. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-dark-funeral.min.css +7 -0
  1598. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.css +163 -0
  1599. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-gorgoroth.min.css +7 -0
  1600. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.css +163 -0
  1601. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-immortal.min.css +7 -0
  1602. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.css +163 -0
  1603. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-khold.min.css +7 -0
  1604. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.css +163 -0
  1605. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-marduk.min.css +7 -0
  1606. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.css +163 -0
  1607. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-mayhem.min.css +7 -0
  1608. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.css +163 -0
  1609. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-nile.min.css +7 -0
  1610. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.css +163 -0
  1611. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal-venom.min.css +7 -0
  1612. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.css +163 -0
  1613. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/black-metal.min.css +7 -0
  1614. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.css +163 -0
  1615. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brewer.min.css +7 -0
  1616. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.css +163 -0
  1617. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/bright.min.css +7 -0
  1618. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.css +163 -0
  1619. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brogrammer.min.css +7 -0
  1620. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.css +163 -0
  1621. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees-dark.min.css +7 -0
  1622. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.css +163 -0
  1623. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/brush-trees.min.css +7 -0
  1624. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.css +163 -0
  1625. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/chalk.min.css +7 -0
  1626. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.css +163 -0
  1627. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/circus.min.css +7 -0
  1628. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.css +163 -0
  1629. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-dark.min.css +7 -0
  1630. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.css +163 -0
  1631. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/classic-light.min.css +7 -0
  1632. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.css +163 -0
  1633. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/codeschool.min.css +7 -0
  1634. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.css +163 -0
  1635. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/colors.min.css +7 -0
  1636. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.css +163 -0
  1637. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupcake.min.css +7 -0
  1638. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.css +163 -0
  1639. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/cupertino.min.css +7 -0
  1640. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.css +163 -0
  1641. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/danqing.min.css +7 -0
  1642. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.css +163 -0
  1643. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darcula.min.css +7 -0
  1644. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.css +163 -0
  1645. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dark-violet.min.css +7 -0
  1646. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.css +163 -0
  1647. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darkmoss.min.css +7 -0
  1648. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.css +163 -0
  1649. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/darktooth.min.css +7 -0
  1650. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.css +163 -0
  1651. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/decaf.min.css +7 -0
  1652. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.css +163 -0
  1653. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-dark.min.css +7 -0
  1654. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.css +163 -0
  1655. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/default-light.min.css +7 -0
  1656. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.css +163 -0
  1657. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dirtysea.min.css +7 -0
  1658. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.css +163 -0
  1659. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/dracula.min.css +7 -0
  1660. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.css +163 -0
  1661. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-dark.min.css +7 -0
  1662. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.css +163 -0
  1663. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/edge-light.min.css +7 -0
  1664. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.css +163 -0
  1665. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eighties.min.css +7 -0
  1666. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.css +163 -0
  1667. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/embers.min.css +7 -0
  1668. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.css +163 -0
  1669. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-dark.min.css +7 -0
  1670. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.css +163 -0
  1671. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-dark.min.css +7 -0
  1672. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.css +163 -0
  1673. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-gray-light.min.css +7 -0
  1674. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.css +163 -0
  1675. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/equilibrium-light.min.css +7 -0
  1676. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.css +163 -0
  1677. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/espresso.min.css +7 -0
  1678. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.css +163 -0
  1679. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva-dim.min.css +7 -0
  1680. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.css +163 -0
  1681. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/eva.min.css +7 -0
  1682. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.css +163 -0
  1683. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/flat.min.css +7 -0
  1684. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.css +163 -0
  1685. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/framer.min.css +7 -0
  1686. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.css +163 -0
  1687. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/fruit-soda.min.css +7 -0
  1688. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.css +163 -0
  1689. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gigavolt.min.css +7 -0
  1690. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.css +163 -0
  1691. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/github.min.css +7 -0
  1692. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.css +163 -0
  1693. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-dark.min.css +7 -0
  1694. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.css +163 -0
  1695. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/google-light.min.css +7 -0
  1696. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.css +163 -0
  1697. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-dark.min.css +7 -0
  1698. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.css +163 -0
  1699. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/grayscale-light.min.css +7 -0
  1700. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.css +163 -0
  1701. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/green-screen.min.css +7 -0
  1702. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.css +163 -0
  1703. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-hard.min.css +7 -0
  1704. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.css +163 -0
  1705. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-medium.min.css +7 -0
  1706. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.css +163 -0
  1707. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-pale.min.css +7 -0
  1708. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.css +163 -0
  1709. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-dark-soft.min.css +7 -0
  1710. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.css +163 -0
  1711. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-hard.min.css +7 -0
  1712. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.css +163 -0
  1713. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-medium.min.css +7 -0
  1714. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.css +163 -0
  1715. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/gruvbox-light-soft.min.css +7 -0
  1716. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.css +163 -0
  1717. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hardcore.min.css +7 -0
  1718. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.css +163 -0
  1719. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-dark.min.css +7 -0
  1720. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.css +163 -0
  1721. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/harmonic16-light.min.css +7 -0
  1722. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.css +163 -0
  1723. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-dark.min.css +7 -0
  1724. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.css +163 -0
  1725. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/heetch-light.min.css +7 -0
  1726. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.css +163 -0
  1727. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/helios.min.css +7 -0
  1728. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.css +163 -0
  1729. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/hopscotch.min.css +7 -0
  1730. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.css +163 -0
  1731. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-dark.min.css +7 -0
  1732. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.css +163 -0
  1733. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/horizon-light.min.css +7 -0
  1734. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.css +163 -0
  1735. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-dark.min.css +7 -0
  1736. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.css +163 -0
  1737. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/humanoid-light.min.css +7 -0
  1738. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.css +163 -0
  1739. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-dark.min.css +7 -0
  1740. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.css +163 -0
  1741. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ia-light.min.css +7 -0
  1742. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.css +163 -0
  1743. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/icy-dark.min.css +7 -0
  1744. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.css +163 -0
  1745. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ir-black.min.css +7 -0
  1746. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.css +163 -0
  1747. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/isotope.min.css +7 -0
  1748. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.css +163 -0
  1749. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/kimber.min.css +7 -0
  1750. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.css +163 -0
  1751. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/london-tube.min.css +7 -0
  1752. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.css +163 -0
  1753. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/macintosh.min.css +7 -0
  1754. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.css +163 -0
  1755. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/marrakesh.min.css +7 -0
  1756. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.css +163 -0
  1757. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/materia.min.css +7 -0
  1758. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.css +163 -0
  1759. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-darker.min.css +7 -0
  1760. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.css +163 -0
  1761. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-lighter.min.css +7 -0
  1762. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.css +163 -0
  1763. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-palenight.min.css +7 -0
  1764. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.css +163 -0
  1765. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material-vivid.min.css +7 -0
  1766. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.css +163 -0
  1767. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/material.min.css +7 -0
  1768. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.css +163 -0
  1769. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mellow-purple.min.css +7 -0
  1770. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.css +163 -0
  1771. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mexico-light.min.css +7 -0
  1772. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.css +163 -0
  1773. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/mocha.min.css +7 -0
  1774. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.css +163 -0
  1775. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/monokai.min.css +7 -0
  1776. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.css +163 -0
  1777. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nebula.min.css +7 -0
  1778. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.css +163 -0
  1779. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nord.min.css +7 -0
  1780. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.css +163 -0
  1781. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/nova.min.css +7 -0
  1782. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.css +163 -0
  1783. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ocean.min.css +7 -0
  1784. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.css +163 -0
  1785. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/oceanicnext.min.css +7 -0
  1786. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.css +163 -0
  1787. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/one-light.min.css +7 -0
  1788. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.css +163 -0
  1789. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/onedark.min.css +7 -0
  1790. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.css +163 -0
  1791. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/outrun-dark.min.css +7 -0
  1792. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.css +163 -0
  1793. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-dark.min.css +7 -0
  1794. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.css +163 -0
  1795. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/papercolor-light.min.css +7 -0
  1796. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.css +163 -0
  1797. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/paraiso.min.css +7 -0
  1798. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.css +163 -0
  1799. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pasque.min.css +7 -0
  1800. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.css +163 -0
  1801. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/phd.min.css +7 -0
  1802. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.css +163 -0
  1803. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pico.min.css +7 -0
  1804. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.css +163 -0
  1805. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/pop.min.css +7 -0
  1806. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.css +163 -0
  1807. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/porple.min.css +7 -0
  1808. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.css +163 -0
  1809. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/qualia.min.css +7 -0
  1810. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.css +163 -0
  1811. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/railscasts.min.css +7 -0
  1812. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.css +163 -0
  1813. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/rebecca.min.css +7 -0
  1814. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.css +163 -0
  1815. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-dawn.min.css +7 -0
  1816. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.css +163 -0
  1817. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine-moon.min.css +7 -0
  1818. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.css +163 -0
  1819. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/ros-pine.min.css +7 -0
  1820. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.css +163 -0
  1821. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sagelight.min.css +7 -0
  1822. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.css +163 -0
  1823. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/sandcastle.min.css +7 -0
  1824. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.css +163 -0
  1825. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/seti-ui.min.css +7 -0
  1826. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.css +163 -0
  1827. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/shapeshifter.min.css +7 -0
  1828. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.css +163 -0
  1829. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-dark.min.css +7 -0
  1830. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.css +163 -0
  1831. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/silk-light.min.css +7 -0
  1832. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.css +163 -0
  1833. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/snazzy.min.css +7 -0
  1834. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.css +163 -0
  1835. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare-light.min.css +7 -0
  1836. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.css +163 -0
  1837. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solar-flare.min.css +7 -0
  1838. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.css +163 -0
  1839. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-dark.min.css +7 -0
  1840. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.css +163 -0
  1841. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/solarized-light.min.css +7 -0
  1842. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.css +163 -0
  1843. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/spacemacs.min.css +7 -0
  1844. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.css +163 -0
  1845. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summercamp.min.css +7 -0
  1846. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.css +163 -0
  1847. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-dark.min.css +7 -0
  1848. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.css +163 -0
  1849. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/summerfruit-light.min.css +7 -0
  1850. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.css +163 -0
  1851. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-dark.min.css +7 -0
  1852. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.css +163 -0
  1853. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/synth-midnight-terminal-light.min.css +7 -0
  1854. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.css +163 -0
  1855. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tango.min.css +7 -0
  1856. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.css +163 -0
  1857. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tender.min.css +7 -0
  1858. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.css +163 -0
  1859. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow-night.min.css +7 -0
  1860. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.css +163 -0
  1861. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/tomorrow.min.css +7 -0
  1862. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.css +163 -0
  1863. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/twilight.min.css +7 -0
  1864. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.css +163 -0
  1865. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-dark.min.css +7 -0
  1866. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.css +163 -0
  1867. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/unikitty-light.min.css +7 -0
  1868. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.css +163 -0
  1869. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/vulcan.min.css +7 -0
  1870. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.css +163 -0
  1871. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10-light.min.css +7 -0
  1872. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.css +163 -0
  1873. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-10.min.css +7 -0
  1874. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.css +163 -0
  1875. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95-light.min.css +7 -0
  1876. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.css +163 -0
  1877. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-95.min.css +7 -0
  1878. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.css +163 -0
  1879. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast-light.min.css +7 -0
  1880. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.css +163 -0
  1881. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-high-contrast.min.css +7 -0
  1882. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.css +163 -0
  1883. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt-light.min.css +7 -0
  1884. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.css +163 -0
  1885. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/windows-nt.min.css +7 -0
  1886. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.css +163 -0
  1887. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/woodland.min.css +7 -0
  1888. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.css +163 -0
  1889. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/xcode-dusk.min.css +7 -0
  1890. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.css +163 -0
  1891. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/base16/zenburn.min.css +7 -0
  1892. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.css +63 -0
  1893. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-paper.min.css +1 -0
  1894. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/brown-papersq.png +0 -0
  1895. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.css +57 -0
  1896. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/codepen-embed.min.css +1 -0
  1897. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.css +66 -0
  1898. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/color-brewer.min.css +1 -0
  1899. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.css +62 -0
  1900. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/dark.min.css +1 -0
  1901. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.css +117 -0
  1902. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/default.min.css +9 -0
  1903. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.css +90 -0
  1904. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/devibeans.min.css +7 -0
  1905. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.css +83 -0
  1906. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/docco.min.css +1 -0
  1907. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.css +67 -0
  1908. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/far.min.css +1 -0
  1909. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.css +94 -0
  1910. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/felipec.min.css +7 -0
  1911. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.css +80 -0
  1912. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/foundation.min.css +1 -0
  1913. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.css +117 -0
  1914. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark-dimmed.min.css +9 -0
  1915. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.css +118 -0
  1916. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github-dark.min.css +10 -0
  1917. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.css +118 -0
  1918. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/github.min.css +10 -0
  1919. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.css +72 -0
  1920. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gml.min.css +1 -0
  1921. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.css +79 -0
  1922. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/googlecode.min.css +1 -0
  1923. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.css +90 -0
  1924. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-dark.min.css +1 -0
  1925. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.css +90 -0
  1926. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/gradient-light.min.css +1 -0
  1927. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.css +89 -0
  1928. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/grayscale.min.css +1 -0
  1929. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.css +88 -0
  1930. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/hybrid.min.css +1 -0
  1931. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.css +86 -0
  1932. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/idea.min.css +1 -0
  1933. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.css +107 -0
  1934. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/intellij-light.min.css +1 -0
  1935. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.css +66 -0
  1936. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/ir-black.min.css +1 -0
  1937. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.css +94 -0
  1938. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-dark.min.css +1 -0
  1939. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.css +93 -0
  1940. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/isbl-editor-light.min.css +1 -0
  1941. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.css +69 -0
  1942. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-dark.min.css +1 -0
  1943. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.css +69 -0
  1944. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/kimbie-light.min.css +1 -0
  1945. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.css +81 -0
  1946. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lightfair.min.css +1 -0
  1947. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.css +76 -0
  1948. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/lioshi.min.css +1 -0
  1949. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.css +66 -0
  1950. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/magula.min.css +1 -0
  1951. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.css +56 -0
  1952. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/mono-blue.min.css +1 -0
  1953. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.css +76 -0
  1954. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai-sublime.min.css +1 -0
  1955. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.css +68 -0
  1956. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/monokai.min.css +1 -0
  1957. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.css +174 -0
  1958. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/night-owl.min.css +1 -0
  1959. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.css +104 -0
  1960. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-dark.min.css +10 -0
  1961. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.css +104 -0
  1962. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nnfx-light.min.css +10 -0
  1963. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.css +275 -0
  1964. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/nord.min.css +1 -0
  1965. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.css +79 -0
  1966. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/obsidian.min.css +1 -0
  1967. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.css +92 -0
  1968. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-dark.min.css +1 -0
  1969. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.css +89 -0
  1970. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/panda-syntax-light.min.css +1 -0
  1971. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.css +67 -0
  1972. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-dark.min.css +1 -0
  1973. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.css +67 -0
  1974. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/paraiso-light.min.css +1 -0
  1975. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.css +76 -0
  1976. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.jpg +0 -0
  1977. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/pojoaque.min.css +1 -0
  1978. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.css +103 -0
  1979. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/purebasic.min.css +1 -0
  1980. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.css +76 -0
  1981. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-dark.min.css +1 -0
  1982. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.css +74 -0
  1983. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/qtcreator-light.min.css +1 -0
  1984. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.css +77 -0
  1985. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/rainbow.min.css +1 -0
  1986. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.css +86 -0
  1987. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/routeros.min.css +1 -0
  1988. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.css +62 -0
  1989. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/school-book.min.css +1 -0
  1990. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.css +84 -0
  1991. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/shades-of-purple.min.css +1 -0
  1992. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.css +89 -0
  1993. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/srcery.min.css +1 -0
  1994. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.css +117 -0
  1995. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-dark.min.css +13 -0
  1996. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.css +117 -0
  1997. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/stackoverflow-light.min.css +13 -0
  1998. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.css +89 -0
  1999. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/sunburst.min.css +1 -0
  2000. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.css +114 -0
  2001. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-dark.min.css +8 -0
  2002. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.css +114 -0
  2003. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tokyo-night-light.min.css +8 -0
  2004. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.css +69 -0
  2005. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-blue.min.css +1 -0
  2006. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.css +68 -0
  2007. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/tomorrow-night-bright.min.css +1 -0
  2008. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.css +63 -0
  2009. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs.min.css +1 -0
  2010. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.css +100 -0
  2011. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/vs2015.min.css +1 -0
  2012. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.css +90 -0
  2013. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xcode.min.css +1 -0
  2014. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.css +79 -0
  2015. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/styles/xt256.min.css +1 -0
  2016. package/esm.sh/~/.esmd/npm/highlight.js@11.9.0/node_modules/highlight.js/types/index.d.ts +272 -0
  2017. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/README.md +256 -0
  2018. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/index.js +62 -0
  2019. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-fast.wasm +0 -0
  2020. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w-small.wasm +0 -0
  2021. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.d.ts +209 -0
  2022. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/md4w.js +248 -0
  2023. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/unwasm.js +8 -0
  2024. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/js/workerd.js +12 -0
  2025. package/esm.sh/~/.esmd/npm/md4w@0.2.7/node_modules/md4w/package.json +32 -0
  2026. package/esm.sh/~/.esmd/npm/react@19.2.4/.cjs-module-lexer/N9KEuYxp93L_UmfSNWRJbsFK_rM.json +1 -0
  2027. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/README.md +37 -0
  2028. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  2029. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  2030. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  2031. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  2032. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  2033. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  2034. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  2035. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  2036. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  2037. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  2038. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  2039. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  2040. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  2041. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.development.js +1284 -0
  2042. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.production.js +542 -0
  2043. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.development.js +848 -0
  2044. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/cjs/react.react-server.production.js +423 -0
  2045. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/compiler-runtime.js +14 -0
  2046. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/index.js +7 -0
  2047. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.js +7 -0
  2048. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  2049. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.js +7 -0
  2050. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/jsx-runtime.react-server.js +7 -0
  2051. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/package.json +51 -0
  2052. package/esm.sh/~/.esmd/npm/react@19.2.4/node_modules/react/react.react-server.js +7 -0
  2053. package/esm.sh/~/.esmd/npm/react@19.2.4/reveal_index.js +1 -0
  2054. package/esm.sh/~/.esmd/npm/react@19.2.4/splitting.txt +1 -0
  2055. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/README.md +37 -0
  2056. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
  2057. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
  2058. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
  2059. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
  2060. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
  2061. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
  2062. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
  2063. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
  2064. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
  2065. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
  2066. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
  2067. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
  2068. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
  2069. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.development.js +1284 -0
  2070. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.production.js +542 -0
  2071. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.development.js +848 -0
  2072. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/cjs/react.react-server.production.js +423 -0
  2073. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/compiler-runtime.js +14 -0
  2074. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/index.js +7 -0
  2075. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.js +7 -0
  2076. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
  2077. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.js +7 -0
  2078. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/jsx-runtime.react-server.js +7 -0
  2079. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/package.json +51 -0
  2080. package/esm.sh/~/.esmd/npm/react@19.2.7/node_modules/react/react.react-server.js +7 -0
  2081. package/esm.sh/~/.esmd/npm/react@19.2.7/splitting.txt +1 -0
  2082. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/README.md +58 -0
  2083. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.js +1 -0
  2084. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.browser.mjs +1 -0
  2085. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.mts +1 -0
  2086. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.d.ts +1 -0
  2087. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.js +3 -0
  2088. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/index.mjs +3 -0
  2089. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/package.json +4 -0
  2090. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/compiler-sfc/register-ts.js +3 -0
  2091. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.js +80 -0
  2092. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.cjs.prod.js +66 -0
  2093. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.mts +7 -0
  2094. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.d.ts +7 -0
  2095. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.js +18771 -0
  2096. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-browser.prod.js +13 -0
  2097. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.esm-bundler.js +71 -0
  2098. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.js +18651 -0
  2099. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.global.prod.js +13 -0
  2100. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.js +12880 -0
  2101. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-browser.prod.js +7 -0
  2102. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.esm-bundler.js +26 -0
  2103. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.js +12934 -0
  2104. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/dist/vue.runtime.global.prod.js +7 -0
  2105. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.js +7 -0
  2106. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/index.mjs +1 -0
  2107. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.d.ts +25 -0
  2108. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.js +15 -0
  2109. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/index.mjs +12 -0
  2110. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx-runtime/package.json +5 -0
  2111. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/jsx.d.ts +22 -0
  2112. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/package.json +112 -0
  2113. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.mts +1 -0
  2114. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.d.ts +1 -0
  2115. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.js +1 -0
  2116. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/index.mjs +1 -0
  2117. package/esm.sh/~/.esmd/npm/vue@3.5.35/node_modules/vue/server-renderer/package.json +4 -0
  2118. package/esm.sh/~/.esmd/npm/vue@3.5.35/splitting.txt +1 -0
  2119. package/esm.sh/~/.esmd/storage/meta/0ccf259ebde077a12d90e293b1b57c71c6a7e5681b3d370701d8b837374c471d +3 -0
  2120. package/esm.sh/~/.esmd/storage/meta/2ff07cad0d49c3918c0d7e540f7c3a4de6365f0fa900d2571abdd3d0c6f752ad +5 -0
  2121. package/esm.sh/~/.esmd/storage/meta/4ed866cb0ae082373db4adbc9a767ed1f72aaab7ce2617c1a26306b2243fb906 +3 -0
  2122. package/esm.sh/~/.esmd/storage/meta/632c0342785a7316482a17aab04f0c39418d947fce8e7bb029e14c2e71fcfcf4 +5 -0
  2123. package/esm.sh/~/.esmd/storage/meta/76592bfc53893b8e9a350b84dcbc221b3f579ee5dedfdde8246f32339dc2e1aa +3 -0
  2124. package/esm.sh/~/.esmd/storage/meta/94595f12b0002bcf04f539ef3d8f0b6b4354211e0d8c600a7d89febd3674fef7 +4 -0
  2125. package/esm.sh/~/.esmd/storage/meta/c0b76f9c9eb165371fa7d6c0f45305fa8b9f0f5ce643c18f5c3141b8922204ad +3 -0
  2126. package/esm.sh/~/.esmd/storage/meta/d03278ae19ef7972f5b610bd42fc0203f6179d7eace0f621c787127d8edf810e +4 -0
  2127. package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs +12 -0
  2128. package/esm.sh/~/.esmd/storage/modules/@vue/runtime-dom@3.5.35/es2022/runtime-dom.mjs.map +1 -0
  2129. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs +4 -0
  2130. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/core.mjs.map +1 -0
  2131. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs +3 -0
  2132. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/javascript.mjs.map +1 -0
  2133. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs +3 -0
  2134. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/json.mjs.map +1 -0
  2135. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs +3 -0
  2136. package/esm.sh/~/.esmd/storage/modules/highlight.js@11.9.0/es2022/lib/languages/xml.mjs.map +1 -0
  2137. package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs +4 -0
  2138. package/esm.sh/~/.esmd/storage/modules/md4w@0.2.7/es2022/md4w.mjs.map +1 -0
  2139. package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs +16 -0
  2140. package/esm.sh/~/.esmd/storage/modules/react@19.2.4/es2022/react.mjs.map +1 -0
  2141. package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs +12 -0
  2142. package/esm.sh/~/.esmd/storage/modules/vue@3.5.35/es2022/vue.mjs.map +1 -0
  2143. package/package.json +1 -1
  2144. package/AGENTS.md +0 -5
  2145. package/chrome-devtools-mcp.skill +0 -0
@@ -0,0 +1,4369 @@
1
+ // NOTE: Users of the `experimental` builds of React should add a reference
2
+ // to 'react/experimental' in their project. See experimental.d.ts's top comment
3
+ // for reference and documentation on how exactly to do it.
4
+
5
+ /// <reference path="global.d.ts" />
6
+
7
+ import * as CSS from "csstype";
8
+
9
+ type NativeAnimationEvent = AnimationEvent;
10
+ type NativeClipboardEvent = ClipboardEvent;
11
+ type NativeCompositionEvent = CompositionEvent;
12
+ type NativeDragEvent = DragEvent;
13
+ type NativeFocusEvent = FocusEvent;
14
+ type NativeInputEvent = InputEvent;
15
+ type NativeKeyboardEvent = KeyboardEvent;
16
+ type NativeMouseEvent = MouseEvent;
17
+ type NativeTouchEvent = TouchEvent;
18
+ type NativePointerEvent = PointerEvent;
19
+ type NativeSubmitEvent = SubmitEvent;
20
+ type NativeToggleEvent = ToggleEvent;
21
+ type NativeTransitionEvent = TransitionEvent;
22
+ type NativeUIEvent = UIEvent;
23
+ type NativeWheelEvent = WheelEvent;
24
+
25
+ /**
26
+ * Used to represent DOM API's where users can either pass
27
+ * true or false as a boolean or as its equivalent strings.
28
+ */
29
+ type Booleanish = boolean | "true" | "false";
30
+
31
+ /**
32
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/crossorigin MDN}
33
+ */
34
+ type CrossOrigin = "anonymous" | "use-credentials" | "" | undefined;
35
+
36
+ declare const UNDEFINED_VOID_ONLY: unique symbol;
37
+
38
+ /**
39
+ * @internal Use `Awaited<ReactNode>` instead
40
+ */
41
+ // Helper type to enable `Awaited<ReactNode>`.
42
+ // Must be a copy of the non-thenables of `ReactNode`.
43
+ type AwaitedReactNode =
44
+ | React.ReactElement
45
+ | string
46
+ | number
47
+ | bigint
48
+ | Iterable<React.ReactNode>
49
+ | React.ReactPortal
50
+ | boolean
51
+ | null
52
+ | undefined
53
+ | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES[
54
+ keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES
55
+ ];
56
+
57
+ /**
58
+ * The function returned from an effect passed to {@link React.useEffect useEffect},
59
+ * which can be used to clean up the effect when the component unmounts.
60
+ *
61
+ * @see {@link https://react.dev/reference/react/useEffect React Docs}
62
+ */
63
+ type Destructor = () => void | { [UNDEFINED_VOID_ONLY]: never };
64
+ type VoidOrUndefinedOnly = void | { [UNDEFINED_VOID_ONLY]: never };
65
+
66
+ // eslint-disable-next-line @definitelytyped/export-just-namespace
67
+ export = React;
68
+ export as namespace React;
69
+
70
+ declare namespace React {
71
+ //
72
+ // React Elements
73
+ // ----------------------------------------------------------------------
74
+
75
+ /**
76
+ * Used to retrieve the possible components which accept a given set of props.
77
+ *
78
+ * Can be passed no type parameters to get a union of all possible components
79
+ * and tags.
80
+ *
81
+ * Is a superset of {@link ComponentType}.
82
+ *
83
+ * @template P The props to match against. If not passed, defaults to any.
84
+ * @template Tag An optional tag to match against. If not passed, attempts to match against all possible tags.
85
+ *
86
+ * @example
87
+ *
88
+ * ```tsx
89
+ * // All components and tags (img, embed etc.)
90
+ * // which accept `src`
91
+ * type SrcComponents = ElementType<{ src: any }>;
92
+ * ```
93
+ *
94
+ * @example
95
+ *
96
+ * ```tsx
97
+ * // All components
98
+ * type AllComponents = ElementType;
99
+ * ```
100
+ *
101
+ * @example
102
+ *
103
+ * ```tsx
104
+ * // All custom components which match `src`, and tags which
105
+ * // match `src`, narrowed down to just `audio` and `embed`
106
+ * type SrcComponents = ElementType<{ src: any }, 'audio' | 'embed'>;
107
+ * ```
108
+ */
109
+ type ElementType<P = any, Tag extends keyof JSX.IntrinsicElements = keyof JSX.IntrinsicElements> =
110
+ | { [K in Tag]: P extends JSX.IntrinsicElements[K] ? K : never }[Tag]
111
+ | ComponentType<P>;
112
+
113
+ /**
114
+ * Represents any user-defined component, either as a function or a class.
115
+ *
116
+ * Similar to {@link JSXElementConstructor}, but with extra properties like
117
+ * {@link FunctionComponent.defaultProps defaultProps }.
118
+ *
119
+ * @template P The props the component accepts.
120
+ *
121
+ * @see {@link ComponentClass}
122
+ * @see {@link FunctionComponent}
123
+ */
124
+ type ComponentType<P = {}> = ComponentClass<P> | FunctionComponent<P>;
125
+
126
+ /**
127
+ * Represents any user-defined component, either as a function or a class.
128
+ *
129
+ * Similar to {@link ComponentType}, but without extra properties like
130
+ * {@link FunctionComponent.defaultProps defaultProps }.
131
+ *
132
+ * @template P The props the component accepts.
133
+ */
134
+ type JSXElementConstructor<P> =
135
+ | ((
136
+ props: P,
137
+ ) => ReactNode | Promise<ReactNode>)
138
+ // constructor signature must match React.Component
139
+ | (new(props: P, context: any) => Component<any, any>);
140
+
141
+ /**
142
+ * Created by {@link createRef}, or {@link useRef} when passed `null`.
143
+ *
144
+ * @template T The type of the ref's value.
145
+ *
146
+ * @example
147
+ *
148
+ * ```tsx
149
+ * const ref = createRef<HTMLDivElement>();
150
+ *
151
+ * ref.current = document.createElement('div'); // Error
152
+ * ```
153
+ */
154
+ interface RefObject<T> {
155
+ /**
156
+ * The current value of the ref.
157
+ */
158
+ current: T;
159
+ }
160
+
161
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES {
162
+ }
163
+ /**
164
+ * A callback fired whenever the ref's value changes.
165
+ *
166
+ * @template T The type of the ref's value.
167
+ *
168
+ * @see {@link https://react.dev/reference/react-dom/components/common#ref-callback React Docs}
169
+ *
170
+ * @example
171
+ *
172
+ * ```tsx
173
+ * <div ref={(node) => console.log(node)} />
174
+ * ```
175
+ */
176
+ type RefCallback<T> = {
177
+ bivarianceHack(
178
+ instance: T | null,
179
+ ):
180
+ | void
181
+ | (() => VoidOrUndefinedOnly)
182
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[
183
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES
184
+ ];
185
+ }["bivarianceHack"];
186
+
187
+ /**
188
+ * A union type of all possible shapes for React refs.
189
+ *
190
+ * @see {@link RefCallback}
191
+ * @see {@link RefObject}
192
+ */
193
+
194
+ type Ref<T> = RefCallback<T> | RefObject<T | null> | null;
195
+ /**
196
+ * @deprecated Use `Ref` instead. String refs are no longer supported.
197
+ * If you're typing a library with support for React versions with string refs, use `RefAttributes<T>['ref']` instead.
198
+ */
199
+ type LegacyRef<T> = Ref<T>;
200
+ /**
201
+ * @deprecated Use `ComponentRef<T>` instead
202
+ *
203
+ * Retrieves the type of the 'ref' prop for a given component type or tag name.
204
+ *
205
+ * @template C The component type.
206
+ *
207
+ * @example
208
+ *
209
+ * ```tsx
210
+ * type MyComponentRef = React.ElementRef<typeof MyComponent>;
211
+ * ```
212
+ *
213
+ * @example
214
+ *
215
+ * ```tsx
216
+ * type DivRef = React.ElementRef<'div'>;
217
+ * ```
218
+ */
219
+ type ElementRef<
220
+ C extends
221
+ | ForwardRefExoticComponent<any>
222
+ | { new(props: any, context: any): Component<any> }
223
+ | ((props: any) => ReactNode)
224
+ | keyof JSX.IntrinsicElements,
225
+ > = ComponentRef<C>;
226
+
227
+ type ComponentState = any;
228
+
229
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_KEY_TYPES {}
230
+
231
+ /**
232
+ * A value which uniquely identifies a node among items in an array.
233
+ *
234
+ * @see {@link https://react.dev/learn/rendering-lists#keeping-list-items-in-order-with-key React Docs}
235
+ */
236
+ type Key =
237
+ | string
238
+ | number
239
+ | bigint
240
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_KEY_TYPES[
241
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_KEY_TYPES
242
+ ];
243
+
244
+ /**
245
+ * @internal The props any component can receive.
246
+ * You don't have to add this type. All components automatically accept these props.
247
+ * ```tsx
248
+ * const Component = () => <div />;
249
+ * <Component key="one" />
250
+ * ```
251
+ *
252
+ * WARNING: The implementation of a component will never have access to these attributes.
253
+ * The following example would be incorrect usage because {@link Component} would never have access to `key`:
254
+ * ```tsx
255
+ * const Component = (props: React.Attributes) => props.key;
256
+ * ```
257
+ */
258
+ interface Attributes {
259
+ key?: Key | null | undefined;
260
+ }
261
+ /**
262
+ * The props any component accepting refs can receive.
263
+ * Class components, built-in browser components (e.g. `div`) and forwardRef components can receive refs and automatically accept these props.
264
+ * ```tsx
265
+ * const Component = forwardRef(() => <div />);
266
+ * <Component ref={(current) => console.log(current)} />
267
+ * ```
268
+ *
269
+ * You only need this type if you manually author the types of props that need to be compatible with legacy refs.
270
+ * ```tsx
271
+ * interface Props extends React.RefAttributes<HTMLDivElement> {}
272
+ * declare const Component: React.FunctionComponent<Props>;
273
+ * ```
274
+ *
275
+ * Otherwise it's simpler to directly use {@link Ref} since you can safely use the
276
+ * props type to describe to props that a consumer can pass to the component
277
+ * as well as describing the props the implementation of a component "sees".
278
+ * {@link RefAttributes} is generally not safe to describe both consumer and seen props.
279
+ *
280
+ * ```tsx
281
+ * interface Props extends {
282
+ * ref?: React.Ref<HTMLDivElement> | undefined;
283
+ * }
284
+ * declare const Component: React.FunctionComponent<Props>;
285
+ * ```
286
+ *
287
+ * WARNING: The implementation of a component will not have access to the same type in versions of React supporting string refs.
288
+ * The following example would be incorrect usage because {@link Component} would never have access to a `ref` with type `string`
289
+ * ```tsx
290
+ * const Component = (props: React.RefAttributes) => props.ref;
291
+ * ```
292
+ */
293
+ interface RefAttributes<T> extends Attributes {
294
+ /**
295
+ * Allows getting a ref to the component instance.
296
+ * Once the component unmounts, React will set `ref.current` to `null`
297
+ * (or call the ref with `null` if you passed a callback ref).
298
+ *
299
+ * @see {@link https://react.dev/learn/referencing-values-with-refs#refs-and-the-dom React Docs}
300
+ */
301
+ ref?: Ref<T> | undefined;
302
+ }
303
+
304
+ /**
305
+ * Represents the built-in attributes available to class components.
306
+ */
307
+ interface ClassAttributes<T> extends RefAttributes<T> {
308
+ }
309
+
310
+ /**
311
+ * Represents a JSX element.
312
+ *
313
+ * Where {@link ReactNode} represents everything that can be rendered, `ReactElement`
314
+ * only represents JSX.
315
+ *
316
+ * @template P The type of the props object
317
+ * @template T The type of the component or tag
318
+ *
319
+ * @example
320
+ *
321
+ * ```tsx
322
+ * const element: ReactElement = <div />;
323
+ * ```
324
+ */
325
+ interface ReactElement<
326
+ P = unknown,
327
+ T extends string | JSXElementConstructor<any> = string | JSXElementConstructor<any>,
328
+ > {
329
+ type: T;
330
+ props: P;
331
+ key: string | null;
332
+ }
333
+
334
+ /**
335
+ * @deprecated
336
+ */
337
+ interface ReactComponentElement<
338
+ T extends keyof JSX.IntrinsicElements | JSXElementConstructor<any>,
339
+ P = Pick<ComponentProps<T>, Exclude<keyof ComponentProps<T>, "key" | "ref">>,
340
+ > extends ReactElement<P, Exclude<T, number>> {}
341
+
342
+ /**
343
+ * @deprecated Use `ReactElement<P, React.FunctionComponent<P>>`
344
+ */
345
+ interface FunctionComponentElement<P> extends ReactElement<P, FunctionComponent<P>> {
346
+ /**
347
+ * @deprecated Use `element.props.ref` instead.
348
+ */
349
+ ref?: ("ref" extends keyof P ? P extends { ref?: infer R | undefined } ? R : never : never) | undefined;
350
+ }
351
+
352
+ /**
353
+ * @deprecated Use `ReactElement<P, React.ComponentClass<P>>`
354
+ */
355
+ type CElement<P, T extends Component<P, ComponentState>> = ComponentElement<P, T>;
356
+ /**
357
+ * @deprecated Use `ReactElement<P, React.ComponentClass<P>>`
358
+ */
359
+ interface ComponentElement<P, T extends Component<P, ComponentState>> extends ReactElement<P, ComponentClass<P>> {
360
+ /**
361
+ * @deprecated Use `element.props.ref` instead.
362
+ */
363
+ ref?: Ref<T> | undefined;
364
+ }
365
+
366
+ /**
367
+ * @deprecated Use {@link ComponentElement} instead.
368
+ */
369
+ type ClassicElement<P> = CElement<P, ClassicComponent<P, ComponentState>>;
370
+
371
+ // string fallback for custom web-components
372
+ /**
373
+ * @deprecated Use `ReactElement<P, string>`
374
+ */
375
+ interface DOMElement<P extends HTMLAttributes<T> | SVGAttributes<T>, T extends Element>
376
+ extends ReactElement<P, string>
377
+ {
378
+ /**
379
+ * @deprecated Use `element.props.ref` instead.
380
+ */
381
+ ref: Ref<T>;
382
+ }
383
+
384
+ // ReactHTML for ReactHTMLElement
385
+ interface ReactHTMLElement<T extends HTMLElement> extends DetailedReactHTMLElement<AllHTMLAttributes<T>, T> {}
386
+
387
+ interface DetailedReactHTMLElement<P extends HTMLAttributes<T>, T extends HTMLElement> extends DOMElement<P, T> {
388
+ type: HTMLElementType;
389
+ }
390
+
391
+ // ReactSVG for ReactSVGElement
392
+ interface ReactSVGElement extends DOMElement<SVGAttributes<SVGElement>, SVGElement> {
393
+ type: SVGElementType;
394
+ }
395
+
396
+ interface ReactPortal extends ReactElement {
397
+ children: ReactNode;
398
+ }
399
+
400
+ /**
401
+ * Different release channels declare additional types of ReactNode this particular release channel accepts.
402
+ * App or library types should never augment this interface.
403
+ */
404
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES {}
405
+
406
+ /**
407
+ * Represents all of the things React can render.
408
+ *
409
+ * Where {@link ReactElement} only represents JSX, `ReactNode` represents everything that can be rendered.
410
+ *
411
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/reference/reactnode/ React TypeScript Cheatsheet}
412
+ *
413
+ * @example
414
+ *
415
+ * ```tsx
416
+ * // Typing children
417
+ * type Props = { children: ReactNode }
418
+ *
419
+ * const Component = ({ children }: Props) => <div>{children}</div>
420
+ *
421
+ * <Component>hello</Component>
422
+ * ```
423
+ *
424
+ * @example
425
+ *
426
+ * ```tsx
427
+ * // Typing a custom element
428
+ * type Props = { customElement: ReactNode }
429
+ *
430
+ * const Component = ({ customElement }: Props) => <div>{customElement}</div>
431
+ *
432
+ * <Component customElement={<div>hello</div>} />
433
+ * ```
434
+ */
435
+ // non-thenables need to be kept in sync with AwaitedReactNode
436
+ type ReactNode =
437
+ | ReactElement
438
+ | string
439
+ | number
440
+ | bigint
441
+ | Iterable<ReactNode>
442
+ | ReactPortal
443
+ | boolean
444
+ | null
445
+ | undefined
446
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES[
447
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_REACT_NODES
448
+ ]
449
+ | Promise<AwaitedReactNode>;
450
+
451
+ //
452
+ // Top Level API
453
+ // ----------------------------------------------------------------------
454
+
455
+ // DOM Elements
456
+ // TODO: generalize this to everything in `keyof ReactHTML`, not just "input"
457
+ function createElement(
458
+ type: "input",
459
+ props?: InputHTMLAttributes<HTMLInputElement> & ClassAttributes<HTMLInputElement> | null,
460
+ ...children: ReactNode[]
461
+ ): DetailedReactHTMLElement<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
462
+ function createElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
463
+ type: HTMLElementType,
464
+ props?: ClassAttributes<T> & P | null,
465
+ ...children: ReactNode[]
466
+ ): DetailedReactHTMLElement<P, T>;
467
+ function createElement<P extends SVGAttributes<T>, T extends SVGElement>(
468
+ type: SVGElementType,
469
+ props?: ClassAttributes<T> & P | null,
470
+ ...children: ReactNode[]
471
+ ): ReactSVGElement;
472
+ function createElement<P extends DOMAttributes<T>, T extends Element>(
473
+ type: string,
474
+ props?: ClassAttributes<T> & P | null,
475
+ ...children: ReactNode[]
476
+ ): DOMElement<P, T>;
477
+
478
+ // Custom components
479
+
480
+ function createElement<P extends {}>(
481
+ type: FunctionComponent<P>,
482
+ props?: Attributes & P | null,
483
+ ...children: ReactNode[]
484
+ ): FunctionComponentElement<P>;
485
+ function createElement<P extends {}, T extends Component<P, ComponentState>, C extends ComponentClass<P>>(
486
+ type: ClassType<P, T, C>,
487
+ props?: ClassAttributes<T> & P | null,
488
+ ...children: ReactNode[]
489
+ ): CElement<P, T>;
490
+ function createElement<P extends {}>(
491
+ type: FunctionComponent<P> | ComponentClass<P> | string,
492
+ props?: Attributes & P | null,
493
+ ...children: ReactNode[]
494
+ ): ReactElement<P>;
495
+
496
+ // DOM Elements
497
+ // ReactHTMLElement
498
+ function cloneElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
499
+ element: DetailedReactHTMLElement<P, T>,
500
+ props?: P,
501
+ ...children: ReactNode[]
502
+ ): DetailedReactHTMLElement<P, T>;
503
+ // ReactHTMLElement, less specific
504
+ function cloneElement<P extends HTMLAttributes<T>, T extends HTMLElement>(
505
+ element: ReactHTMLElement<T>,
506
+ props?: P,
507
+ ...children: ReactNode[]
508
+ ): ReactHTMLElement<T>;
509
+ // SVGElement
510
+ function cloneElement<P extends SVGAttributes<T>, T extends SVGElement>(
511
+ element: ReactSVGElement,
512
+ props?: P,
513
+ ...children: ReactNode[]
514
+ ): ReactSVGElement;
515
+ // DOM Element (has to be the last, because type checking stops at first overload that fits)
516
+ function cloneElement<P extends DOMAttributes<T>, T extends Element>(
517
+ element: DOMElement<P, T>,
518
+ props?: DOMAttributes<T> & P,
519
+ ...children: ReactNode[]
520
+ ): DOMElement<P, T>;
521
+
522
+ // Custom components
523
+ function cloneElement<P>(
524
+ element: FunctionComponentElement<P>,
525
+ props?: Partial<P> & Attributes,
526
+ ...children: ReactNode[]
527
+ ): FunctionComponentElement<P>;
528
+ function cloneElement<P, T extends Component<P, ComponentState>>(
529
+ element: CElement<P, T>,
530
+ props?: Partial<P> & ClassAttributes<T>,
531
+ ...children: ReactNode[]
532
+ ): CElement<P, T>;
533
+ function cloneElement<P>(
534
+ element: ReactElement<P>,
535
+ props?: Partial<P> & Attributes,
536
+ ...children: ReactNode[]
537
+ ): ReactElement<P>;
538
+
539
+ /**
540
+ * Describes the props accepted by a Context {@link Provider}.
541
+ *
542
+ * @template T The type of the value the context provides.
543
+ */
544
+ interface ProviderProps<T> {
545
+ value: T;
546
+ children?: ReactNode | undefined;
547
+ }
548
+
549
+ /**
550
+ * Describes the props accepted by a Context {@link Consumer}.
551
+ *
552
+ * @template T The type of the value the context provides.
553
+ */
554
+ interface ConsumerProps<T> {
555
+ children: (value: T) => ReactNode;
556
+ }
557
+
558
+ /**
559
+ * An object masquerading as a component. These are created by functions
560
+ * like {@link forwardRef}, {@link memo}, and {@link createContext}.
561
+ *
562
+ * In order to make TypeScript work, we pretend that they are normal
563
+ * components.
564
+ *
565
+ * But they are, in fact, not callable - instead, they are objects which
566
+ * are treated specially by the renderer.
567
+ *
568
+ * @template P The props the component accepts.
569
+ */
570
+ interface ExoticComponent<P = {}> {
571
+ (props: P): ReactNode;
572
+ readonly $$typeof: symbol;
573
+ }
574
+
575
+ /**
576
+ * An {@link ExoticComponent} with a `displayName` property applied to it.
577
+ *
578
+ * @template P The props the component accepts.
579
+ */
580
+ interface NamedExoticComponent<P = {}> extends ExoticComponent<P> {
581
+ /**
582
+ * Used in debugging messages. You might want to set it
583
+ * explicitly if you want to display a different name for
584
+ * debugging purposes.
585
+ *
586
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
587
+ */
588
+ displayName?: string | undefined;
589
+ }
590
+
591
+ /**
592
+ * An {@link ExoticComponent} with a `propTypes` property applied to it.
593
+ *
594
+ * @template P The props the component accepts.
595
+ */
596
+ interface ProviderExoticComponent<P> extends ExoticComponent<P> {
597
+ }
598
+
599
+ /**
600
+ * Used to retrieve the type of a context object from a {@link Context}.
601
+ *
602
+ * @template C The context object.
603
+ *
604
+ * @example
605
+ *
606
+ * ```tsx
607
+ * import { createContext } from 'react';
608
+ *
609
+ * const MyContext = createContext({ foo: 'bar' });
610
+ *
611
+ * type ContextType = ContextType<typeof MyContext>;
612
+ * // ContextType = { foo: string }
613
+ * ```
614
+ */
615
+ type ContextType<C extends Context<any>> = C extends Context<infer T> ? T : never;
616
+
617
+ /**
618
+ * Wraps your components to specify the value of this context for all components inside.
619
+ *
620
+ * @see {@link https://react.dev/reference/react/createContext#provider React Docs}
621
+ *
622
+ * @example
623
+ *
624
+ * ```tsx
625
+ * import { createContext } from 'react';
626
+ *
627
+ * const ThemeContext = createContext('light');
628
+ *
629
+ * function App() {
630
+ * return (
631
+ * <ThemeContext.Provider value="dark">
632
+ * <Toolbar />
633
+ * </ThemeContext.Provider>
634
+ * );
635
+ * }
636
+ * ```
637
+ */
638
+ type Provider<T> = ProviderExoticComponent<ProviderProps<T>>;
639
+
640
+ /**
641
+ * The old way to read context, before {@link useContext} existed.
642
+ *
643
+ * @see {@link https://react.dev/reference/react/createContext#consumer React Docs}
644
+ *
645
+ * @example
646
+ *
647
+ * ```tsx
648
+ * import { UserContext } from './user-context';
649
+ *
650
+ * function Avatar() {
651
+ * return (
652
+ * <UserContext.Consumer>
653
+ * {user => <img src={user.profileImage} alt={user.name} />}
654
+ * </UserContext.Consumer>
655
+ * );
656
+ * }
657
+ * ```
658
+ */
659
+ type Consumer<T> = ExoticComponent<ConsumerProps<T>>;
660
+
661
+ /**
662
+ * Context lets components pass information deep down without explicitly
663
+ * passing props.
664
+ *
665
+ * Created from {@link createContext}
666
+ *
667
+ * @see {@link https://react.dev/learn/passing-data-deeply-with-context React Docs}
668
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/context/ React TypeScript Cheatsheet}
669
+ *
670
+ * @example
671
+ *
672
+ * ```tsx
673
+ * import { createContext } from 'react';
674
+ *
675
+ * const ThemeContext = createContext('light');
676
+ * ```
677
+ */
678
+ interface Context<T> extends Provider<T> {
679
+ Provider: Provider<T>;
680
+ Consumer: Consumer<T>;
681
+ /**
682
+ * Used in debugging messages. You might want to set it
683
+ * explicitly if you want to display a different name for
684
+ * debugging purposes.
685
+ *
686
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
687
+ */
688
+ displayName?: string | undefined;
689
+ }
690
+
691
+ /**
692
+ * Lets you create a {@link Context} that components can provide or read.
693
+ *
694
+ * @param defaultValue The value you want the context to have when there is no matching
695
+ * {@link Provider} in the tree above the component reading the context. This is meant
696
+ * as a "last resort" fallback.
697
+ *
698
+ * @see {@link https://react.dev/reference/react/createContext#reference React Docs}
699
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/context/ React TypeScript Cheatsheet}
700
+ *
701
+ * @example
702
+ *
703
+ * ```tsx
704
+ * import { createContext } from 'react';
705
+ *
706
+ * const ThemeContext = createContext('light');
707
+ * function App() {
708
+ * return (
709
+ * <ThemeContext value="dark">
710
+ * <Toolbar />
711
+ * </ThemeContext>
712
+ * );
713
+ * }
714
+ * ```
715
+ */
716
+ function createContext<T>(
717
+ // If you thought this should be optional, see
718
+ // https://github.com/DefinitelyTyped/DefinitelyTyped/pull/24509#issuecomment-382213106
719
+ defaultValue: T,
720
+ ): Context<T>;
721
+
722
+ function isValidElement<P>(object: {} | null | undefined): object is ReactElement<P>;
723
+
724
+ const Children: {
725
+ map<T, C>(
726
+ children: C | readonly C[],
727
+ fn: (child: C, index: number) => T,
728
+ ): C extends null | undefined ? C : Array<Exclude<T, boolean | null | undefined>>;
729
+ forEach<C>(children: C | readonly C[], fn: (child: C, index: number) => void): void;
730
+ count(children: any): number;
731
+ only<C>(children: C): C extends any[] ? never : C;
732
+ toArray(children: ReactNode | ReactNode[]): Array<Exclude<ReactNode, boolean | null | undefined>>;
733
+ };
734
+
735
+ export interface FragmentProps {
736
+ children?: React.ReactNode;
737
+ }
738
+ /**
739
+ * Lets you group elements without a wrapper node.
740
+ *
741
+ * @see {@link https://react.dev/reference/react/Fragment React Docs}
742
+ *
743
+ * @example
744
+ *
745
+ * ```tsx
746
+ * import { Fragment } from 'react';
747
+ *
748
+ * <Fragment>
749
+ * <td>Hello</td>
750
+ * <td>World</td>
751
+ * </Fragment>
752
+ * ```
753
+ *
754
+ * @example
755
+ *
756
+ * ```tsx
757
+ * // Using the <></> shorthand syntax:
758
+ *
759
+ * <>
760
+ * <td>Hello</td>
761
+ * <td>World</td>
762
+ * </>
763
+ * ```
764
+ */
765
+ const Fragment: ExoticComponent<FragmentProps>;
766
+
767
+ /**
768
+ * Lets you find common bugs in your components early during development.
769
+ *
770
+ * @see {@link https://react.dev/reference/react/StrictMode React Docs}
771
+ *
772
+ * @example
773
+ *
774
+ * ```tsx
775
+ * import { StrictMode } from 'react';
776
+ *
777
+ * <StrictMode>
778
+ * <App />
779
+ * </StrictMode>
780
+ * ```
781
+ */
782
+ const StrictMode: ExoticComponent<{ children?: ReactNode | undefined }>;
783
+
784
+ /**
785
+ * The props accepted by {@link Suspense}.
786
+ *
787
+ * @see {@link https://react.dev/reference/react/Suspense React Docs}
788
+ */
789
+ interface SuspenseProps {
790
+ children?: ReactNode | undefined;
791
+
792
+ /** A fallback react tree to show when a Suspense child (like React.lazy) suspends */
793
+ fallback?: ReactNode;
794
+
795
+ /**
796
+ * A name for this Suspense boundary for instrumentation purposes.
797
+ * The name will help identify this boundary in React DevTools.
798
+ */
799
+ name?: string | undefined;
800
+ }
801
+
802
+ /**
803
+ * Lets you display a fallback until its children have finished loading.
804
+ *
805
+ * @see {@link https://react.dev/reference/react/Suspense React Docs}
806
+ *
807
+ * @example
808
+ *
809
+ * ```tsx
810
+ * import { Suspense } from 'react';
811
+ *
812
+ * <Suspense fallback={<Loading />}>
813
+ * <ProfileDetails />
814
+ * </Suspense>
815
+ * ```
816
+ */
817
+ const Suspense: ExoticComponent<SuspenseProps>;
818
+ const version: string;
819
+
820
+ /**
821
+ * The callback passed to {@link ProfilerProps.onRender}.
822
+ *
823
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
824
+ */
825
+ type ProfilerOnRenderCallback = (
826
+ /**
827
+ * The string id prop of the {@link Profiler} tree that has just committed. This lets
828
+ * you identify which part of the tree was committed if you are using multiple
829
+ * profilers.
830
+ *
831
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
832
+ */
833
+ id: string,
834
+ /**
835
+ * This lets you know whether the tree has just been mounted for the first time
836
+ * or re-rendered due to a change in props, state, or hooks.
837
+ *
838
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
839
+ */
840
+ phase: "mount" | "update" | "nested-update",
841
+ /**
842
+ * The number of milliseconds spent rendering the {@link Profiler} and its descendants
843
+ * for the current update. This indicates how well the subtree makes use of
844
+ * memoization (e.g. {@link memo} and {@link useMemo}). Ideally this value should decrease
845
+ * significantly after the initial mount as many of the descendants will only need to
846
+ * re-render if their specific props change.
847
+ *
848
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
849
+ */
850
+ actualDuration: number,
851
+ /**
852
+ * The number of milliseconds estimating how much time it would take to re-render the entire
853
+ * {@link Profiler} subtree without any optimizations. It is calculated by summing up the most
854
+ * recent render durations of each component in the tree. This value estimates a worst-case
855
+ * cost of rendering (e.g. the initial mount or a tree with no memoization). Compare
856
+ * {@link actualDuration} against it to see if memoization is working.
857
+ *
858
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
859
+ */
860
+ baseDuration: number,
861
+ /**
862
+ * A numeric timestamp for when React began rendering the current update.
863
+ *
864
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
865
+ */
866
+ startTime: number,
867
+ /**
868
+ * A numeric timestamp for when React committed the current update. This value is shared
869
+ * between all profilers in a commit, enabling them to be grouped if desirable.
870
+ *
871
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
872
+ */
873
+ commitTime: number,
874
+ ) => void;
875
+
876
+ /**
877
+ * The props accepted by {@link Profiler}.
878
+ *
879
+ * @see {@link https://react.dev/reference/react/Profiler React Docs}
880
+ */
881
+ interface ProfilerProps {
882
+ children?: ReactNode | undefined;
883
+ id: string;
884
+ onRender: ProfilerOnRenderCallback;
885
+ }
886
+
887
+ /**
888
+ * Lets you measure rendering performance of a React tree programmatically.
889
+ *
890
+ * @see {@link https://react.dev/reference/react/Profiler#onrender-callback React Docs}
891
+ *
892
+ * @example
893
+ *
894
+ * ```tsx
895
+ * <Profiler id="App" onRender={onRender}>
896
+ * <App />
897
+ * </Profiler>
898
+ * ```
899
+ */
900
+ const Profiler: ExoticComponent<ProfilerProps>;
901
+
902
+ //
903
+ // Component API
904
+ // ----------------------------------------------------------------------
905
+
906
+ type ReactInstance = Component<any> | Element;
907
+
908
+ // Base component for plain JS classes
909
+ interface Component<P = {}, S = {}, SS = any> extends ComponentLifecycle<P, S, SS> {}
910
+ class Component<P, S> {
911
+ /**
912
+ * If set, `this.context` will be set at runtime to the current value of the given Context.
913
+ *
914
+ * @example
915
+ *
916
+ * ```ts
917
+ * type MyContext = number
918
+ * const Ctx = React.createContext<MyContext>(0)
919
+ *
920
+ * class Foo extends React.Component {
921
+ * static contextType = Ctx
922
+ * context!: React.ContextType<typeof Ctx>
923
+ * render () {
924
+ * return <>My context's value: {this.context}</>;
925
+ * }
926
+ * }
927
+ * ```
928
+ *
929
+ * @see {@link https://react.dev/reference/react/Component#static-contexttype}
930
+ */
931
+ static contextType?: Context<any> | undefined;
932
+
933
+ /**
934
+ * Ignored by React.
935
+ * @deprecated Only kept in types for backwards compatibility. Will be removed in a future major release.
936
+ */
937
+ static propTypes?: any;
938
+
939
+ /**
940
+ * If using React Context, re-declare this in your class to be the
941
+ * `React.ContextType` of your `static contextType`.
942
+ * Should be used with type annotation or static contextType.
943
+ *
944
+ * @example
945
+ * ```ts
946
+ * static contextType = MyContext
947
+ * // For TS pre-3.7:
948
+ * context!: React.ContextType<typeof MyContext>
949
+ * // For TS 3.7 and above:
950
+ * declare context: React.ContextType<typeof MyContext>
951
+ * ```
952
+ *
953
+ * @see {@link https://react.dev/reference/react/Component#context React Docs}
954
+ */
955
+ context: unknown;
956
+
957
+ // Keep in sync with constructor signature of JSXElementConstructor and ComponentClass.
958
+ constructor(props: P);
959
+ /**
960
+ * @param props
961
+ * @param context value of the parent {@link https://react.dev/reference/react/Component#context Context} specified
962
+ * in `contextType`.
963
+ */
964
+ // TODO: Ideally we'd infer the constructor signatur from `contextType`.
965
+ // Might be hard to ship without breaking existing code.
966
+ constructor(props: P, context: any);
967
+
968
+ // We MUST keep setState() as a unified signature because it allows proper checking of the method return type.
969
+ // See: https://github.com/DefinitelyTyped/DefinitelyTyped/issues/18365#issuecomment-351013257
970
+ // Also, the ` | S` allows intellisense to not be dumbisense
971
+ setState<K extends keyof S>(
972
+ state: ((prevState: Readonly<S>, props: Readonly<P>) => Pick<S, K> | S | null) | (Pick<S, K> | S | null),
973
+ callback?: () => void,
974
+ ): void;
975
+
976
+ forceUpdate(callback?: () => void): void;
977
+ render(): ReactNode;
978
+
979
+ readonly props: Readonly<P>;
980
+ state: Readonly<S>;
981
+ }
982
+
983
+ class PureComponent<P = {}, S = {}, SS = any> extends Component<P, S, SS> {}
984
+
985
+ /**
986
+ * @deprecated Use `ClassicComponent` from `create-react-class`
987
+ *
988
+ * @see {@link https://legacy.reactjs.org/docs/react-without-es6.html Legacy React Docs}
989
+ * @see {@link https://www.npmjs.com/package/create-react-class `create-react-class` on npm}
990
+ */
991
+ interface ClassicComponent<P = {}, S = {}> extends Component<P, S> {
992
+ replaceState(nextState: S, callback?: () => void): void;
993
+ isMounted(): boolean;
994
+ getInitialState?(): S;
995
+ }
996
+
997
+ //
998
+ // Class Interfaces
999
+ // ----------------------------------------------------------------------
1000
+
1001
+ /**
1002
+ * Represents the type of a function component. Can optionally
1003
+ * receive a type argument that represents the props the component
1004
+ * receives.
1005
+ *
1006
+ * @template P The props the component accepts.
1007
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components React TypeScript Cheatsheet}
1008
+ * @alias for {@link FunctionComponent}
1009
+ *
1010
+ * @example
1011
+ *
1012
+ * ```tsx
1013
+ * // With props:
1014
+ * type Props = { name: string }
1015
+ *
1016
+ * const MyComponent: FC<Props> = (props) => {
1017
+ * return <div>{props.name}</div>
1018
+ * }
1019
+ * ```
1020
+ *
1021
+ * @example
1022
+ *
1023
+ * ```tsx
1024
+ * // Without props:
1025
+ * const MyComponentWithoutProps: FC = () => {
1026
+ * return <div>MyComponentWithoutProps</div>
1027
+ * }
1028
+ * ```
1029
+ */
1030
+ type FC<P = {}> = FunctionComponent<P>;
1031
+
1032
+ /**
1033
+ * Represents the type of a function component. Can optionally
1034
+ * receive a type argument that represents the props the component
1035
+ * accepts.
1036
+ *
1037
+ * @template P The props the component accepts.
1038
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/function_components React TypeScript Cheatsheet}
1039
+ *
1040
+ * @example
1041
+ *
1042
+ * ```tsx
1043
+ * // With props:
1044
+ * type Props = { name: string }
1045
+ *
1046
+ * const MyComponent: FunctionComponent<Props> = (props) => {
1047
+ * return <div>{props.name}</div>
1048
+ * }
1049
+ * ```
1050
+ *
1051
+ * @example
1052
+ *
1053
+ * ```tsx
1054
+ * // Without props:
1055
+ * const MyComponentWithoutProps: FunctionComponent = () => {
1056
+ * return <div>MyComponentWithoutProps</div>
1057
+ * }
1058
+ * ```
1059
+ */
1060
+ interface FunctionComponent<P = {}> {
1061
+ (props: P): ReactNode | Promise<ReactNode>;
1062
+ /**
1063
+ * Ignored by React.
1064
+ * @deprecated Only kept in types for backwards compatibility. Will be removed in a future major release.
1065
+ */
1066
+ propTypes?: any;
1067
+ /**
1068
+ * Used in debugging messages. You might want to set it
1069
+ * explicitly if you want to display a different name for
1070
+ * debugging purposes.
1071
+ *
1072
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1073
+ *
1074
+ * @example
1075
+ *
1076
+ * ```tsx
1077
+ *
1078
+ * const MyComponent: FC = () => {
1079
+ * return <div>Hello!</div>
1080
+ * }
1081
+ *
1082
+ * MyComponent.displayName = 'MyAwesomeComponent'
1083
+ * ```
1084
+ */
1085
+ displayName?: string | undefined;
1086
+ }
1087
+
1088
+ /**
1089
+ * The type of the ref received by a {@link ForwardRefRenderFunction}.
1090
+ *
1091
+ * @see {@link ForwardRefRenderFunction}
1092
+ */
1093
+ // Making T nullable is assuming the refs will be managed by React or the component impl will write it somewhere else.
1094
+ // But this isn't necessarily true. We haven't heard complains about it yet and hopefully `forwardRef` is removed from React before we do.
1095
+ type ForwardedRef<T> = ((instance: T | null) => void) | RefObject<T | null> | null;
1096
+
1097
+ /**
1098
+ * The type of the function passed to {@link forwardRef}. This is considered different
1099
+ * to a normal {@link FunctionComponent} because it receives an additional argument,
1100
+ *
1101
+ * @param props Props passed to the component, if any.
1102
+ * @param ref A ref forwarded to the component of type {@link ForwardedRef}.
1103
+ *
1104
+ * @template T The type of the forwarded ref.
1105
+ * @template P The type of the props the component accepts.
1106
+ *
1107
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/forward_and_create_ref/ React TypeScript Cheatsheet}
1108
+ * @see {@link forwardRef}
1109
+ */
1110
+ interface ForwardRefRenderFunction<T, P = {}> {
1111
+ (props: P, ref: ForwardedRef<T>): ReactNode;
1112
+ /**
1113
+ * Used in debugging messages. You might want to set it
1114
+ * explicitly if you want to display a different name for
1115
+ * debugging purposes.
1116
+ *
1117
+ * Will show `ForwardRef(${Component.displayName || Component.name})`
1118
+ * in devtools by default, but can be given its own specific name.
1119
+ *
1120
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1121
+ */
1122
+ displayName?: string | undefined;
1123
+ /**
1124
+ * Ignored by React.
1125
+ * @deprecated Only kept in types for backwards compatibility. Will be removed in a future major release.
1126
+ */
1127
+ propTypes?: any;
1128
+ }
1129
+
1130
+ /**
1131
+ * Represents a component class in React.
1132
+ *
1133
+ * @template P The props the component accepts.
1134
+ * @template S The internal state of the component.
1135
+ */
1136
+ interface ComponentClass<P = {}, S = ComponentState> extends StaticLifecycle<P, S> {
1137
+ // constructor signature must match React.Component
1138
+ new(
1139
+ props: P,
1140
+ /**
1141
+ * Value of the parent {@link https://react.dev/reference/react/Component#context Context} specified
1142
+ * in `contextType`.
1143
+ */
1144
+ context?: any,
1145
+ ): Component<P, S>;
1146
+ /**
1147
+ * Ignored by React.
1148
+ * @deprecated Only kept in types for backwards compatibility. Will be removed in a future major release.
1149
+ */
1150
+ propTypes?: any;
1151
+ contextType?: Context<any> | undefined;
1152
+ defaultProps?: Partial<P> | undefined;
1153
+ /**
1154
+ * Used in debugging messages. You might want to set it
1155
+ * explicitly if you want to display a different name for
1156
+ * debugging purposes.
1157
+ *
1158
+ * @see {@link https://legacy.reactjs.org/docs/react-component.html#displayname Legacy React Docs}
1159
+ */
1160
+ displayName?: string | undefined;
1161
+ }
1162
+
1163
+ /**
1164
+ * @deprecated Use `ClassicComponentClass` from `create-react-class`
1165
+ *
1166
+ * @see {@link https://legacy.reactjs.org/docs/react-without-es6.html Legacy React Docs}
1167
+ * @see {@link https://www.npmjs.com/package/create-react-class `create-react-class` on npm}
1168
+ */
1169
+ interface ClassicComponentClass<P = {}> extends ComponentClass<P> {
1170
+ new(props: P): ClassicComponent<P, ComponentState>;
1171
+ getDefaultProps?(): P;
1172
+ }
1173
+
1174
+ /**
1175
+ * Used in {@link createElement} and {@link createFactory} to represent
1176
+ * a class.
1177
+ *
1178
+ * An intersection type is used to infer multiple type parameters from
1179
+ * a single argument, which is useful for many top-level API defs.
1180
+ * See {@link https://github.com/Microsoft/TypeScript/issues/7234 this GitHub issue}
1181
+ * for more info.
1182
+ */
1183
+ type ClassType<P, T extends Component<P, ComponentState>, C extends ComponentClass<P>> =
1184
+ & C
1185
+ & (new(props: P, context: any) => T);
1186
+
1187
+ //
1188
+ // Component Specs and Lifecycle
1189
+ // ----------------------------------------------------------------------
1190
+
1191
+ // This should actually be something like `Lifecycle<P, S> | DeprecatedLifecycle<P, S>`,
1192
+ // as React will _not_ call the deprecated lifecycle methods if any of the new lifecycle
1193
+ // methods are present.
1194
+ interface ComponentLifecycle<P, S, SS = any> extends NewLifecycle<P, S, SS>, DeprecatedLifecycle<P, S> {
1195
+ /**
1196
+ * Called immediately after a component is mounted. Setting state here will trigger re-rendering.
1197
+ */
1198
+ componentDidMount?(): void;
1199
+ /**
1200
+ * Called to determine whether the change in props and state should trigger a re-render.
1201
+ *
1202
+ * `Component` always returns true.
1203
+ * `PureComponent` implements a shallow comparison on props and state and returns true if any
1204
+ * props or states have changed.
1205
+ *
1206
+ * If false is returned, {@link Component.render}, `componentWillUpdate`
1207
+ * and `componentDidUpdate` will not be called.
1208
+ */
1209
+ shouldComponentUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): boolean;
1210
+ /**
1211
+ * Called immediately before a component is destroyed. Perform any necessary cleanup in this method, such as
1212
+ * cancelled network requests, or cleaning up any DOM elements created in `componentDidMount`.
1213
+ */
1214
+ componentWillUnmount?(): void;
1215
+ /**
1216
+ * Catches exceptions generated in descendant components. Unhandled exceptions will cause
1217
+ * the entire component tree to unmount.
1218
+ */
1219
+ componentDidCatch?(error: Error, errorInfo: ErrorInfo): void;
1220
+ }
1221
+
1222
+ // Unfortunately, we have no way of declaring that the component constructor must implement this
1223
+ interface StaticLifecycle<P, S> {
1224
+ getDerivedStateFromProps?: GetDerivedStateFromProps<P, S> | undefined;
1225
+ getDerivedStateFromError?: GetDerivedStateFromError<P, S> | undefined;
1226
+ }
1227
+
1228
+ type GetDerivedStateFromProps<P, S> =
1229
+ /**
1230
+ * Returns an update to a component's state based on its new props and old state.
1231
+ *
1232
+ * Note: its presence prevents any of the deprecated lifecycle methods from being invoked
1233
+ */
1234
+ (nextProps: Readonly<P>, prevState: S) => Partial<S> | null;
1235
+
1236
+ type GetDerivedStateFromError<P, S> =
1237
+ /**
1238
+ * This lifecycle is invoked after an error has been thrown by a descendant component.
1239
+ * It receives the error that was thrown as a parameter and should return a value to update state.
1240
+ *
1241
+ * Note: its presence prevents any of the deprecated lifecycle methods from being invoked
1242
+ */
1243
+ (error: any) => Partial<S> | null;
1244
+
1245
+ // This should be "infer SS" but can't use it yet
1246
+ interface NewLifecycle<P, S, SS> {
1247
+ /**
1248
+ * Runs before React applies the result of {@link Component.render render} to the document, and
1249
+ * returns an object to be given to {@link componentDidUpdate}. Useful for saving
1250
+ * things such as scroll position before {@link Component.render render} causes changes to it.
1251
+ *
1252
+ * Note: the presence of this method prevents any of the deprecated
1253
+ * lifecycle events from running.
1254
+ */
1255
+ getSnapshotBeforeUpdate?(prevProps: Readonly<P>, prevState: Readonly<S>): SS | null;
1256
+ /**
1257
+ * Called immediately after updating occurs. Not called for the initial render.
1258
+ *
1259
+ * The snapshot is only present if {@link getSnapshotBeforeUpdate} is present and returns non-null.
1260
+ */
1261
+ componentDidUpdate?(prevProps: Readonly<P>, prevState: Readonly<S>, snapshot?: SS): void;
1262
+ }
1263
+
1264
+ interface DeprecatedLifecycle<P, S> {
1265
+ /**
1266
+ * Called immediately before mounting occurs, and before {@link Component.render}.
1267
+ * Avoid introducing any side-effects or subscriptions in this method.
1268
+ *
1269
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1270
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1271
+ * this from being invoked.
1272
+ *
1273
+ * @deprecated 16.3, use {@link ComponentLifecycle.componentDidMount componentDidMount} or the constructor instead; will stop working in React 17
1274
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state}
1275
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1276
+ */
1277
+ componentWillMount?(): void;
1278
+ /**
1279
+ * Called immediately before mounting occurs, and before {@link Component.render}.
1280
+ * Avoid introducing any side-effects or subscriptions in this method.
1281
+ *
1282
+ * This method will not stop working in React 17.
1283
+ *
1284
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1285
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1286
+ * this from being invoked.
1287
+ *
1288
+ * @deprecated 16.3, use {@link ComponentLifecycle.componentDidMount componentDidMount} or the constructor instead
1289
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#initializing-state}
1290
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1291
+ */
1292
+ UNSAFE_componentWillMount?(): void;
1293
+ /**
1294
+ * Called when the component may be receiving new props.
1295
+ * React may call this even if props have not changed, so be sure to compare new and existing
1296
+ * props if you only want to handle changes.
1297
+ *
1298
+ * Calling {@link Component.setState} generally does not trigger this method.
1299
+ *
1300
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1301
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1302
+ * this from being invoked.
1303
+ *
1304
+ * @deprecated 16.3, use static {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} instead; will stop working in React 17
1305
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props}
1306
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1307
+ */
1308
+ componentWillReceiveProps?(nextProps: Readonly<P>, nextContext: any): void;
1309
+ /**
1310
+ * Called when the component may be receiving new props.
1311
+ * React may call this even if props have not changed, so be sure to compare new and existing
1312
+ * props if you only want to handle changes.
1313
+ *
1314
+ * Calling {@link Component.setState} generally does not trigger this method.
1315
+ *
1316
+ * This method will not stop working in React 17.
1317
+ *
1318
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1319
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1320
+ * this from being invoked.
1321
+ *
1322
+ * @deprecated 16.3, use static {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} instead
1323
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#updating-state-based-on-props}
1324
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1325
+ */
1326
+ UNSAFE_componentWillReceiveProps?(nextProps: Readonly<P>, nextContext: any): void;
1327
+ /**
1328
+ * Called immediately before rendering when new props or state is received. Not called for the initial render.
1329
+ *
1330
+ * Note: You cannot call {@link Component.setState} here.
1331
+ *
1332
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1333
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1334
+ * this from being invoked.
1335
+ *
1336
+ * @deprecated 16.3, use getSnapshotBeforeUpdate instead; will stop working in React 17
1337
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update}
1338
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1339
+ */
1340
+ componentWillUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): void;
1341
+ /**
1342
+ * Called immediately before rendering when new props or state is received. Not called for the initial render.
1343
+ *
1344
+ * Note: You cannot call {@link Component.setState} here.
1345
+ *
1346
+ * This method will not stop working in React 17.
1347
+ *
1348
+ * Note: the presence of {@link NewLifecycle.getSnapshotBeforeUpdate getSnapshotBeforeUpdate}
1349
+ * or {@link StaticLifecycle.getDerivedStateFromProps getDerivedStateFromProps} prevents
1350
+ * this from being invoked.
1351
+ *
1352
+ * @deprecated 16.3, use getSnapshotBeforeUpdate instead
1353
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#reading-dom-properties-before-an-update}
1354
+ * @see {@link https://legacy.reactjs.org/blog/2018/03/27/update-on-async-rendering.html#gradual-migration-path}
1355
+ */
1356
+ UNSAFE_componentWillUpdate?(nextProps: Readonly<P>, nextState: Readonly<S>, nextContext: any): void;
1357
+ }
1358
+
1359
+ function createRef<T>(): RefObject<T | null>;
1360
+
1361
+ /**
1362
+ * The type of the component returned from {@link forwardRef}.
1363
+ *
1364
+ * @template P The props the component accepts, if any.
1365
+ *
1366
+ * @see {@link ExoticComponent}
1367
+ */
1368
+ interface ForwardRefExoticComponent<P> extends NamedExoticComponent<P> {
1369
+ /**
1370
+ * Ignored by React.
1371
+ * @deprecated Only kept in types for backwards compatibility. Will be removed in a future major release.
1372
+ */
1373
+ propTypes?: any;
1374
+ }
1375
+
1376
+ /**
1377
+ * Lets your component expose a DOM node to a parent component
1378
+ * using a ref.
1379
+ *
1380
+ * @see {@link https://react.dev/reference/react/forwardRef React Docs}
1381
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/basic/getting-started/forward_and_create_ref/ React TypeScript Cheatsheet}
1382
+ *
1383
+ * @param render See the {@link ForwardRefRenderFunction}.
1384
+ *
1385
+ * @template T The type of the DOM node.
1386
+ * @template P The props the component accepts, if any.
1387
+ *
1388
+ * @example
1389
+ *
1390
+ * ```tsx
1391
+ * interface Props {
1392
+ * children?: ReactNode;
1393
+ * type: "submit" | "button";
1394
+ * }
1395
+ *
1396
+ * export const FancyButton = forwardRef<HTMLButtonElement, Props>((props, ref) => (
1397
+ * <button ref={ref} className="MyClassName" type={props.type}>
1398
+ * {props.children}
1399
+ * </button>
1400
+ * ));
1401
+ * ```
1402
+ */
1403
+ function forwardRef<T, P = {}>(
1404
+ render: ForwardRefRenderFunction<T, PropsWithoutRef<P>>,
1405
+ ): ForwardRefExoticComponent<PropsWithoutRef<P> & RefAttributes<T>>;
1406
+
1407
+ /**
1408
+ * Omits the 'ref' attribute from the given props object.
1409
+ *
1410
+ * @template Props The props object type.
1411
+ */
1412
+ type PropsWithoutRef<Props> =
1413
+ // Omit would not be sufficient for this. We'd like to avoid unnecessary mapping and need a distributive conditional to support unions.
1414
+ // see: https://www.typescriptlang.org/docs/handbook/2/conditional-types.html#distributive-conditional-types
1415
+ // https://github.com/Microsoft/TypeScript/issues/28339
1416
+ Props extends any ? ("ref" extends keyof Props ? Omit<Props, "ref"> : Props) : Props;
1417
+ /**
1418
+ * Ensures that the props do not include string ref, which cannot be forwarded
1419
+ * @deprecated Use `Props` directly. `PropsWithRef<Props>` is just an alias for `Props`
1420
+ */
1421
+ type PropsWithRef<Props> = Props;
1422
+
1423
+ type PropsWithChildren<P = unknown> = P & { children?: ReactNode | undefined };
1424
+
1425
+ /**
1426
+ * Used to retrieve the props a component accepts. Can either be passed a string,
1427
+ * indicating a DOM element (e.g. 'div', 'span', etc.) or the type of a React
1428
+ * component.
1429
+ *
1430
+ * It's usually better to use {@link ComponentPropsWithRef} or {@link ComponentPropsWithoutRef}
1431
+ * instead of this type, as they let you be explicit about whether or not to include
1432
+ * the `ref` prop.
1433
+ *
1434
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/reference/ComponentProps React TypeScript Cheatsheet}
1435
+ *
1436
+ * @example
1437
+ *
1438
+ * ```tsx
1439
+ * // Retrieves the props an 'input' element accepts
1440
+ * type InputProps = React.ComponentProps<'input'>;
1441
+ * ```
1442
+ *
1443
+ * @example
1444
+ *
1445
+ * ```tsx
1446
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1447
+ *
1448
+ * // Retrieves the props 'MyComponent' accepts
1449
+ * type MyComponentProps = React.ComponentProps<typeof MyComponent>;
1450
+ * ```
1451
+ */
1452
+ type ComponentProps<T extends keyof JSX.IntrinsicElements | JSXElementConstructor<any>> = T extends
1453
+ JSXElementConstructor<infer Props> ? Props
1454
+ : T extends keyof JSX.IntrinsicElements ? JSX.IntrinsicElements[T]
1455
+ : {};
1456
+
1457
+ /**
1458
+ * Used to retrieve the props a component accepts with its ref. Can either be
1459
+ * passed a string, indicating a DOM element (e.g. 'div', 'span', etc.) or the
1460
+ * type of a React component.
1461
+ *
1462
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/reference/ComponentProps React TypeScript Cheatsheet}
1463
+ *
1464
+ * @example
1465
+ *
1466
+ * ```tsx
1467
+ * // Retrieves the props an 'input' element accepts
1468
+ * type InputProps = React.ComponentPropsWithRef<'input'>;
1469
+ * ```
1470
+ *
1471
+ * @example
1472
+ *
1473
+ * ```tsx
1474
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1475
+ *
1476
+ * // Retrieves the props 'MyComponent' accepts
1477
+ * type MyComponentPropsWithRef = React.ComponentPropsWithRef<typeof MyComponent>;
1478
+ * ```
1479
+ */
1480
+ type ComponentPropsWithRef<T extends ElementType> = T extends JSXElementConstructor<infer Props>
1481
+ // If it's a class i.e. newable we're dealing with a class component
1482
+ ? T extends abstract new(args: any) => any ? PropsWithoutRef<Props> & RefAttributes<InstanceType<T>>
1483
+ : Props
1484
+ : ComponentProps<T>;
1485
+ /**
1486
+ * Used to retrieve the props a custom component accepts with its ref.
1487
+ *
1488
+ * Unlike {@link ComponentPropsWithRef}, this only works with custom
1489
+ * components, i.e. components you define yourself. This is to improve
1490
+ * type-checking performance.
1491
+ *
1492
+ * @example
1493
+ *
1494
+ * ```tsx
1495
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1496
+ *
1497
+ * // Retrieves the props 'MyComponent' accepts
1498
+ * type MyComponentPropsWithRef = React.CustomComponentPropsWithRef<typeof MyComponent>;
1499
+ * ```
1500
+ */
1501
+ type CustomComponentPropsWithRef<T extends ComponentType> = T extends JSXElementConstructor<infer Props>
1502
+ // If it's a class i.e. newable we're dealing with a class component
1503
+ ? T extends abstract new(args: any) => any ? PropsWithoutRef<Props> & RefAttributes<InstanceType<T>>
1504
+ : Props
1505
+ : never;
1506
+
1507
+ /**
1508
+ * Used to retrieve the props a component accepts without its ref. Can either be
1509
+ * passed a string, indicating a DOM element (e.g. 'div', 'span', etc.) or the
1510
+ * type of a React component.
1511
+ *
1512
+ * @see {@link https://react-typescript-cheatsheet.netlify.app/docs/reference/ComponentProps React TypeScript Cheatsheet}
1513
+ *
1514
+ * @example
1515
+ *
1516
+ * ```tsx
1517
+ * // Retrieves the props an 'input' element accepts
1518
+ * type InputProps = React.ComponentPropsWithoutRef<'input'>;
1519
+ * ```
1520
+ *
1521
+ * @example
1522
+ *
1523
+ * ```tsx
1524
+ * const MyComponent = (props: { foo: number, bar: string }) => <div />;
1525
+ *
1526
+ * // Retrieves the props 'MyComponent' accepts
1527
+ * type MyComponentPropsWithoutRef = React.ComponentPropsWithoutRef<typeof MyComponent>;
1528
+ * ```
1529
+ */
1530
+ type ComponentPropsWithoutRef<T extends ElementType> = PropsWithoutRef<ComponentProps<T>>;
1531
+
1532
+ /**
1533
+ * Retrieves the type of the 'ref' prop for a given component type or tag name.
1534
+ *
1535
+ * @template C The component type.
1536
+ *
1537
+ * @example
1538
+ *
1539
+ * ```tsx
1540
+ * type MyComponentRef = React.ComponentRef<typeof MyComponent>;
1541
+ * ```
1542
+ *
1543
+ * @example
1544
+ *
1545
+ * ```tsx
1546
+ * type DivRef = React.ComponentRef<'div'>;
1547
+ * ```
1548
+ */
1549
+ type ComponentRef<T extends ElementType> = ComponentPropsWithRef<T> extends RefAttributes<infer Method> ? Method
1550
+ : never;
1551
+
1552
+ // will show `Memo(${Component.displayName || Component.name})` in devtools by default,
1553
+ // but can be given its own specific name
1554
+ type MemoExoticComponent<T extends ComponentType<any>> = NamedExoticComponent<CustomComponentPropsWithRef<T>> & {
1555
+ readonly type: T;
1556
+ };
1557
+
1558
+ /**
1559
+ * Lets you skip re-rendering a component when its props are unchanged.
1560
+ *
1561
+ * @see {@link https://react.dev/reference/react/memo React Docs}
1562
+ *
1563
+ * @param Component The component to memoize.
1564
+ * @param propsAreEqual A function that will be used to determine if the props have changed.
1565
+ *
1566
+ * @example
1567
+ *
1568
+ * ```tsx
1569
+ * import { memo } from 'react';
1570
+ *
1571
+ * const SomeComponent = memo(function SomeComponent(props: { foo: string }) {
1572
+ * // ...
1573
+ * });
1574
+ * ```
1575
+ */
1576
+ function memo<P extends object>(
1577
+ Component: FunctionComponent<P>,
1578
+ propsAreEqual?: (prevProps: Readonly<P>, nextProps: Readonly<P>) => boolean,
1579
+ ): NamedExoticComponent<P>;
1580
+ function memo<T extends ComponentType<any>>(
1581
+ Component: T,
1582
+ propsAreEqual?: (prevProps: Readonly<ComponentProps<T>>, nextProps: Readonly<ComponentProps<T>>) => boolean,
1583
+ ): MemoExoticComponent<T>;
1584
+
1585
+ interface LazyExoticComponent<T extends ComponentType<any>>
1586
+ extends ExoticComponent<CustomComponentPropsWithRef<T>>
1587
+ {
1588
+ readonly _result: T;
1589
+ }
1590
+
1591
+ /**
1592
+ * Lets you defer loading a component’s code until it is rendered for the first time.
1593
+ *
1594
+ * @see {@link https://react.dev/reference/react/lazy React Docs}
1595
+ *
1596
+ * @param load A function that returns a `Promise` or another thenable (a `Promise`-like object with a
1597
+ * then method). React will not call `load` until the first time you attempt to render the returned
1598
+ * component. After React first calls load, it will wait for it to resolve, and then render the
1599
+ * resolved value’s `.default` as a React component. Both the returned `Promise` and the `Promise`’s
1600
+ * resolved value will be cached, so React will not call load more than once. If the `Promise` rejects,
1601
+ * React will throw the rejection reason for the nearest Error Boundary to handle.
1602
+ *
1603
+ * @example
1604
+ *
1605
+ * ```tsx
1606
+ * import { lazy } from 'react';
1607
+ *
1608
+ * const MarkdownPreview = lazy(() => import('./MarkdownPreview.js'));
1609
+ * ```
1610
+ */
1611
+ function lazy<T extends ComponentType<any>>(
1612
+ load: () => Promise<{ default: T }>,
1613
+ ): LazyExoticComponent<T>;
1614
+
1615
+ //
1616
+ // React Hooks
1617
+ // ----------------------------------------------------------------------
1618
+
1619
+ /**
1620
+ * The instruction passed to a {@link Dispatch} function in {@link useState}
1621
+ * to tell React what the next value of the {@link useState} should be.
1622
+ *
1623
+ * Often found wrapped in {@link Dispatch}.
1624
+ *
1625
+ * @template S The type of the state.
1626
+ *
1627
+ * @example
1628
+ *
1629
+ * ```tsx
1630
+ * // This return type correctly represents the type of
1631
+ * // `setCount` in the example below.
1632
+ * const useCustomState = (): Dispatch<SetStateAction<number>> => {
1633
+ * const [count, setCount] = useState(0);
1634
+ *
1635
+ * return setCount;
1636
+ * }
1637
+ * ```
1638
+ */
1639
+ type SetStateAction<S> = S | ((prevState: S) => S);
1640
+
1641
+ /**
1642
+ * A function that can be used to update the state of a {@link useState}
1643
+ * or {@link useReducer} hook.
1644
+ */
1645
+ type Dispatch<A> = (value: A) => void;
1646
+ /**
1647
+ * A {@link Dispatch} function can sometimes be called without any arguments.
1648
+ */
1649
+ type DispatchWithoutAction = () => void;
1650
+ // Limit the reducer to accept only 0 or 1 action arguments
1651
+ // eslint-disable-next-line @definitelytyped/no-single-element-tuple-type
1652
+ type AnyActionArg = [] | [any];
1653
+ // Get the dispatch type from the reducer arguments (captures optional action argument correctly)
1654
+ type ActionDispatch<ActionArg extends AnyActionArg> = (...args: ActionArg) => void;
1655
+ // Unlike redux, the actions _can_ be anything
1656
+ type Reducer<S, A> = (prevState: S, action: A) => S;
1657
+ // If useReducer accepts a reducer without action, dispatch may be called without any parameters.
1658
+ type ReducerWithoutAction<S> = (prevState: S) => S;
1659
+ // types used to try and prevent the compiler from reducing S
1660
+ // to a supertype common with the second argument to useReducer()
1661
+ type ReducerState<R extends Reducer<any, any>> = R extends Reducer<infer S, any> ? S : never;
1662
+ type DependencyList = readonly unknown[];
1663
+
1664
+ // NOTE: callbacks are _only_ allowed to return either void, or a destructor.
1665
+ type EffectCallback = () => void | Destructor;
1666
+
1667
+ /**
1668
+ * @deprecated Use `RefObject` instead.
1669
+ */
1670
+ interface MutableRefObject<T> {
1671
+ current: T;
1672
+ }
1673
+
1674
+ // This will technically work if you give a Consumer<T> or Provider<T> but it's deprecated and warns
1675
+ /**
1676
+ * Accepts a context object (the value returned from `React.createContext`) and returns the current
1677
+ * context value, as given by the nearest context provider for the given context.
1678
+ *
1679
+ * @version 16.8.0
1680
+ * @see {@link https://react.dev/reference/react/useContext}
1681
+ */
1682
+ function useContext<T>(context: Context<T> /*, (not public API) observedBits?: number|boolean */): T;
1683
+ /**
1684
+ * Returns a stateful value, and a function to update it.
1685
+ *
1686
+ * @version 16.8.0
1687
+ * @see {@link https://react.dev/reference/react/useState}
1688
+ */
1689
+ function useState<S>(initialState: S | (() => S)): [S, Dispatch<SetStateAction<S>>];
1690
+ // convenience overload when first argument is omitted
1691
+ /**
1692
+ * Returns a stateful value, and a function to update it.
1693
+ *
1694
+ * @version 16.8.0
1695
+ * @see {@link https://react.dev/reference/react/useState}
1696
+ */
1697
+ function useState<S = undefined>(): [S | undefined, Dispatch<SetStateAction<S | undefined>>];
1698
+ /**
1699
+ * An alternative to `useState`.
1700
+ *
1701
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1702
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1703
+ * updates because you can pass `dispatch` down instead of callbacks.
1704
+ *
1705
+ * @version 16.8.0
1706
+ * @see {@link https://react.dev/reference/react/useReducer}
1707
+ */
1708
+ function useReducer<S, A extends AnyActionArg>(
1709
+ reducer: (prevState: S, ...args: A) => S,
1710
+ initialState: S,
1711
+ ): [S, ActionDispatch<A>];
1712
+ /**
1713
+ * An alternative to `useState`.
1714
+ *
1715
+ * `useReducer` is usually preferable to `useState` when you have complex state logic that involves
1716
+ * multiple sub-values. It also lets you optimize performance for components that trigger deep
1717
+ * updates because you can pass `dispatch` down instead of callbacks.
1718
+ *
1719
+ * @version 16.8.0
1720
+ * @see {@link https://react.dev/reference/react/useReducer}
1721
+ */
1722
+ function useReducer<S, I, A extends AnyActionArg>(
1723
+ reducer: (prevState: S, ...args: A) => S,
1724
+ initialArg: I,
1725
+ init: (i: I) => S,
1726
+ ): [S, ActionDispatch<A>];
1727
+ /**
1728
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
1729
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
1730
+ *
1731
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
1732
+ * value around similar to how you’d use instance fields in classes.
1733
+ *
1734
+ * @version 16.8.0
1735
+ * @see {@link https://react.dev/reference/react/useRef}
1736
+ */
1737
+ function useRef<T>(initialValue: T): RefObject<T>;
1738
+ // convenience overload for refs given as a ref prop as they typically start with a null value
1739
+ /**
1740
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
1741
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
1742
+ *
1743
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
1744
+ * value around similar to how you’d use instance fields in classes.
1745
+ *
1746
+ * @version 16.8.0
1747
+ * @see {@link https://react.dev/reference/react/useRef}
1748
+ */
1749
+ function useRef<T>(initialValue: T | null): RefObject<T | null>;
1750
+ // convenience overload for undefined initialValue
1751
+ /**
1752
+ * `useRef` returns a mutable ref object whose `.current` property is initialized to the passed argument
1753
+ * (`initialValue`). The returned object will persist for the full lifetime of the component.
1754
+ *
1755
+ * Note that `useRef()` is useful for more than the `ref` attribute. It’s handy for keeping any mutable
1756
+ * value around similar to how you’d use instance fields in classes.
1757
+ *
1758
+ * @version 16.8.0
1759
+ * @see {@link https://react.dev/reference/react/useRef}
1760
+ */
1761
+ function useRef<T>(initialValue: T | undefined): RefObject<T | undefined>;
1762
+ /**
1763
+ * The signature is identical to `useEffect`, but it fires synchronously after all DOM mutations.
1764
+ * Use this to read layout from the DOM and synchronously re-render. Updates scheduled inside
1765
+ * `useLayoutEffect` will be flushed synchronously, before the browser has a chance to paint.
1766
+ *
1767
+ * Prefer the standard `useEffect` when possible to avoid blocking visual updates.
1768
+ *
1769
+ * If you’re migrating code from a class component, `useLayoutEffect` fires in the same phase as
1770
+ * `componentDidMount` and `componentDidUpdate`.
1771
+ *
1772
+ * @version 16.8.0
1773
+ * @see {@link https://react.dev/reference/react/useLayoutEffect}
1774
+ */
1775
+ function useLayoutEffect(effect: EffectCallback, deps?: DependencyList): void;
1776
+ /**
1777
+ * Accepts a function that contains imperative, possibly effectful code.
1778
+ *
1779
+ * @param effect Imperative function that can return a cleanup function
1780
+ * @param deps If present, effect will only activate if the values in the list change.
1781
+ *
1782
+ * @version 16.8.0
1783
+ * @see {@link https://react.dev/reference/react/useEffect}
1784
+ */
1785
+ function useEffect(effect: EffectCallback, deps?: DependencyList): void;
1786
+ /**
1787
+ * @see {@link https://react.dev/reference/react/useEffectEvent `useEffectEvent()` documentation}
1788
+ * @version 19.2.0
1789
+ */
1790
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
1791
+ export function useEffectEvent<T extends Function>(callback: T): T;
1792
+ // NOTE: this does not accept strings, but this will have to be fixed by removing strings from type Ref<T>
1793
+ /**
1794
+ * `useImperativeHandle` customizes the instance value that is exposed to parent components when using
1795
+ * `ref`. As always, imperative code using refs should be avoided in most cases.
1796
+ *
1797
+ * @version 16.8.0
1798
+ * @see {@link https://react.dev/reference/react/useImperativeHandle}
1799
+ */
1800
+ function useImperativeHandle<T, R extends T>(ref: Ref<T> | undefined, init: () => R, deps?: DependencyList): void;
1801
+ // I made 'inputs' required here and in useMemo as there's no point to memoizing without the memoization key
1802
+ // useCallback(X) is identical to just using X, useMemo(() => Y) is identical to just using Y.
1803
+ /**
1804
+ * `useCallback` will return a memoized version of the callback that only changes if one of the `inputs`
1805
+ * has changed.
1806
+ *
1807
+ * @version 16.8.0
1808
+ * @see {@link https://react.dev/reference/react/useCallback}
1809
+ */
1810
+ // A specific function type would not trigger implicit any.
1811
+ // See https://github.com/DefinitelyTyped/DefinitelyTyped/issues/52873#issuecomment-845806435 for a comparison between `Function` and more specific types.
1812
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
1813
+ function useCallback<T extends Function>(callback: T, deps: DependencyList): T;
1814
+ /**
1815
+ * `useMemo` will only recompute the memoized value when one of the `deps` has changed.
1816
+ *
1817
+ * @version 16.8.0
1818
+ * @see {@link https://react.dev/reference/react/useMemo}
1819
+ */
1820
+ // allow undefined, but don't make it optional as that is very likely a mistake
1821
+ function useMemo<T>(factory: () => T, deps: DependencyList): T;
1822
+ /**
1823
+ * `useDebugValue` can be used to display a label for custom hooks in React DevTools.
1824
+ *
1825
+ * NOTE: We don’t recommend adding debug values to every custom hook.
1826
+ * It’s most valuable for custom hooks that are part of shared libraries.
1827
+ *
1828
+ * @version 16.8.0
1829
+ * @see {@link https://react.dev/reference/react/useDebugValue}
1830
+ */
1831
+ // the name of the custom hook is itself derived from the function name at runtime:
1832
+ // it's just the function name without the "use" prefix.
1833
+ function useDebugValue<T>(value: T, format?: (value: T) => any): void;
1834
+
1835
+ export type TransitionFunction = () => VoidOrUndefinedOnly | Promise<VoidOrUndefinedOnly>;
1836
+ // strange definition to allow vscode to show documentation on the invocation
1837
+ export interface TransitionStartFunction {
1838
+ /**
1839
+ * State updates caused inside the callback are allowed to be deferred.
1840
+ *
1841
+ * **If some state update causes a component to suspend, that state update should be wrapped in a transition.**
1842
+ *
1843
+ * @param callback A function which causes state updates that can be deferred.
1844
+ */
1845
+ (callback: TransitionFunction): void;
1846
+ }
1847
+
1848
+ /**
1849
+ * Returns a deferred version of the value that may “lag behind” it.
1850
+ *
1851
+ * This is commonly used to keep the interface responsive when you have something that renders immediately
1852
+ * based on user input and something that needs to wait for a data fetch.
1853
+ *
1854
+ * A good example of this is a text input.
1855
+ *
1856
+ * @param value The value that is going to be deferred
1857
+ * @param initialValue A value to use during the initial render of a component. If this option is omitted, `useDeferredValue` will not defer during the initial render, because there’s no previous version of `value` that it can render instead.
1858
+ *
1859
+ * @see {@link https://react.dev/reference/react/useDeferredValue}
1860
+ */
1861
+ export function useDeferredValue<T>(value: T, initialValue?: T): T;
1862
+
1863
+ /**
1864
+ * Allows components to avoid undesirable loading states by waiting for content to load
1865
+ * before transitioning to the next screen. It also allows components to defer slower,
1866
+ * data fetching updates until subsequent renders so that more crucial updates can be
1867
+ * rendered immediately.
1868
+ *
1869
+ * The `useTransition` hook returns two values in an array.
1870
+ *
1871
+ * The first is a boolean, React’s way of informing us whether we’re waiting for the transition to finish.
1872
+ * The second is a function that takes a callback. We can use it to tell React which state we want to defer.
1873
+ *
1874
+ * **If some state update causes a component to suspend, that state update should be wrapped in a transition.**
1875
+ *
1876
+ * @see {@link https://react.dev/reference/react/useTransition}
1877
+ */
1878
+ export function useTransition(): [boolean, TransitionStartFunction];
1879
+
1880
+ /**
1881
+ * Similar to `useTransition` but allows uses where hooks are not available.
1882
+ *
1883
+ * @param callback A function which causes state updates that can be deferred.
1884
+ */
1885
+ export function startTransition(scope: TransitionFunction): void;
1886
+
1887
+ /**
1888
+ * Wrap any code rendering and triggering updates to your components into `act()` calls.
1889
+ *
1890
+ * Ensures that the behavior in your tests matches what happens in the browser
1891
+ * more closely by executing pending `useEffect`s before returning. This also
1892
+ * reduces the amount of re-renders done.
1893
+ *
1894
+ * @param callback A synchronous, void callback that will execute as a single, complete React commit.
1895
+ *
1896
+ * @see {@link https://reactjs.org/blog/2019/02/06/react-v16.8.0.html#testing-hooks}
1897
+ */
1898
+ // NOTES
1899
+ // - the order of these signatures matters - typescript will check the signatures in source order.
1900
+ // If the `() => VoidOrUndefinedOnly` signature is first, it'll erroneously match a Promise returning function for users with
1901
+ // `strictNullChecks: false`.
1902
+ // - VoidOrUndefinedOnly is there to forbid any non-void return values for users with `strictNullChecks: true`
1903
+ // While act does always return Thenable, if a void function is passed, we pretend the return value is also void to not trigger dangling Promise lint rules.
1904
+ export function act(callback: () => VoidOrUndefinedOnly): void;
1905
+ export function act<T>(callback: () => T | Promise<T>): Promise<T>;
1906
+
1907
+ export function useId(): string;
1908
+
1909
+ /**
1910
+ * @param effect Imperative function that can return a cleanup function
1911
+ * @param deps If present, effect will only activate if the values in the list change.
1912
+ *
1913
+ * @see {@link https://github.com/facebook/react/pull/21913}
1914
+ */
1915
+ export function useInsertionEffect(effect: EffectCallback, deps?: DependencyList): void;
1916
+
1917
+ /**
1918
+ * @param subscribe
1919
+ * @param getSnapshot
1920
+ *
1921
+ * @see {@link https://github.com/reactwg/react-18/discussions/86}
1922
+ */
1923
+ // keep in sync with `useSyncExternalStore` from `use-sync-external-store`
1924
+ export function useSyncExternalStore<Snapshot>(
1925
+ subscribe: (onStoreChange: () => void) => () => void,
1926
+ getSnapshot: () => Snapshot,
1927
+ getServerSnapshot?: () => Snapshot,
1928
+ ): Snapshot;
1929
+
1930
+ export function useOptimistic<State>(
1931
+ passthrough: State,
1932
+ ): [State, (action: State | ((pendingState: State) => State)) => void];
1933
+ export function useOptimistic<State, Action>(
1934
+ passthrough: State,
1935
+ reducer: (state: State, action: Action) => State,
1936
+ ): [State, (action: Action) => void];
1937
+
1938
+ interface UntrackedReactPromise<T> extends PromiseLike<T> {
1939
+ status?: void;
1940
+ }
1941
+
1942
+ export interface PendingReactPromise<T> extends PromiseLike<T> {
1943
+ status: "pending";
1944
+ }
1945
+
1946
+ export interface FulfilledReactPromise<T> extends PromiseLike<T> {
1947
+ status: "fulfilled";
1948
+ value: T;
1949
+ }
1950
+
1951
+ export interface RejectedReactPromise<T> extends PromiseLike<T> {
1952
+ status: "rejected";
1953
+ reason: unknown;
1954
+ }
1955
+
1956
+ export type ReactPromise<T> =
1957
+ | UntrackedReactPromise<T>
1958
+ | PendingReactPromise<T>
1959
+ | FulfilledReactPromise<T>
1960
+ | RejectedReactPromise<T>;
1961
+
1962
+ export type Usable<T> = ReactPromise<T> | Context<T>;
1963
+
1964
+ export function use<T>(usable: Usable<T>): T;
1965
+
1966
+ export function useActionState<State>(
1967
+ action: (state: Awaited<State>) => State | Promise<State>,
1968
+ initialState: Awaited<State>,
1969
+ permalink?: string,
1970
+ ): [state: Awaited<State>, dispatch: () => void, isPending: boolean];
1971
+ export function useActionState<State, Payload>(
1972
+ action: (state: Awaited<State>, payload: Payload) => State | Promise<State>,
1973
+ initialState: Awaited<State>,
1974
+ permalink?: string,
1975
+ ): [state: Awaited<State>, dispatch: (payload: Payload) => void, isPending: boolean];
1976
+
1977
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-function-type
1978
+ export function cache<CachedFunction extends Function>(fn: CachedFunction): CachedFunction;
1979
+
1980
+ export interface CacheSignal {}
1981
+ /**
1982
+ * @version 19.2.0
1983
+ */
1984
+ export function cacheSignal(): null | CacheSignal;
1985
+
1986
+ export interface ActivityProps {
1987
+ /**
1988
+ * @default "visible"
1989
+ */
1990
+ mode?:
1991
+ | "hidden"
1992
+ | "visible"
1993
+ | undefined;
1994
+ /**
1995
+ * A name for this Activity boundary for instrumentation purposes.
1996
+ * The name will help identify this boundary in React DevTools.
1997
+ */
1998
+ name?: string | undefined;
1999
+ children: ReactNode;
2000
+ }
2001
+
2002
+ /**
2003
+ * @see {@link https://react.dev/reference/react/Activity `<Activity>` documentation}
2004
+ * @version 19.2.0
2005
+ */
2006
+ export const Activity: ExoticComponent<ActivityProps>;
2007
+
2008
+ /**
2009
+ * Warning: Only available in development builds.
2010
+ *
2011
+ * @see {@link https://react.dev/reference/react/captureOwnerStack Reference docs}
2012
+ * @version 19.1.0
2013
+ */
2014
+ function captureOwnerStack(): string | null;
2015
+
2016
+ //
2017
+ // Event System
2018
+ // ----------------------------------------------------------------------
2019
+ // TODO: change any to unknown when moving to TS v3
2020
+ interface BaseSyntheticEvent<E = object, C = any, T = any> {
2021
+ nativeEvent: E;
2022
+ currentTarget: C;
2023
+ target: T;
2024
+ bubbles: boolean;
2025
+ cancelable: boolean;
2026
+ defaultPrevented: boolean;
2027
+ eventPhase: number;
2028
+ isTrusted: boolean;
2029
+ preventDefault(): void;
2030
+ isDefaultPrevented(): boolean;
2031
+ stopPropagation(): void;
2032
+ isPropagationStopped(): boolean;
2033
+ persist(): void;
2034
+ timeStamp: number;
2035
+ type: string;
2036
+ }
2037
+
2038
+ /**
2039
+ * currentTarget - a reference to the element on which the event listener is registered.
2040
+ *
2041
+ * target - a reference to the element from which the event was originally dispatched.
2042
+ * This might be a child element to the element on which the event listener is registered.
2043
+ * If you thought this should be `EventTarget & T`, see https://github.com/DefinitelyTyped/DefinitelyTyped/issues/11508#issuecomment-256045682
2044
+ */
2045
+ interface SyntheticEvent<T = Element, E = Event> extends BaseSyntheticEvent<E, EventTarget & T, EventTarget> {}
2046
+
2047
+ interface ClipboardEvent<T = Element> extends SyntheticEvent<T, NativeClipboardEvent> {
2048
+ clipboardData: DataTransfer;
2049
+ }
2050
+
2051
+ interface CompositionEvent<T = Element> extends SyntheticEvent<T, NativeCompositionEvent> {
2052
+ data: string;
2053
+ }
2054
+
2055
+ interface DragEvent<T = Element> extends MouseEvent<T, NativeDragEvent> {
2056
+ dataTransfer: DataTransfer;
2057
+ }
2058
+
2059
+ interface PointerEvent<T = Element> extends MouseEvent<T, NativePointerEvent> {
2060
+ pointerId: number;
2061
+ pressure: number;
2062
+ tangentialPressure: number;
2063
+ tiltX: number;
2064
+ tiltY: number;
2065
+ twist: number;
2066
+ width: number;
2067
+ height: number;
2068
+ pointerType: "mouse" | "pen" | "touch";
2069
+ isPrimary: boolean;
2070
+ }
2071
+
2072
+ interface FocusEvent<Target = Element, RelatedTarget = Element> extends SyntheticEvent<Target, NativeFocusEvent> {
2073
+ relatedTarget: (EventTarget & RelatedTarget) | null;
2074
+ target: EventTarget & Target;
2075
+ }
2076
+
2077
+ /**
2078
+ * @deprecated FormEvent doesn't actually exist.
2079
+ * You probably meant to use {@link ChangeEvent}, {@link InputEvent}, {@link SubmitEvent}, or just {@link SyntheticEvent} instead
2080
+ * depending on the event type.
2081
+ */
2082
+ interface FormEvent<T = Element> extends SyntheticEvent<T> {
2083
+ }
2084
+
2085
+ interface InvalidEvent<T = Element> extends SyntheticEvent<T> {
2086
+ }
2087
+
2088
+ /**
2089
+ * change events bubble in React so their target is generally unknown.
2090
+ * Only for form elements we know their target type because form events can't
2091
+ * be nested.
2092
+ * This type exists purely to narrow `target` for form elements. It doesn't
2093
+ * reflect a DOM event. Change events are just fired as standard {@link SyntheticEvent}.
2094
+ */
2095
+ interface ChangeEvent<CurrentTarget = Element, Target = Element> extends SyntheticEvent<CurrentTarget> {
2096
+ // TODO: This is wrong for change event handlers on arbitrary. Should
2097
+ // be EventTarget & Target, but kept for backward compatibility until React 20.
2098
+ target: EventTarget & CurrentTarget;
2099
+ }
2100
+
2101
+ interface InputEvent<T = Element> extends SyntheticEvent<T, NativeInputEvent> {
2102
+ data: string;
2103
+ }
2104
+
2105
+ export type ModifierKey =
2106
+ | "Alt"
2107
+ | "AltGraph"
2108
+ | "CapsLock"
2109
+ | "Control"
2110
+ | "Fn"
2111
+ | "FnLock"
2112
+ | "Hyper"
2113
+ | "Meta"
2114
+ | "NumLock"
2115
+ | "ScrollLock"
2116
+ | "Shift"
2117
+ | "Super"
2118
+ | "Symbol"
2119
+ | "SymbolLock";
2120
+
2121
+ interface KeyboardEvent<T = Element> extends UIEvent<T, NativeKeyboardEvent> {
2122
+ altKey: boolean;
2123
+ /** @deprecated */
2124
+ charCode: number;
2125
+ ctrlKey: boolean;
2126
+ code: string;
2127
+ /**
2128
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2129
+ */
2130
+ getModifierState(key: ModifierKey): boolean;
2131
+ /**
2132
+ * See the [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#named-key-attribute-values). for possible values
2133
+ */
2134
+ key: string;
2135
+ /** @deprecated */
2136
+ keyCode: number;
2137
+ locale: string;
2138
+ location: number;
2139
+ metaKey: boolean;
2140
+ repeat: boolean;
2141
+ shiftKey: boolean;
2142
+ /** @deprecated */
2143
+ which: number;
2144
+ }
2145
+
2146
+ interface MouseEvent<T = Element, E = NativeMouseEvent> extends UIEvent<T, E> {
2147
+ altKey: boolean;
2148
+ button: number;
2149
+ buttons: number;
2150
+ clientX: number;
2151
+ clientY: number;
2152
+ ctrlKey: boolean;
2153
+ /**
2154
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2155
+ */
2156
+ getModifierState(key: ModifierKey): boolean;
2157
+ metaKey: boolean;
2158
+ movementX: number;
2159
+ movementY: number;
2160
+ pageX: number;
2161
+ pageY: number;
2162
+ relatedTarget: EventTarget | null;
2163
+ screenX: number;
2164
+ screenY: number;
2165
+ shiftKey: boolean;
2166
+ }
2167
+
2168
+ interface SubmitEvent<T = Element> extends SyntheticEvent<T, NativeSubmitEvent> {
2169
+ // `submitter` is available in react@canary
2170
+ // submitter: HTMLElement | null;
2171
+ // SubmitEvents are always targetted at HTMLFormElements.
2172
+ target: EventTarget & HTMLFormElement;
2173
+ }
2174
+
2175
+ interface TouchEvent<T = Element> extends UIEvent<T, NativeTouchEvent> {
2176
+ altKey: boolean;
2177
+ changedTouches: TouchList;
2178
+ ctrlKey: boolean;
2179
+ /**
2180
+ * See [DOM Level 3 Events spec](https://www.w3.org/TR/uievents-key/#keys-modifier). for a list of valid (case-sensitive) arguments to this method.
2181
+ */
2182
+ getModifierState(key: ModifierKey): boolean;
2183
+ metaKey: boolean;
2184
+ shiftKey: boolean;
2185
+ targetTouches: TouchList;
2186
+ touches: TouchList;
2187
+ }
2188
+
2189
+ interface UIEvent<T = Element, E = NativeUIEvent> extends SyntheticEvent<T, E> {
2190
+ detail: number;
2191
+ view: AbstractView;
2192
+ }
2193
+
2194
+ interface WheelEvent<T = Element> extends MouseEvent<T, NativeWheelEvent> {
2195
+ deltaMode: number;
2196
+ deltaX: number;
2197
+ deltaY: number;
2198
+ deltaZ: number;
2199
+ }
2200
+
2201
+ interface AnimationEvent<T = Element> extends SyntheticEvent<T, NativeAnimationEvent> {
2202
+ animationName: string;
2203
+ elapsedTime: number;
2204
+ pseudoElement: string;
2205
+ }
2206
+
2207
+ interface ToggleEvent<T = Element> extends SyntheticEvent<T, NativeToggleEvent> {
2208
+ oldState: "closed" | "open";
2209
+ newState: "closed" | "open";
2210
+ }
2211
+
2212
+ interface TransitionEvent<T = Element> extends SyntheticEvent<T, NativeTransitionEvent> {
2213
+ elapsedTime: number;
2214
+ propertyName: string;
2215
+ pseudoElement: string;
2216
+ }
2217
+
2218
+ //
2219
+ // Event Handler Types
2220
+ // ----------------------------------------------------------------------
2221
+
2222
+ type EventHandler<E extends SyntheticEvent<any>> = { bivarianceHack(event: E): void }["bivarianceHack"];
2223
+
2224
+ type ReactEventHandler<T = Element> = EventHandler<SyntheticEvent<T>>;
2225
+
2226
+ type ClipboardEventHandler<T = Element> = EventHandler<ClipboardEvent<T>>;
2227
+ type CompositionEventHandler<T = Element> = EventHandler<CompositionEvent<T>>;
2228
+ type DragEventHandler<T = Element> = EventHandler<DragEvent<T>>;
2229
+ type FocusEventHandler<T = Element> = EventHandler<FocusEvent<T>>;
2230
+ /**
2231
+ * @deprecated FormEventHandler doesn't actually exist.
2232
+ * You probably meant to use {@link ChangeEventHandler}, {@link InputEventHandler}, {@link SubmitEventHandler}, or just {@link EventHandler} instead
2233
+ * depending on the event type.
2234
+ */
2235
+ type FormEventHandler<T = Element> = EventHandler<FormEvent<T>>;
2236
+ type ChangeEventHandler<CurrentTarget = Element, Target = Element> = EventHandler<
2237
+ ChangeEvent<CurrentTarget, Target>
2238
+ >;
2239
+ type InputEventHandler<T = Element> = EventHandler<InputEvent<T>>;
2240
+ type KeyboardEventHandler<T = Element> = EventHandler<KeyboardEvent<T>>;
2241
+ type MouseEventHandler<T = Element> = EventHandler<MouseEvent<T>>;
2242
+ type SubmitEventHandler<T = Element> = EventHandler<SubmitEvent<T>>;
2243
+ type TouchEventHandler<T = Element> = EventHandler<TouchEvent<T>>;
2244
+ type PointerEventHandler<T = Element> = EventHandler<PointerEvent<T>>;
2245
+ type UIEventHandler<T = Element> = EventHandler<UIEvent<T>>;
2246
+ type WheelEventHandler<T = Element> = EventHandler<WheelEvent<T>>;
2247
+ type AnimationEventHandler<T = Element> = EventHandler<AnimationEvent<T>>;
2248
+ type ToggleEventHandler<T = Element> = EventHandler<ToggleEvent<T>>;
2249
+ type TransitionEventHandler<T = Element> = EventHandler<TransitionEvent<T>>;
2250
+
2251
+ //
2252
+ // Props / DOM Attributes
2253
+ // ----------------------------------------------------------------------
2254
+
2255
+ interface HTMLProps<T> extends AllHTMLAttributes<T>, ClassAttributes<T> {
2256
+ }
2257
+
2258
+ type DetailedHTMLProps<E extends HTMLAttributes<T>, T> = ClassAttributes<T> & E;
2259
+
2260
+ interface SVGProps<T> extends SVGAttributes<T>, ClassAttributes<T> {
2261
+ }
2262
+
2263
+ interface SVGLineElementAttributes<T> extends SVGProps<T> {}
2264
+ interface SVGTextElementAttributes<T> extends SVGProps<T> {}
2265
+
2266
+ interface DOMAttributes<T> {
2267
+ children?: ReactNode | undefined;
2268
+ dangerouslySetInnerHTML?: {
2269
+ // Should be InnerHTML['innerHTML'].
2270
+ // But unfortunately we're mixing renderer-specific type declarations.
2271
+ __html: string | TrustedHTML;
2272
+ } | undefined;
2273
+
2274
+ // Clipboard Events
2275
+ onCopy?: ClipboardEventHandler<T> | undefined;
2276
+ onCopyCapture?: ClipboardEventHandler<T> | undefined;
2277
+ onCut?: ClipboardEventHandler<T> | undefined;
2278
+ onCutCapture?: ClipboardEventHandler<T> | undefined;
2279
+ onPaste?: ClipboardEventHandler<T> | undefined;
2280
+ onPasteCapture?: ClipboardEventHandler<T> | undefined;
2281
+
2282
+ // Composition Events
2283
+ onCompositionEnd?: CompositionEventHandler<T> | undefined;
2284
+ onCompositionEndCapture?: CompositionEventHandler<T> | undefined;
2285
+ onCompositionStart?: CompositionEventHandler<T> | undefined;
2286
+ onCompositionStartCapture?: CompositionEventHandler<T> | undefined;
2287
+ onCompositionUpdate?: CompositionEventHandler<T> | undefined;
2288
+ onCompositionUpdateCapture?: CompositionEventHandler<T> | undefined;
2289
+
2290
+ // Focus Events
2291
+ onFocus?: FocusEventHandler<T> | undefined;
2292
+ onFocusCapture?: FocusEventHandler<T> | undefined;
2293
+ onBlur?: FocusEventHandler<T> | undefined;
2294
+ onBlurCapture?: FocusEventHandler<T> | undefined;
2295
+
2296
+ // form related Events
2297
+ onChange?: ChangeEventHandler<T> | undefined;
2298
+ onChangeCapture?: ChangeEventHandler<T> | undefined;
2299
+ onBeforeInput?: InputEventHandler<T> | undefined;
2300
+ onBeforeInputCapture?: InputEventHandler<T> | undefined;
2301
+ onInput?: InputEventHandler<T> | undefined;
2302
+ onInputCapture?: InputEventHandler<T> | undefined;
2303
+ onReset?: ReactEventHandler<T> | undefined;
2304
+ onResetCapture?: ReactEventHandler<T> | undefined;
2305
+ onSubmit?: SubmitEventHandler<T> | undefined;
2306
+ onSubmitCapture?: SubmitEventHandler<T> | undefined;
2307
+ onInvalid?: ReactEventHandler<T> | undefined;
2308
+ onInvalidCapture?: ReactEventHandler<T> | undefined;
2309
+
2310
+ // Image Events
2311
+ onLoad?: ReactEventHandler<T> | undefined;
2312
+ onLoadCapture?: ReactEventHandler<T> | undefined;
2313
+ onError?: ReactEventHandler<T> | undefined; // also a Media Event
2314
+ onErrorCapture?: ReactEventHandler<T> | undefined; // also a Media Event
2315
+
2316
+ // Keyboard Events
2317
+ onKeyDown?: KeyboardEventHandler<T> | undefined;
2318
+ onKeyDownCapture?: KeyboardEventHandler<T> | undefined;
2319
+ /** @deprecated Use `onKeyUp` or `onKeyDown` instead */
2320
+ onKeyPress?: KeyboardEventHandler<T> | undefined;
2321
+ /** @deprecated Use `onKeyUpCapture` or `onKeyDownCapture` instead */
2322
+ onKeyPressCapture?: KeyboardEventHandler<T> | undefined;
2323
+ onKeyUp?: KeyboardEventHandler<T> | undefined;
2324
+ onKeyUpCapture?: KeyboardEventHandler<T> | undefined;
2325
+
2326
+ // Media Events
2327
+ onAbort?: ReactEventHandler<T> | undefined;
2328
+ onAbortCapture?: ReactEventHandler<T> | undefined;
2329
+ onCanPlay?: ReactEventHandler<T> | undefined;
2330
+ onCanPlayCapture?: ReactEventHandler<T> | undefined;
2331
+ onCanPlayThrough?: ReactEventHandler<T> | undefined;
2332
+ onCanPlayThroughCapture?: ReactEventHandler<T> | undefined;
2333
+ onDurationChange?: ReactEventHandler<T> | undefined;
2334
+ onDurationChangeCapture?: ReactEventHandler<T> | undefined;
2335
+ onEmptied?: ReactEventHandler<T> | undefined;
2336
+ onEmptiedCapture?: ReactEventHandler<T> | undefined;
2337
+ onEncrypted?: ReactEventHandler<T> | undefined;
2338
+ onEncryptedCapture?: ReactEventHandler<T> | undefined;
2339
+ onEnded?: ReactEventHandler<T> | undefined;
2340
+ onEndedCapture?: ReactEventHandler<T> | undefined;
2341
+ onLoadedData?: ReactEventHandler<T> | undefined;
2342
+ onLoadedDataCapture?: ReactEventHandler<T> | undefined;
2343
+ onLoadedMetadata?: ReactEventHandler<T> | undefined;
2344
+ onLoadedMetadataCapture?: ReactEventHandler<T> | undefined;
2345
+ onLoadStart?: ReactEventHandler<T> | undefined;
2346
+ onLoadStartCapture?: ReactEventHandler<T> | undefined;
2347
+ onPause?: ReactEventHandler<T> | undefined;
2348
+ onPauseCapture?: ReactEventHandler<T> | undefined;
2349
+ onPlay?: ReactEventHandler<T> | undefined;
2350
+ onPlayCapture?: ReactEventHandler<T> | undefined;
2351
+ onPlaying?: ReactEventHandler<T> | undefined;
2352
+ onPlayingCapture?: ReactEventHandler<T> | undefined;
2353
+ onProgress?: ReactEventHandler<T> | undefined;
2354
+ onProgressCapture?: ReactEventHandler<T> | undefined;
2355
+ onRateChange?: ReactEventHandler<T> | undefined;
2356
+ onRateChangeCapture?: ReactEventHandler<T> | undefined;
2357
+ onSeeked?: ReactEventHandler<T> | undefined;
2358
+ onSeekedCapture?: ReactEventHandler<T> | undefined;
2359
+ onSeeking?: ReactEventHandler<T> | undefined;
2360
+ onSeekingCapture?: ReactEventHandler<T> | undefined;
2361
+ onStalled?: ReactEventHandler<T> | undefined;
2362
+ onStalledCapture?: ReactEventHandler<T> | undefined;
2363
+ onSuspend?: ReactEventHandler<T> | undefined;
2364
+ onSuspendCapture?: ReactEventHandler<T> | undefined;
2365
+ onTimeUpdate?: ReactEventHandler<T> | undefined;
2366
+ onTimeUpdateCapture?: ReactEventHandler<T> | undefined;
2367
+ onVolumeChange?: ReactEventHandler<T> | undefined;
2368
+ onVolumeChangeCapture?: ReactEventHandler<T> | undefined;
2369
+ onWaiting?: ReactEventHandler<T> | undefined;
2370
+ onWaitingCapture?: ReactEventHandler<T> | undefined;
2371
+
2372
+ // MouseEvents
2373
+ onAuxClick?: MouseEventHandler<T> | undefined;
2374
+ onAuxClickCapture?: MouseEventHandler<T> | undefined;
2375
+ onClick?: MouseEventHandler<T> | undefined;
2376
+ onClickCapture?: MouseEventHandler<T> | undefined;
2377
+ onContextMenu?: MouseEventHandler<T> | undefined;
2378
+ onContextMenuCapture?: MouseEventHandler<T> | undefined;
2379
+ onDoubleClick?: MouseEventHandler<T> | undefined;
2380
+ onDoubleClickCapture?: MouseEventHandler<T> | undefined;
2381
+ onDrag?: DragEventHandler<T> | undefined;
2382
+ onDragCapture?: DragEventHandler<T> | undefined;
2383
+ onDragEnd?: DragEventHandler<T> | undefined;
2384
+ onDragEndCapture?: DragEventHandler<T> | undefined;
2385
+ onDragEnter?: DragEventHandler<T> | undefined;
2386
+ onDragEnterCapture?: DragEventHandler<T> | undefined;
2387
+ onDragExit?: DragEventHandler<T> | undefined;
2388
+ onDragExitCapture?: DragEventHandler<T> | undefined;
2389
+ onDragLeave?: DragEventHandler<T> | undefined;
2390
+ onDragLeaveCapture?: DragEventHandler<T> | undefined;
2391
+ onDragOver?: DragEventHandler<T> | undefined;
2392
+ onDragOverCapture?: DragEventHandler<T> | undefined;
2393
+ onDragStart?: DragEventHandler<T> | undefined;
2394
+ onDragStartCapture?: DragEventHandler<T> | undefined;
2395
+ onDrop?: DragEventHandler<T> | undefined;
2396
+ onDropCapture?: DragEventHandler<T> | undefined;
2397
+ onMouseDown?: MouseEventHandler<T> | undefined;
2398
+ onMouseDownCapture?: MouseEventHandler<T> | undefined;
2399
+ onMouseEnter?: MouseEventHandler<T> | undefined;
2400
+ onMouseLeave?: MouseEventHandler<T> | undefined;
2401
+ onMouseMove?: MouseEventHandler<T> | undefined;
2402
+ onMouseMoveCapture?: MouseEventHandler<T> | undefined;
2403
+ onMouseOut?: MouseEventHandler<T> | undefined;
2404
+ onMouseOutCapture?: MouseEventHandler<T> | undefined;
2405
+ onMouseOver?: MouseEventHandler<T> | undefined;
2406
+ onMouseOverCapture?: MouseEventHandler<T> | undefined;
2407
+ onMouseUp?: MouseEventHandler<T> | undefined;
2408
+ onMouseUpCapture?: MouseEventHandler<T> | undefined;
2409
+
2410
+ // Selection Events
2411
+ onSelect?: ReactEventHandler<T> | undefined;
2412
+ onSelectCapture?: ReactEventHandler<T> | undefined;
2413
+
2414
+ // Touch Events
2415
+ onTouchCancel?: TouchEventHandler<T> | undefined;
2416
+ onTouchCancelCapture?: TouchEventHandler<T> | undefined;
2417
+ onTouchEnd?: TouchEventHandler<T> | undefined;
2418
+ onTouchEndCapture?: TouchEventHandler<T> | undefined;
2419
+ onTouchMove?: TouchEventHandler<T> | undefined;
2420
+ onTouchMoveCapture?: TouchEventHandler<T> | undefined;
2421
+ onTouchStart?: TouchEventHandler<T> | undefined;
2422
+ onTouchStartCapture?: TouchEventHandler<T> | undefined;
2423
+
2424
+ // Pointer Events
2425
+ onPointerDown?: PointerEventHandler<T> | undefined;
2426
+ onPointerDownCapture?: PointerEventHandler<T> | undefined;
2427
+ onPointerMove?: PointerEventHandler<T> | undefined;
2428
+ onPointerMoveCapture?: PointerEventHandler<T> | undefined;
2429
+ onPointerUp?: PointerEventHandler<T> | undefined;
2430
+ onPointerUpCapture?: PointerEventHandler<T> | undefined;
2431
+ onPointerCancel?: PointerEventHandler<T> | undefined;
2432
+ onPointerCancelCapture?: PointerEventHandler<T> | undefined;
2433
+ onPointerEnter?: PointerEventHandler<T> | undefined;
2434
+ onPointerLeave?: PointerEventHandler<T> | undefined;
2435
+ onPointerOver?: PointerEventHandler<T> | undefined;
2436
+ onPointerOverCapture?: PointerEventHandler<T> | undefined;
2437
+ onPointerOut?: PointerEventHandler<T> | undefined;
2438
+ onPointerOutCapture?: PointerEventHandler<T> | undefined;
2439
+ onGotPointerCapture?: PointerEventHandler<T> | undefined;
2440
+ onGotPointerCaptureCapture?: PointerEventHandler<T> | undefined;
2441
+ onLostPointerCapture?: PointerEventHandler<T> | undefined;
2442
+ onLostPointerCaptureCapture?: PointerEventHandler<T> | undefined;
2443
+
2444
+ // UI Events
2445
+ onScroll?: UIEventHandler<T> | undefined;
2446
+ onScrollCapture?: UIEventHandler<T> | undefined;
2447
+ onScrollEnd?: UIEventHandler<T> | undefined;
2448
+ onScrollEndCapture?: UIEventHandler<T> | undefined;
2449
+
2450
+ // Wheel Events
2451
+ onWheel?: WheelEventHandler<T> | undefined;
2452
+ onWheelCapture?: WheelEventHandler<T> | undefined;
2453
+
2454
+ // Animation Events
2455
+ onAnimationStart?: AnimationEventHandler<T> | undefined;
2456
+ onAnimationStartCapture?: AnimationEventHandler<T> | undefined;
2457
+ onAnimationEnd?: AnimationEventHandler<T> | undefined;
2458
+ onAnimationEndCapture?: AnimationEventHandler<T> | undefined;
2459
+ onAnimationIteration?: AnimationEventHandler<T> | undefined;
2460
+ onAnimationIterationCapture?: AnimationEventHandler<T> | undefined;
2461
+
2462
+ // Toggle Events
2463
+ onToggle?: ToggleEventHandler<T> | undefined;
2464
+ onBeforeToggle?: ToggleEventHandler<T> | undefined;
2465
+
2466
+ // Transition Events
2467
+ onTransitionCancel?: TransitionEventHandler<T> | undefined;
2468
+ onTransitionCancelCapture?: TransitionEventHandler<T> | undefined;
2469
+ onTransitionEnd?: TransitionEventHandler<T> | undefined;
2470
+ onTransitionEndCapture?: TransitionEventHandler<T> | undefined;
2471
+ onTransitionRun?: TransitionEventHandler<T> | undefined;
2472
+ onTransitionRunCapture?: TransitionEventHandler<T> | undefined;
2473
+ onTransitionStart?: TransitionEventHandler<T> | undefined;
2474
+ onTransitionStartCapture?: TransitionEventHandler<T> | undefined;
2475
+ }
2476
+
2477
+ export interface CSSProperties extends CSS.Properties<string | number> {
2478
+ /**
2479
+ * The index signature was removed to enable closed typing for style
2480
+ * using CSSType. You're able to use type assertion or module augmentation
2481
+ * to add properties or an index signature of your own.
2482
+ *
2483
+ * For examples and more information, visit:
2484
+ * https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
2485
+ */
2486
+ }
2487
+
2488
+ // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
2489
+ interface AriaAttributes {
2490
+ /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
2491
+ "aria-activedescendant"?: string | undefined;
2492
+ /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
2493
+ "aria-atomic"?: Booleanish | undefined;
2494
+ /**
2495
+ * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
2496
+ * presented if they are made.
2497
+ */
2498
+ "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
2499
+ /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
2500
+ /**
2501
+ * Defines a string value that labels the current element, which is intended to be converted into Braille.
2502
+ * @see aria-label.
2503
+ */
2504
+ "aria-braillelabel"?: string | undefined;
2505
+ /**
2506
+ * Defines a human-readable, author-localized abbreviated description for the role of an element, which is intended to be converted into Braille.
2507
+ * @see aria-roledescription.
2508
+ */
2509
+ "aria-brailleroledescription"?: string | undefined;
2510
+ "aria-busy"?: Booleanish | undefined;
2511
+ /**
2512
+ * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
2513
+ * @see aria-pressed @see aria-selected.
2514
+ */
2515
+ "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
2516
+ /**
2517
+ * Defines the total number of columns in a table, grid, or treegrid.
2518
+ * @see aria-colindex.
2519
+ */
2520
+ "aria-colcount"?: number | undefined;
2521
+ /**
2522
+ * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
2523
+ * @see aria-colcount @see aria-colspan.
2524
+ */
2525
+ "aria-colindex"?: number | undefined;
2526
+ /**
2527
+ * Defines a human readable text alternative of aria-colindex.
2528
+ * @see aria-rowindextext.
2529
+ */
2530
+ "aria-colindextext"?: string | undefined;
2531
+ /**
2532
+ * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
2533
+ * @see aria-colindex @see aria-rowspan.
2534
+ */
2535
+ "aria-colspan"?: number | undefined;
2536
+ /**
2537
+ * Identifies the element (or elements) whose contents or presence are controlled by the current element.
2538
+ * @see aria-owns.
2539
+ */
2540
+ "aria-controls"?: string | undefined;
2541
+ /** Indicates the element that represents the current item within a container or set of related elements. */
2542
+ "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
2543
+ /**
2544
+ * Identifies the element (or elements) that describes the object.
2545
+ * @see aria-labelledby
2546
+ */
2547
+ "aria-describedby"?: string | undefined;
2548
+ /**
2549
+ * Defines a string value that describes or annotates the current element.
2550
+ * @see related aria-describedby.
2551
+ */
2552
+ "aria-description"?: string | undefined;
2553
+ /**
2554
+ * Identifies the element that provides a detailed, extended description for the object.
2555
+ * @see aria-describedby.
2556
+ */
2557
+ "aria-details"?: string | undefined;
2558
+ /**
2559
+ * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
2560
+ * @see aria-hidden @see aria-readonly.
2561
+ */
2562
+ "aria-disabled"?: Booleanish | undefined;
2563
+ /**
2564
+ * Indicates what functions can be performed when a dragged object is released on the drop target.
2565
+ * @deprecated in ARIA 1.1
2566
+ */
2567
+ "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
2568
+ /**
2569
+ * Identifies the element that provides an error message for the object.
2570
+ * @see aria-invalid @see aria-describedby.
2571
+ */
2572
+ "aria-errormessage"?: string | undefined;
2573
+ /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
2574
+ "aria-expanded"?: Booleanish | undefined;
2575
+ /**
2576
+ * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
2577
+ * allows assistive technology to override the general default of reading in document source order.
2578
+ */
2579
+ "aria-flowto"?: string | undefined;
2580
+ /**
2581
+ * Indicates an element's "grabbed" state in a drag-and-drop operation.
2582
+ * @deprecated in ARIA 1.1
2583
+ */
2584
+ "aria-grabbed"?: Booleanish | undefined;
2585
+ /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
2586
+ "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
2587
+ /**
2588
+ * Indicates whether the element is exposed to an accessibility API.
2589
+ * @see aria-disabled.
2590
+ */
2591
+ "aria-hidden"?: Booleanish | undefined;
2592
+ /**
2593
+ * Indicates the entered value does not conform to the format expected by the application.
2594
+ * @see aria-errormessage.
2595
+ */
2596
+ "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
2597
+ /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
2598
+ "aria-keyshortcuts"?: string | undefined;
2599
+ /**
2600
+ * Defines a string value that labels the current element.
2601
+ * @see aria-labelledby.
2602
+ */
2603
+ "aria-label"?: string | undefined;
2604
+ /**
2605
+ * Identifies the element (or elements) that labels the current element.
2606
+ * @see aria-describedby.
2607
+ */
2608
+ "aria-labelledby"?: string | undefined;
2609
+ /** Defines the hierarchical level of an element within a structure. */
2610
+ "aria-level"?: number | undefined;
2611
+ /** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
2612
+ "aria-live"?: "off" | "assertive" | "polite" | undefined;
2613
+ /** Indicates whether an element is modal when displayed. */
2614
+ "aria-modal"?: Booleanish | undefined;
2615
+ /** Indicates whether a text box accepts multiple lines of input or only a single line. */
2616
+ "aria-multiline"?: Booleanish | undefined;
2617
+ /** Indicates that the user may select more than one item from the current selectable descendants. */
2618
+ "aria-multiselectable"?: Booleanish | undefined;
2619
+ /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
2620
+ "aria-orientation"?: "horizontal" | "vertical" | undefined;
2621
+ /**
2622
+ * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
2623
+ * between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
2624
+ * @see aria-controls.
2625
+ */
2626
+ "aria-owns"?: string | undefined;
2627
+ /**
2628
+ * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
2629
+ * A hint could be a sample value or a brief description of the expected format.
2630
+ */
2631
+ "aria-placeholder"?: string | undefined;
2632
+ /**
2633
+ * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
2634
+ * @see aria-setsize.
2635
+ */
2636
+ "aria-posinset"?: number | undefined;
2637
+ /**
2638
+ * Indicates the current "pressed" state of toggle buttons.
2639
+ * @see aria-checked @see aria-selected.
2640
+ */
2641
+ "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
2642
+ /**
2643
+ * Indicates that the element is not editable, but is otherwise operable.
2644
+ * @see aria-disabled.
2645
+ */
2646
+ "aria-readonly"?: Booleanish | undefined;
2647
+ /**
2648
+ * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
2649
+ * @see aria-atomic.
2650
+ */
2651
+ "aria-relevant"?:
2652
+ | "additions"
2653
+ | "additions removals"
2654
+ | "additions text"
2655
+ | "all"
2656
+ | "removals"
2657
+ | "removals additions"
2658
+ | "removals text"
2659
+ | "text"
2660
+ | "text additions"
2661
+ | "text removals"
2662
+ | undefined;
2663
+ /** Indicates that user input is required on the element before a form may be submitted. */
2664
+ "aria-required"?: Booleanish | undefined;
2665
+ /** Defines a human-readable, author-localized description for the role of an element. */
2666
+ "aria-roledescription"?: string | undefined;
2667
+ /**
2668
+ * Defines the total number of rows in a table, grid, or treegrid.
2669
+ * @see aria-rowindex.
2670
+ */
2671
+ "aria-rowcount"?: number | undefined;
2672
+ /**
2673
+ * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
2674
+ * @see aria-rowcount @see aria-rowspan.
2675
+ */
2676
+ "aria-rowindex"?: number | undefined;
2677
+ /**
2678
+ * Defines a human readable text alternative of aria-rowindex.
2679
+ * @see aria-colindextext.
2680
+ */
2681
+ "aria-rowindextext"?: string | undefined;
2682
+ /**
2683
+ * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
2684
+ * @see aria-rowindex @see aria-colspan.
2685
+ */
2686
+ "aria-rowspan"?: number | undefined;
2687
+ /**
2688
+ * Indicates the current "selected" state of various widgets.
2689
+ * @see aria-checked @see aria-pressed.
2690
+ */
2691
+ "aria-selected"?: Booleanish | undefined;
2692
+ /**
2693
+ * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
2694
+ * @see aria-posinset.
2695
+ */
2696
+ "aria-setsize"?: number | undefined;
2697
+ /** Indicates if items in a table or grid are sorted in ascending or descending order. */
2698
+ "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
2699
+ /** Defines the maximum allowed value for a range widget. */
2700
+ "aria-valuemax"?: number | undefined;
2701
+ /** Defines the minimum allowed value for a range widget. */
2702
+ "aria-valuemin"?: number | undefined;
2703
+ /**
2704
+ * Defines the current value for a range widget.
2705
+ * @see aria-valuetext.
2706
+ */
2707
+ "aria-valuenow"?: number | undefined;
2708
+ /** Defines the human readable text alternative of aria-valuenow for a range widget. */
2709
+ "aria-valuetext"?: string | undefined;
2710
+ }
2711
+
2712
+ // All the WAI-ARIA 1.1 role attribute values from https://www.w3.org/TR/wai-aria-1.1/#role_definitions
2713
+ type AriaRole =
2714
+ | "alert"
2715
+ | "alertdialog"
2716
+ | "application"
2717
+ | "article"
2718
+ | "banner"
2719
+ | "button"
2720
+ | "cell"
2721
+ | "checkbox"
2722
+ | "columnheader"
2723
+ | "combobox"
2724
+ | "complementary"
2725
+ | "contentinfo"
2726
+ | "definition"
2727
+ | "dialog"
2728
+ | "directory"
2729
+ | "document"
2730
+ | "feed"
2731
+ | "figure"
2732
+ | "form"
2733
+ | "grid"
2734
+ | "gridcell"
2735
+ | "group"
2736
+ | "heading"
2737
+ | "img"
2738
+ | "link"
2739
+ | "list"
2740
+ | "listbox"
2741
+ | "listitem"
2742
+ | "log"
2743
+ | "main"
2744
+ | "marquee"
2745
+ | "math"
2746
+ | "menu"
2747
+ | "menubar"
2748
+ | "menuitem"
2749
+ | "menuitemcheckbox"
2750
+ | "menuitemradio"
2751
+ | "navigation"
2752
+ | "none"
2753
+ | "note"
2754
+ | "option"
2755
+ | "presentation"
2756
+ | "progressbar"
2757
+ | "radio"
2758
+ | "radiogroup"
2759
+ | "region"
2760
+ | "row"
2761
+ | "rowgroup"
2762
+ | "rowheader"
2763
+ | "scrollbar"
2764
+ | "search"
2765
+ | "searchbox"
2766
+ | "separator"
2767
+ | "slider"
2768
+ | "spinbutton"
2769
+ | "status"
2770
+ | "switch"
2771
+ | "tab"
2772
+ | "table"
2773
+ | "tablist"
2774
+ | "tabpanel"
2775
+ | "term"
2776
+ | "textbox"
2777
+ | "timer"
2778
+ | "toolbar"
2779
+ | "tooltip"
2780
+ | "tree"
2781
+ | "treegrid"
2782
+ | "treeitem"
2783
+ | (string & {});
2784
+
2785
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
2786
+ // React-specific Attributes
2787
+ defaultChecked?: boolean | undefined;
2788
+ defaultValue?: string | number | readonly string[] | undefined;
2789
+ suppressContentEditableWarning?: boolean | undefined;
2790
+ suppressHydrationWarning?: boolean | undefined;
2791
+
2792
+ // Standard HTML Attributes
2793
+ accessKey?: string | undefined;
2794
+ autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
2795
+ autoFocus?: boolean | undefined;
2796
+ className?: string | undefined;
2797
+ contentEditable?: Booleanish | "inherit" | "plaintext-only" | undefined;
2798
+ contextMenu?: string | undefined;
2799
+ dir?: string | undefined;
2800
+ draggable?: Booleanish | undefined;
2801
+ enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
2802
+ hidden?: boolean | undefined;
2803
+ id?: string | undefined;
2804
+ lang?: string | undefined;
2805
+ nonce?: string | undefined;
2806
+ slot?: string | undefined;
2807
+ spellCheck?: Booleanish | undefined;
2808
+ style?: CSSProperties | undefined;
2809
+ tabIndex?: number | undefined;
2810
+ title?: string | undefined;
2811
+ translate?: "yes" | "no" | undefined;
2812
+
2813
+ // Unknown
2814
+ radioGroup?: string | undefined; // <command>, <menuitem>
2815
+
2816
+ // WAI-ARIA
2817
+ role?: AriaRole | undefined;
2818
+
2819
+ // RDFa Attributes
2820
+ about?: string | undefined;
2821
+ content?: string | undefined;
2822
+ datatype?: string | undefined;
2823
+ inlist?: any;
2824
+ prefix?: string | undefined;
2825
+ property?: string | undefined;
2826
+ rel?: string | undefined;
2827
+ resource?: string | undefined;
2828
+ rev?: string | undefined;
2829
+ typeof?: string | undefined;
2830
+ vocab?: string | undefined;
2831
+
2832
+ // Non-standard Attributes
2833
+ autoCorrect?: string | undefined;
2834
+ autoSave?: string | undefined;
2835
+ color?: string | undefined;
2836
+ itemProp?: string | undefined;
2837
+ itemScope?: boolean | undefined;
2838
+ itemType?: string | undefined;
2839
+ itemID?: string | undefined;
2840
+ itemRef?: string | undefined;
2841
+ results?: number | undefined;
2842
+ security?: string | undefined;
2843
+ unselectable?: "on" | "off" | undefined;
2844
+
2845
+ // Popover API
2846
+ popover?: "" | "auto" | "manual" | "hint" | undefined;
2847
+ popoverTargetAction?: "toggle" | "show" | "hide" | undefined;
2848
+ popoverTarget?: string | undefined;
2849
+
2850
+ // Living Standard
2851
+ /**
2852
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/inert}
2853
+ */
2854
+ inert?: boolean | undefined;
2855
+ /**
2856
+ * Hints at the type of data that might be entered by the user while editing the element or its contents
2857
+ * @see {@link https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute}
2858
+ */
2859
+ inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
2860
+ /**
2861
+ * Specify that a standard HTML element should behave like a defined custom built-in element
2862
+ * @see {@link https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is}
2863
+ */
2864
+ is?: string | undefined;
2865
+ /**
2866
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts}
2867
+ */
2868
+ exportparts?: string | undefined;
2869
+ /**
2870
+ * @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part}
2871
+ */
2872
+ part?: string | undefined;
2873
+ }
2874
+
2875
+ /**
2876
+ * For internal usage only.
2877
+ * Different release channels declare additional types of ReactNode this particular release channel accepts.
2878
+ * App or library types should never augment this interface.
2879
+ */
2880
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS {}
2881
+
2882
+ interface AllHTMLAttributes<T> extends HTMLAttributes<T> {
2883
+ // Standard HTML Attributes
2884
+ accept?: string | undefined;
2885
+ acceptCharset?: string | undefined;
2886
+ action?:
2887
+ | string
2888
+ | undefined
2889
+ | ((formData: FormData) => void | Promise<void>)
2890
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
2891
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
2892
+ ];
2893
+ allowFullScreen?: boolean | undefined;
2894
+ allowTransparency?: boolean | undefined;
2895
+ alt?: string | undefined;
2896
+ as?: string | undefined;
2897
+ async?: boolean | undefined;
2898
+ autoComplete?: string | undefined;
2899
+ autoPlay?: boolean | undefined;
2900
+ capture?: boolean | "user" | "environment" | undefined;
2901
+ cellPadding?: number | string | undefined;
2902
+ cellSpacing?: number | string | undefined;
2903
+ charSet?: string | undefined;
2904
+ challenge?: string | undefined;
2905
+ checked?: boolean | undefined;
2906
+ cite?: string | undefined;
2907
+ classID?: string | undefined;
2908
+ cols?: number | undefined;
2909
+ colSpan?: number | undefined;
2910
+ controls?: boolean | undefined;
2911
+ coords?: string | undefined;
2912
+ crossOrigin?: CrossOrigin;
2913
+ data?: string | undefined;
2914
+ dateTime?: string | undefined;
2915
+ default?: boolean | undefined;
2916
+ defer?: boolean | undefined;
2917
+ disabled?: boolean | undefined;
2918
+ download?: any;
2919
+ encType?: string | undefined;
2920
+ form?: string | undefined;
2921
+ formAction?:
2922
+ | string
2923
+ | undefined
2924
+ | ((formData: FormData) => void | Promise<void>)
2925
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
2926
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
2927
+ ];
2928
+ formEncType?: string | undefined;
2929
+ formMethod?: string | undefined;
2930
+ formNoValidate?: boolean | undefined;
2931
+ formTarget?: string | undefined;
2932
+ frameBorder?: number | string | undefined;
2933
+ headers?: string | undefined;
2934
+ height?: number | string | undefined;
2935
+ high?: number | undefined;
2936
+ href?: string | undefined;
2937
+ hrefLang?: string | undefined;
2938
+ htmlFor?: string | undefined;
2939
+ httpEquiv?: string | undefined;
2940
+ integrity?: string | undefined;
2941
+ keyParams?: string | undefined;
2942
+ keyType?: string | undefined;
2943
+ kind?: string | undefined;
2944
+ label?: string | undefined;
2945
+ list?: string | undefined;
2946
+ loop?: boolean | undefined;
2947
+ low?: number | undefined;
2948
+ manifest?: string | undefined;
2949
+ marginHeight?: number | undefined;
2950
+ marginWidth?: number | undefined;
2951
+ max?: number | string | undefined;
2952
+ maxLength?: number | undefined;
2953
+ media?: string | undefined;
2954
+ mediaGroup?: string | undefined;
2955
+ method?: string | undefined;
2956
+ min?: number | string | undefined;
2957
+ minLength?: number | undefined;
2958
+ multiple?: boolean | undefined;
2959
+ muted?: boolean | undefined;
2960
+ name?: string | undefined;
2961
+ noValidate?: boolean | undefined;
2962
+ open?: boolean | undefined;
2963
+ optimum?: number | undefined;
2964
+ pattern?: string | undefined;
2965
+ placeholder?: string | undefined;
2966
+ playsInline?: boolean | undefined;
2967
+ poster?: string | undefined;
2968
+ preload?: string | undefined;
2969
+ readOnly?: boolean | undefined;
2970
+ required?: boolean | undefined;
2971
+ reversed?: boolean | undefined;
2972
+ rows?: number | undefined;
2973
+ rowSpan?: number | undefined;
2974
+ sandbox?: string | undefined;
2975
+ scope?: string | undefined;
2976
+ scoped?: boolean | undefined;
2977
+ scrolling?: string | undefined;
2978
+ seamless?: boolean | undefined;
2979
+ selected?: boolean | undefined;
2980
+ shape?: string | undefined;
2981
+ size?: number | undefined;
2982
+ sizes?: string | undefined;
2983
+ span?: number | undefined;
2984
+ src?: string | undefined;
2985
+ srcDoc?: string | undefined;
2986
+ srcLang?: string | undefined;
2987
+ srcSet?: string | undefined;
2988
+ start?: number | undefined;
2989
+ step?: number | string | undefined;
2990
+ summary?: string | undefined;
2991
+ target?: string | undefined;
2992
+ type?: string | undefined;
2993
+ useMap?: string | undefined;
2994
+ value?: string | readonly string[] | number | undefined;
2995
+ width?: number | string | undefined;
2996
+ wmode?: string | undefined;
2997
+ wrap?: string | undefined;
2998
+ }
2999
+
3000
+ type HTMLAttributeReferrerPolicy =
3001
+ | ""
3002
+ | "no-referrer"
3003
+ | "no-referrer-when-downgrade"
3004
+ | "origin"
3005
+ | "origin-when-cross-origin"
3006
+ | "same-origin"
3007
+ | "strict-origin"
3008
+ | "strict-origin-when-cross-origin"
3009
+ | "unsafe-url";
3010
+
3011
+ type HTMLAttributeAnchorTarget =
3012
+ | "_self"
3013
+ | "_blank"
3014
+ | "_parent"
3015
+ | "_top"
3016
+ | (string & {});
3017
+
3018
+ interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
3019
+ download?: any;
3020
+ href?: string | undefined;
3021
+ hrefLang?: string | undefined;
3022
+ media?: string | undefined;
3023
+ ping?: string | undefined;
3024
+ target?: HTMLAttributeAnchorTarget | undefined;
3025
+ type?: string | undefined;
3026
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3027
+ }
3028
+
3029
+ interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
3030
+
3031
+ interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
3032
+ alt?: string | undefined;
3033
+ coords?: string | undefined;
3034
+ download?: any;
3035
+ href?: string | undefined;
3036
+ hrefLang?: string | undefined;
3037
+ media?: string | undefined;
3038
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3039
+ shape?: string | undefined;
3040
+ target?: string | undefined;
3041
+ }
3042
+
3043
+ interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
3044
+ href?: string | undefined;
3045
+ target?: string | undefined;
3046
+ }
3047
+
3048
+ interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
3049
+ cite?: string | undefined;
3050
+ }
3051
+
3052
+ interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
3053
+ disabled?: boolean | undefined;
3054
+ form?: string | undefined;
3055
+ formAction?:
3056
+ | string
3057
+ | ((formData: FormData) => void | Promise<void>)
3058
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3059
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3060
+ ]
3061
+ | undefined;
3062
+ formEncType?: string | undefined;
3063
+ formMethod?: string | undefined;
3064
+ formNoValidate?: boolean | undefined;
3065
+ formTarget?: string | undefined;
3066
+ name?: string | undefined;
3067
+ type?: "submit" | "reset" | "button" | undefined;
3068
+ value?: string | readonly string[] | number | undefined;
3069
+ }
3070
+
3071
+ interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
3072
+ height?: number | string | undefined;
3073
+ width?: number | string | undefined;
3074
+ }
3075
+
3076
+ interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
3077
+ span?: number | undefined;
3078
+ width?: number | string | undefined;
3079
+ }
3080
+
3081
+ interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
3082
+ span?: number | undefined;
3083
+ }
3084
+
3085
+ interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
3086
+ value?: string | readonly string[] | number | undefined;
3087
+ }
3088
+
3089
+ interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
3090
+ open?: boolean | undefined;
3091
+ name?: string | undefined;
3092
+ }
3093
+
3094
+ interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
3095
+ cite?: string | undefined;
3096
+ dateTime?: string | undefined;
3097
+ }
3098
+
3099
+ interface DialogHTMLAttributes<T> extends HTMLAttributes<T> {
3100
+ closedby?: "any" | "closerequest" | "none" | undefined;
3101
+ onCancel?: ReactEventHandler<T> | undefined;
3102
+ onClose?: ReactEventHandler<T> | undefined;
3103
+ open?: boolean | undefined;
3104
+ }
3105
+
3106
+ interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
3107
+ height?: number | string | undefined;
3108
+ src?: string | undefined;
3109
+ type?: string | undefined;
3110
+ width?: number | string | undefined;
3111
+ }
3112
+
3113
+ interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
3114
+ disabled?: boolean | undefined;
3115
+ form?: string | undefined;
3116
+ name?: string | undefined;
3117
+ }
3118
+
3119
+ interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
3120
+ acceptCharset?: string | undefined;
3121
+ action?:
3122
+ | string
3123
+ | undefined
3124
+ | ((formData: FormData) => void | Promise<void>)
3125
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3126
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3127
+ ];
3128
+ autoComplete?: string | undefined;
3129
+ encType?: string | undefined;
3130
+ method?: string | undefined;
3131
+ name?: string | undefined;
3132
+ noValidate?: boolean | undefined;
3133
+ target?: string | undefined;
3134
+ }
3135
+
3136
+ interface HtmlHTMLAttributes<T> extends HTMLAttributes<T> {
3137
+ manifest?: string | undefined;
3138
+ }
3139
+
3140
+ interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
3141
+ allow?: string | undefined;
3142
+ allowFullScreen?: boolean | undefined;
3143
+ allowTransparency?: boolean | undefined;
3144
+ /** @deprecated */
3145
+ frameBorder?: number | string | undefined;
3146
+ height?: number | string | undefined;
3147
+ loading?: "eager" | "lazy" | undefined;
3148
+ /** @deprecated */
3149
+ marginHeight?: number | undefined;
3150
+ /** @deprecated */
3151
+ marginWidth?: number | undefined;
3152
+ name?: string | undefined;
3153
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3154
+ sandbox?: string | undefined;
3155
+ /** @deprecated */
3156
+ scrolling?: string | undefined;
3157
+ seamless?: boolean | undefined;
3158
+ src?: string | undefined;
3159
+ srcDoc?: string | undefined;
3160
+ width?: number | string | undefined;
3161
+ }
3162
+
3163
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_IMG_SRC_TYPES {}
3164
+
3165
+ interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
3166
+ alt?: string | undefined;
3167
+ crossOrigin?: CrossOrigin;
3168
+ decoding?: "async" | "auto" | "sync" | undefined;
3169
+ fetchPriority?: "high" | "low" | "auto" | undefined;
3170
+ height?: number | string | undefined;
3171
+ loading?: "eager" | "lazy" | undefined;
3172
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3173
+ sizes?: string | undefined;
3174
+ src?:
3175
+ | string
3176
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_IMG_SRC_TYPES[
3177
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_IMG_SRC_TYPES
3178
+ ]
3179
+ | undefined;
3180
+ srcSet?: string | undefined;
3181
+ useMap?: string | undefined;
3182
+ width?: number | string | undefined;
3183
+ }
3184
+
3185
+ interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
3186
+ cite?: string | undefined;
3187
+ dateTime?: string | undefined;
3188
+ }
3189
+
3190
+ type HTMLInputTypeAttribute =
3191
+ | "button"
3192
+ | "checkbox"
3193
+ | "color"
3194
+ | "date"
3195
+ | "datetime-local"
3196
+ | "email"
3197
+ | "file"
3198
+ | "hidden"
3199
+ | "image"
3200
+ | "month"
3201
+ | "number"
3202
+ | "password"
3203
+ | "radio"
3204
+ | "range"
3205
+ | "reset"
3206
+ | "search"
3207
+ | "submit"
3208
+ | "tel"
3209
+ | "text"
3210
+ | "time"
3211
+ | "url"
3212
+ | "week"
3213
+ | (string & {});
3214
+
3215
+ type AutoFillAddressKind = "billing" | "shipping";
3216
+ type AutoFillBase = "" | "off" | "on";
3217
+ type AutoFillContactField =
3218
+ | "email"
3219
+ | "tel"
3220
+ | "tel-area-code"
3221
+ | "tel-country-code"
3222
+ | "tel-extension"
3223
+ | "tel-local"
3224
+ | "tel-local-prefix"
3225
+ | "tel-local-suffix"
3226
+ | "tel-national";
3227
+ type AutoFillContactKind = "home" | "mobile" | "work";
3228
+ type AutoFillCredentialField = "webauthn";
3229
+ type AutoFillNormalField =
3230
+ | "additional-name"
3231
+ | "address-level1"
3232
+ | "address-level2"
3233
+ | "address-level3"
3234
+ | "address-level4"
3235
+ | "address-line1"
3236
+ | "address-line2"
3237
+ | "address-line3"
3238
+ | "bday-day"
3239
+ | "bday-month"
3240
+ | "bday-year"
3241
+ | "cc-csc"
3242
+ | "cc-exp"
3243
+ | "cc-exp-month"
3244
+ | "cc-exp-year"
3245
+ | "cc-family-name"
3246
+ | "cc-given-name"
3247
+ | "cc-name"
3248
+ | "cc-number"
3249
+ | "cc-type"
3250
+ | "country"
3251
+ | "country-name"
3252
+ | "current-password"
3253
+ | "family-name"
3254
+ | "given-name"
3255
+ | "honorific-prefix"
3256
+ | "honorific-suffix"
3257
+ | "name"
3258
+ | "new-password"
3259
+ | "one-time-code"
3260
+ | "organization"
3261
+ | "postal-code"
3262
+ | "street-address"
3263
+ | "transaction-amount"
3264
+ | "transaction-currency"
3265
+ | "username";
3266
+ type OptionalPrefixToken<T extends string> = `${T} ` | "";
3267
+ type OptionalPostfixToken<T extends string> = ` ${T}` | "";
3268
+ type AutoFillField = AutoFillNormalField | `${OptionalPrefixToken<AutoFillContactKind>}${AutoFillContactField}`;
3269
+ type AutoFillSection = `section-${string}`;
3270
+ type AutoFill =
3271
+ | AutoFillBase
3272
+ | `${OptionalPrefixToken<AutoFillSection>}${OptionalPrefixToken<
3273
+ AutoFillAddressKind
3274
+ >}${AutoFillField}${OptionalPostfixToken<AutoFillCredentialField>}`;
3275
+ type HTMLInputAutoCompleteAttribute = AutoFill | (string & {});
3276
+
3277
+ interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
3278
+ accept?: string | undefined;
3279
+ alt?: string | undefined;
3280
+ autoComplete?: HTMLInputAutoCompleteAttribute | undefined;
3281
+ capture?: boolean | "user" | "environment" | undefined; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute
3282
+ checked?: boolean | undefined;
3283
+ disabled?: boolean | undefined;
3284
+ form?: string | undefined;
3285
+ formAction?:
3286
+ | string
3287
+ | ((formData: FormData) => void | Promise<void>)
3288
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[
3289
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS
3290
+ ]
3291
+ | undefined;
3292
+ formEncType?: string | undefined;
3293
+ formMethod?: string | undefined;
3294
+ formNoValidate?: boolean | undefined;
3295
+ formTarget?: string | undefined;
3296
+ height?: number | string | undefined;
3297
+ list?: string | undefined;
3298
+ max?: number | string | undefined;
3299
+ maxLength?: number | undefined;
3300
+ min?: number | string | undefined;
3301
+ minLength?: number | undefined;
3302
+ multiple?: boolean | undefined;
3303
+ name?: string | undefined;
3304
+ pattern?: string | undefined;
3305
+ placeholder?: string | undefined;
3306
+ readOnly?: boolean | undefined;
3307
+ required?: boolean | undefined;
3308
+ size?: number | undefined;
3309
+ src?: string | undefined;
3310
+ step?: number | string | undefined;
3311
+ type?: HTMLInputTypeAttribute | undefined;
3312
+ value?: string | readonly string[] | number | undefined;
3313
+ width?: number | string | undefined;
3314
+
3315
+ // No other element dispatching change events can be nested in a <input>
3316
+ // so we know the target will be a HTMLInputElement.
3317
+ onChange?: ChangeEventHandler<T, HTMLInputElement> | undefined;
3318
+ }
3319
+
3320
+ interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
3321
+ challenge?: string | undefined;
3322
+ disabled?: boolean | undefined;
3323
+ form?: string | undefined;
3324
+ keyType?: string | undefined;
3325
+ keyParams?: string | undefined;
3326
+ name?: string | undefined;
3327
+ }
3328
+
3329
+ interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
3330
+ form?: string | undefined;
3331
+ htmlFor?: string | undefined;
3332
+ }
3333
+
3334
+ interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
3335
+ value?: string | readonly string[] | number | undefined;
3336
+ }
3337
+
3338
+ interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
3339
+ as?: string | undefined;
3340
+ blocking?: "render" | (string & {}) | undefined;
3341
+ crossOrigin?: CrossOrigin;
3342
+ fetchPriority?: "high" | "low" | "auto" | undefined;
3343
+ href?: string | undefined;
3344
+ hrefLang?: string | undefined;
3345
+ integrity?: string | undefined;
3346
+ media?: string | undefined;
3347
+ imageSrcSet?: string | undefined;
3348
+ imageSizes?: string | undefined;
3349
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3350
+ sizes?: string | undefined;
3351
+ type?: string | undefined;
3352
+ charSet?: string | undefined;
3353
+
3354
+ // React props
3355
+ precedence?: string | undefined;
3356
+ }
3357
+
3358
+ interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
3359
+ name?: string | undefined;
3360
+ }
3361
+
3362
+ interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
3363
+ type?: string | undefined;
3364
+ }
3365
+
3366
+ interface DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_MEDIA_SRC_TYPES {}
3367
+
3368
+ interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
3369
+ autoPlay?: boolean | undefined;
3370
+ controls?: boolean | undefined;
3371
+ controlsList?: string | undefined;
3372
+ crossOrigin?: CrossOrigin;
3373
+ loop?: boolean | undefined;
3374
+ mediaGroup?: string | undefined;
3375
+ muted?: boolean | undefined;
3376
+ playsInline?: boolean | undefined;
3377
+ preload?: string | undefined;
3378
+ src?:
3379
+ | string
3380
+ | DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_MEDIA_SRC_TYPES[
3381
+ keyof DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_MEDIA_SRC_TYPES
3382
+ ]
3383
+ | undefined;
3384
+ }
3385
+
3386
+ interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
3387
+ charSet?: string | undefined;
3388
+ content?: string | undefined;
3389
+ httpEquiv?: string | undefined;
3390
+ media?: string | undefined;
3391
+ name?: string | undefined;
3392
+ }
3393
+
3394
+ interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
3395
+ form?: string | undefined;
3396
+ high?: number | undefined;
3397
+ low?: number | undefined;
3398
+ max?: number | string | undefined;
3399
+ min?: number | string | undefined;
3400
+ optimum?: number | undefined;
3401
+ value?: string | readonly string[] | number | undefined;
3402
+ }
3403
+
3404
+ interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
3405
+ cite?: string | undefined;
3406
+ }
3407
+
3408
+ interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
3409
+ classID?: string | undefined;
3410
+ data?: string | undefined;
3411
+ form?: string | undefined;
3412
+ height?: number | string | undefined;
3413
+ name?: string | undefined;
3414
+ type?: string | undefined;
3415
+ useMap?: string | undefined;
3416
+ width?: number | string | undefined;
3417
+ wmode?: string | undefined;
3418
+ }
3419
+
3420
+ interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
3421
+ reversed?: boolean | undefined;
3422
+ start?: number | undefined;
3423
+ type?: "1" | "a" | "A" | "i" | "I" | undefined;
3424
+ }
3425
+
3426
+ interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
3427
+ disabled?: boolean | undefined;
3428
+ label?: string | undefined;
3429
+ }
3430
+
3431
+ interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
3432
+ disabled?: boolean | undefined;
3433
+ label?: string | undefined;
3434
+ selected?: boolean | undefined;
3435
+ value?: string | readonly string[] | number | undefined;
3436
+ }
3437
+
3438
+ interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
3439
+ form?: string | undefined;
3440
+ htmlFor?: string | undefined;
3441
+ name?: string | undefined;
3442
+ }
3443
+
3444
+ interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
3445
+ name?: string | undefined;
3446
+ value?: string | readonly string[] | number | undefined;
3447
+ }
3448
+
3449
+ interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
3450
+ max?: number | string | undefined;
3451
+ value?: string | readonly string[] | number | undefined;
3452
+ }
3453
+
3454
+ interface SlotHTMLAttributes<T> extends HTMLAttributes<T> {
3455
+ name?: string | undefined;
3456
+ }
3457
+
3458
+ interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
3459
+ async?: boolean | undefined;
3460
+ blocking?: "render" | (string & {}) | undefined;
3461
+ /** @deprecated */
3462
+ charSet?: string | undefined;
3463
+ crossOrigin?: CrossOrigin;
3464
+ defer?: boolean | undefined;
3465
+ fetchPriority?: "high" | "low" | "auto" | undefined;
3466
+ integrity?: string | undefined;
3467
+ noModule?: boolean | undefined;
3468
+ referrerPolicy?: HTMLAttributeReferrerPolicy | undefined;
3469
+ src?: string | undefined;
3470
+ type?: string | undefined;
3471
+ }
3472
+
3473
+ interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
3474
+ autoComplete?: string | undefined;
3475
+ disabled?: boolean | undefined;
3476
+ form?: string | undefined;
3477
+ multiple?: boolean | undefined;
3478
+ name?: string | undefined;
3479
+ required?: boolean | undefined;
3480
+ size?: number | undefined;
3481
+ value?: string | readonly string[] | number | undefined;
3482
+ // No other element dispatching change events can be nested in a <select>
3483
+ // so we know the target will be a HTMLSelectElement.
3484
+ onChange?: ChangeEventHandler<T, HTMLSelectElement> | undefined;
3485
+ }
3486
+
3487
+ interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
3488
+ height?: number | string | undefined;
3489
+ media?: string | undefined;
3490
+ sizes?: string | undefined;
3491
+ src?: string | undefined;
3492
+ srcSet?: string | undefined;
3493
+ type?: string | undefined;
3494
+ width?: number | string | undefined;
3495
+ }
3496
+
3497
+ interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
3498
+ blocking?: "render" | (string & {}) | undefined;
3499
+ media?: string | undefined;
3500
+ scoped?: boolean | undefined;
3501
+ type?: string | undefined;
3502
+
3503
+ // React props
3504
+ href?: string | undefined;
3505
+ precedence?: string | undefined;
3506
+ }
3507
+
3508
+ interface TableHTMLAttributes<T> extends HTMLAttributes<T> {
3509
+ align?: "left" | "center" | "right" | undefined;
3510
+ bgcolor?: string | undefined;
3511
+ border?: number | undefined;
3512
+ cellPadding?: number | string | undefined;
3513
+ cellSpacing?: number | string | undefined;
3514
+ frame?: boolean | undefined;
3515
+ rules?: "none" | "groups" | "rows" | "columns" | "all" | undefined;
3516
+ summary?: string | undefined;
3517
+ width?: number | string | undefined;
3518
+ }
3519
+
3520
+ interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
3521
+ autoComplete?: string | undefined;
3522
+ cols?: number | undefined;
3523
+ dirName?: string | undefined;
3524
+ disabled?: boolean | undefined;
3525
+ form?: string | undefined;
3526
+ maxLength?: number | undefined;
3527
+ minLength?: number | undefined;
3528
+ name?: string | undefined;
3529
+ placeholder?: string | undefined;
3530
+ readOnly?: boolean | undefined;
3531
+ required?: boolean | undefined;
3532
+ rows?: number | undefined;
3533
+ value?: string | readonly string[] | number | undefined;
3534
+ wrap?: string | undefined;
3535
+
3536
+ // No other element dispatching change events can be nested in a <textarea>
3537
+ // so we know the target will be a HTMLTextAreaElement.
3538
+ onChange?: ChangeEventHandler<T, HTMLTextAreaElement> | undefined;
3539
+ }
3540
+
3541
+ interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
3542
+ align?: "left" | "center" | "right" | "justify" | "char" | undefined;
3543
+ colSpan?: number | undefined;
3544
+ headers?: string | undefined;
3545
+ rowSpan?: number | undefined;
3546
+ scope?: string | undefined;
3547
+ abbr?: string | undefined;
3548
+ height?: number | string | undefined;
3549
+ width?: number | string | undefined;
3550
+ valign?: "top" | "middle" | "bottom" | "baseline" | undefined;
3551
+ }
3552
+
3553
+ interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
3554
+ align?: "left" | "center" | "right" | "justify" | "char" | undefined;
3555
+ colSpan?: number | undefined;
3556
+ headers?: string | undefined;
3557
+ rowSpan?: number | undefined;
3558
+ scope?: string | undefined;
3559
+ abbr?: string | undefined;
3560
+ }
3561
+
3562
+ interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
3563
+ dateTime?: string | undefined;
3564
+ }
3565
+
3566
+ interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
3567
+ default?: boolean | undefined;
3568
+ kind?: string | undefined;
3569
+ label?: string | undefined;
3570
+ src?: string | undefined;
3571
+ srcLang?: string | undefined;
3572
+ }
3573
+
3574
+ interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
3575
+ height?: number | string | undefined;
3576
+ playsInline?: boolean | undefined;
3577
+ poster?: string | undefined;
3578
+ width?: number | string | undefined;
3579
+ disablePictureInPicture?: boolean | undefined;
3580
+ disableRemotePlayback?: boolean | undefined;
3581
+
3582
+ onResize?: ReactEventHandler<T> | undefined;
3583
+ onResizeCapture?: ReactEventHandler<T> | undefined;
3584
+ }
3585
+
3586
+ // this list is "complete" in that it contains every SVG attribute
3587
+ // that React supports, but the types can be improved.
3588
+ // Full list here: https://facebook.github.io/react/docs/dom-elements.html
3589
+ //
3590
+ // The three broad type categories are (in order of restrictiveness):
3591
+ // - "number | string"
3592
+ // - "string"
3593
+ // - union of string literals
3594
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
3595
+ // React-specific Attributes
3596
+ suppressHydrationWarning?: boolean | undefined;
3597
+
3598
+ // Attributes which also defined in HTMLAttributes
3599
+ // See comment in SVGDOMPropertyConfig.js
3600
+ className?: string | undefined;
3601
+ color?: string | undefined;
3602
+ height?: number | string | undefined;
3603
+ id?: string | undefined;
3604
+ lang?: string | undefined;
3605
+ max?: number | string | undefined;
3606
+ media?: string | undefined;
3607
+ method?: string | undefined;
3608
+ min?: number | string | undefined;
3609
+ name?: string | undefined;
3610
+ nonce?: string | undefined;
3611
+ part?: string | undefined;
3612
+ slot?: string | undefined;
3613
+ style?: CSSProperties | undefined;
3614
+ target?: string | undefined;
3615
+ type?: string | undefined;
3616
+ width?: number | string | undefined;
3617
+
3618
+ // Other HTML properties supported by SVG elements in browsers
3619
+ role?: AriaRole | undefined;
3620
+ tabIndex?: number | undefined;
3621
+ crossOrigin?: CrossOrigin;
3622
+
3623
+ // SVG Specific attributes
3624
+ accentHeight?: number | string | undefined;
3625
+ accumulate?: "none" | "sum" | undefined;
3626
+ additive?: "replace" | "sum" | undefined;
3627
+ alignmentBaseline?:
3628
+ | "auto"
3629
+ | "baseline"
3630
+ | "before-edge"
3631
+ | "text-before-edge"
3632
+ | "middle"
3633
+ | "central"
3634
+ | "after-edge"
3635
+ | "text-after-edge"
3636
+ | "ideographic"
3637
+ | "alphabetic"
3638
+ | "hanging"
3639
+ | "mathematical"
3640
+ | "inherit"
3641
+ | undefined;
3642
+ allowReorder?: "no" | "yes" | undefined;
3643
+ alphabetic?: number | string | undefined;
3644
+ amplitude?: number | string | undefined;
3645
+ arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
3646
+ ascent?: number | string | undefined;
3647
+ attributeName?: string | undefined;
3648
+ attributeType?: string | undefined;
3649
+ autoReverse?: Booleanish | undefined;
3650
+ azimuth?: number | string | undefined;
3651
+ baseFrequency?: number | string | undefined;
3652
+ baselineShift?: number | string | undefined;
3653
+ baseProfile?: number | string | undefined;
3654
+ bbox?: number | string | undefined;
3655
+ begin?: number | string | undefined;
3656
+ bias?: number | string | undefined;
3657
+ by?: number | string | undefined;
3658
+ calcMode?: number | string | undefined;
3659
+ capHeight?: number | string | undefined;
3660
+ clip?: number | string | undefined;
3661
+ clipPath?: string | undefined;
3662
+ clipPathUnits?: number | string | undefined;
3663
+ clipRule?: number | string | undefined;
3664
+ colorInterpolation?: number | string | undefined;
3665
+ colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
3666
+ colorProfile?: number | string | undefined;
3667
+ colorRendering?: number | string | undefined;
3668
+ contentScriptType?: number | string | undefined;
3669
+ contentStyleType?: number | string | undefined;
3670
+ cursor?: number | string | undefined;
3671
+ cx?: number | string | undefined;
3672
+ cy?: number | string | undefined;
3673
+ d?: string | undefined;
3674
+ decelerate?: number | string | undefined;
3675
+ descent?: number | string | undefined;
3676
+ diffuseConstant?: number | string | undefined;
3677
+ direction?: number | string | undefined;
3678
+ display?: number | string | undefined;
3679
+ divisor?: number | string | undefined;
3680
+ dominantBaseline?:
3681
+ | "auto"
3682
+ | "use-script"
3683
+ | "no-change"
3684
+ | "reset-size"
3685
+ | "ideographic"
3686
+ | "alphabetic"
3687
+ | "hanging"
3688
+ | "mathematical"
3689
+ | "central"
3690
+ | "middle"
3691
+ | "text-after-edge"
3692
+ | "text-before-edge"
3693
+ | "inherit"
3694
+ | undefined;
3695
+ dur?: number | string | undefined;
3696
+ dx?: number | string | undefined;
3697
+ dy?: number | string | undefined;
3698
+ edgeMode?: number | string | undefined;
3699
+ elevation?: number | string | undefined;
3700
+ enableBackground?: number | string | undefined;
3701
+ end?: number | string | undefined;
3702
+ exponent?: number | string | undefined;
3703
+ externalResourcesRequired?: Booleanish | undefined;
3704
+ fill?: string | undefined;
3705
+ fillOpacity?: number | string | undefined;
3706
+ fillRule?: "nonzero" | "evenodd" | "inherit" | undefined;
3707
+ filter?: string | undefined;
3708
+ filterRes?: number | string | undefined;
3709
+ filterUnits?: number | string | undefined;
3710
+ floodColor?: number | string | undefined;
3711
+ floodOpacity?: number | string | undefined;
3712
+ focusable?: Booleanish | "auto" | undefined;
3713
+ fontFamily?: string | undefined;
3714
+ fontSize?: number | string | undefined;
3715
+ fontSizeAdjust?: number | string | undefined;
3716
+ fontStretch?: number | string | undefined;
3717
+ fontStyle?: number | string | undefined;
3718
+ fontVariant?: number | string | undefined;
3719
+ fontWeight?: number | string | undefined;
3720
+ format?: number | string | undefined;
3721
+ fr?: number | string | undefined;
3722
+ from?: number | string | undefined;
3723
+ fx?: number | string | undefined;
3724
+ fy?: number | string | undefined;
3725
+ g1?: number | string | undefined;
3726
+ g2?: number | string | undefined;
3727
+ glyphName?: number | string | undefined;
3728
+ glyphOrientationHorizontal?: number | string | undefined;
3729
+ glyphOrientationVertical?: number | string | undefined;
3730
+ glyphRef?: number | string | undefined;
3731
+ gradientTransform?: string | undefined;
3732
+ gradientUnits?: string | undefined;
3733
+ hanging?: number | string | undefined;
3734
+ horizAdvX?: number | string | undefined;
3735
+ horizOriginX?: number | string | undefined;
3736
+ href?: string | undefined;
3737
+ ideographic?: number | string | undefined;
3738
+ imageRendering?: number | string | undefined;
3739
+ in2?: number | string | undefined;
3740
+ in?: string | undefined;
3741
+ intercept?: number | string | undefined;
3742
+ k1?: number | string | undefined;
3743
+ k2?: number | string | undefined;
3744
+ k3?: number | string | undefined;
3745
+ k4?: number | string | undefined;
3746
+ k?: number | string | undefined;
3747
+ kernelMatrix?: number | string | undefined;
3748
+ kernelUnitLength?: number | string | undefined;
3749
+ kerning?: number | string | undefined;
3750
+ keyPoints?: number | string | undefined;
3751
+ keySplines?: number | string | undefined;
3752
+ keyTimes?: number | string | undefined;
3753
+ lengthAdjust?: number | string | undefined;
3754
+ letterSpacing?: number | string | undefined;
3755
+ lightingColor?: number | string | undefined;
3756
+ limitingConeAngle?: number | string | undefined;
3757
+ local?: number | string | undefined;
3758
+ markerEnd?: string | undefined;
3759
+ markerHeight?: number | string | undefined;
3760
+ markerMid?: string | undefined;
3761
+ markerStart?: string | undefined;
3762
+ markerUnits?: number | string | undefined;
3763
+ markerWidth?: number | string | undefined;
3764
+ mask?: string | undefined;
3765
+ maskContentUnits?: number | string | undefined;
3766
+ maskUnits?: number | string | undefined;
3767
+ mathematical?: number | string | undefined;
3768
+ mode?: number | string | undefined;
3769
+ numOctaves?: number | string | undefined;
3770
+ offset?: number | string | undefined;
3771
+ opacity?: number | string | undefined;
3772
+ operator?: number | string | undefined;
3773
+ order?: number | string | undefined;
3774
+ orient?: number | string | undefined;
3775
+ orientation?: number | string | undefined;
3776
+ origin?: number | string | undefined;
3777
+ overflow?: number | string | undefined;
3778
+ overlinePosition?: number | string | undefined;
3779
+ overlineThickness?: number | string | undefined;
3780
+ paintOrder?: number | string | undefined;
3781
+ panose1?: number | string | undefined;
3782
+ path?: string | undefined;
3783
+ pathLength?: number | string | undefined;
3784
+ patternContentUnits?: string | undefined;
3785
+ patternTransform?: number | string | undefined;
3786
+ patternUnits?: string | undefined;
3787
+ pointerEvents?: number | string | undefined;
3788
+ points?: string | undefined;
3789
+ pointsAtX?: number | string | undefined;
3790
+ pointsAtY?: number | string | undefined;
3791
+ pointsAtZ?: number | string | undefined;
3792
+ preserveAlpha?: Booleanish | undefined;
3793
+ preserveAspectRatio?: string | undefined;
3794
+ primitiveUnits?: number | string | undefined;
3795
+ r?: number | string | undefined;
3796
+ radius?: number | string | undefined;
3797
+ refX?: number | string | undefined;
3798
+ refY?: number | string | undefined;
3799
+ renderingIntent?: number | string | undefined;
3800
+ repeatCount?: number | string | undefined;
3801
+ repeatDur?: number | string | undefined;
3802
+ requiredExtensions?: number | string | undefined;
3803
+ requiredFeatures?: number | string | undefined;
3804
+ restart?: number | string | undefined;
3805
+ result?: string | undefined;
3806
+ rotate?: number | string | undefined;
3807
+ rx?: number | string | undefined;
3808
+ ry?: number | string | undefined;
3809
+ scale?: number | string | undefined;
3810
+ seed?: number | string | undefined;
3811
+ shapeRendering?: number | string | undefined;
3812
+ slope?: number | string | undefined;
3813
+ spacing?: number | string | undefined;
3814
+ specularConstant?: number | string | undefined;
3815
+ specularExponent?: number | string | undefined;
3816
+ speed?: number | string | undefined;
3817
+ spreadMethod?: string | undefined;
3818
+ startOffset?: number | string | undefined;
3819
+ stdDeviation?: number | string | undefined;
3820
+ stemh?: number | string | undefined;
3821
+ stemv?: number | string | undefined;
3822
+ stitchTiles?: number | string | undefined;
3823
+ stopColor?: string | undefined;
3824
+ stopOpacity?: number | string | undefined;
3825
+ strikethroughPosition?: number | string | undefined;
3826
+ strikethroughThickness?: number | string | undefined;
3827
+ string?: number | string | undefined;
3828
+ stroke?: string | undefined;
3829
+ strokeDasharray?: string | number | undefined;
3830
+ strokeDashoffset?: string | number | undefined;
3831
+ strokeLinecap?: "butt" | "round" | "square" | "inherit" | undefined;
3832
+ strokeLinejoin?: "miter" | "round" | "bevel" | "inherit" | undefined;
3833
+ strokeMiterlimit?: number | string | undefined;
3834
+ strokeOpacity?: number | string | undefined;
3835
+ strokeWidth?: number | string | undefined;
3836
+ surfaceScale?: number | string | undefined;
3837
+ systemLanguage?: number | string | undefined;
3838
+ tableValues?: number | string | undefined;
3839
+ targetX?: number | string | undefined;
3840
+ targetY?: number | string | undefined;
3841
+ textAnchor?: "start" | "middle" | "end" | "inherit" | undefined;
3842
+ textDecoration?: number | string | undefined;
3843
+ textLength?: number | string | undefined;
3844
+ textRendering?: number | string | undefined;
3845
+ to?: number | string | undefined;
3846
+ transform?: string | undefined;
3847
+ u1?: number | string | undefined;
3848
+ u2?: number | string | undefined;
3849
+ underlinePosition?: number | string | undefined;
3850
+ underlineThickness?: number | string | undefined;
3851
+ unicode?: number | string | undefined;
3852
+ unicodeBidi?: number | string | undefined;
3853
+ unicodeRange?: number | string | undefined;
3854
+ unitsPerEm?: number | string | undefined;
3855
+ vAlphabetic?: number | string | undefined;
3856
+ values?: string | undefined;
3857
+ vectorEffect?: number | string | undefined;
3858
+ version?: string | undefined;
3859
+ vertAdvY?: number | string | undefined;
3860
+ vertOriginX?: number | string | undefined;
3861
+ vertOriginY?: number | string | undefined;
3862
+ vHanging?: number | string | undefined;
3863
+ vIdeographic?: number | string | undefined;
3864
+ viewBox?: string | undefined;
3865
+ viewTarget?: number | string | undefined;
3866
+ visibility?: number | string | undefined;
3867
+ vMathematical?: number | string | undefined;
3868
+ widths?: number | string | undefined;
3869
+ wordSpacing?: number | string | undefined;
3870
+ writingMode?: number | string | undefined;
3871
+ x1?: number | string | undefined;
3872
+ x2?: number | string | undefined;
3873
+ x?: number | string | undefined;
3874
+ xChannelSelector?: string | undefined;
3875
+ xHeight?: number | string | undefined;
3876
+ xlinkActuate?: string | undefined;
3877
+ xlinkArcrole?: string | undefined;
3878
+ xlinkHref?: string | undefined;
3879
+ xlinkRole?: string | undefined;
3880
+ xlinkShow?: string | undefined;
3881
+ xlinkTitle?: string | undefined;
3882
+ xlinkType?: string | undefined;
3883
+ xmlBase?: string | undefined;
3884
+ xmlLang?: string | undefined;
3885
+ xmlns?: string | undefined;
3886
+ xmlnsXlink?: string | undefined;
3887
+ xmlSpace?: string | undefined;
3888
+ y1?: number | string | undefined;
3889
+ y2?: number | string | undefined;
3890
+ y?: number | string | undefined;
3891
+ yChannelSelector?: string | undefined;
3892
+ z?: number | string | undefined;
3893
+ zoomAndPan?: string | undefined;
3894
+ }
3895
+
3896
+ interface WebViewHTMLAttributes<T> extends HTMLAttributes<T> {
3897
+ allowFullScreen?: boolean | undefined;
3898
+ allowpopups?: boolean | undefined;
3899
+ autosize?: boolean | undefined;
3900
+ blinkfeatures?: string | undefined;
3901
+ disableblinkfeatures?: string | undefined;
3902
+ disableguestresize?: boolean | undefined;
3903
+ disablewebsecurity?: boolean | undefined;
3904
+ guestinstance?: string | undefined;
3905
+ httpreferrer?: string | undefined;
3906
+ nodeintegration?: boolean | undefined;
3907
+ partition?: string | undefined;
3908
+ plugins?: boolean | undefined;
3909
+ preload?: string | undefined;
3910
+ src?: string | undefined;
3911
+ useragent?: string | undefined;
3912
+ webpreferences?: string | undefined;
3913
+ }
3914
+
3915
+ // TODO: Move to react-dom
3916
+ type HTMLElementType =
3917
+ | "a"
3918
+ | "abbr"
3919
+ | "address"
3920
+ | "area"
3921
+ | "article"
3922
+ | "aside"
3923
+ | "audio"
3924
+ | "b"
3925
+ | "base"
3926
+ | "bdi"
3927
+ | "bdo"
3928
+ | "big"
3929
+ | "blockquote"
3930
+ | "body"
3931
+ | "br"
3932
+ | "button"
3933
+ | "canvas"
3934
+ | "caption"
3935
+ | "center"
3936
+ | "cite"
3937
+ | "code"
3938
+ | "col"
3939
+ | "colgroup"
3940
+ | "data"
3941
+ | "datalist"
3942
+ | "dd"
3943
+ | "del"
3944
+ | "details"
3945
+ | "dfn"
3946
+ | "dialog"
3947
+ | "div"
3948
+ | "dl"
3949
+ | "dt"
3950
+ | "em"
3951
+ | "embed"
3952
+ | "fieldset"
3953
+ | "figcaption"
3954
+ | "figure"
3955
+ | "footer"
3956
+ | "form"
3957
+ | "h1"
3958
+ | "h2"
3959
+ | "h3"
3960
+ | "h4"
3961
+ | "h5"
3962
+ | "h6"
3963
+ | "head"
3964
+ | "header"
3965
+ | "hgroup"
3966
+ | "hr"
3967
+ | "html"
3968
+ | "i"
3969
+ | "iframe"
3970
+ | "img"
3971
+ | "input"
3972
+ | "ins"
3973
+ | "kbd"
3974
+ | "keygen"
3975
+ | "label"
3976
+ | "legend"
3977
+ | "li"
3978
+ | "link"
3979
+ | "main"
3980
+ | "map"
3981
+ | "mark"
3982
+ | "menu"
3983
+ | "menuitem"
3984
+ | "meta"
3985
+ | "meter"
3986
+ | "nav"
3987
+ | "noscript"
3988
+ | "object"
3989
+ | "ol"
3990
+ | "optgroup"
3991
+ | "option"
3992
+ | "output"
3993
+ | "p"
3994
+ | "param"
3995
+ | "picture"
3996
+ | "pre"
3997
+ | "progress"
3998
+ | "q"
3999
+ | "rp"
4000
+ | "rt"
4001
+ | "ruby"
4002
+ | "s"
4003
+ | "samp"
4004
+ | "search"
4005
+ | "slot"
4006
+ | "script"
4007
+ | "section"
4008
+ | "select"
4009
+ | "small"
4010
+ | "source"
4011
+ | "span"
4012
+ | "strong"
4013
+ | "style"
4014
+ | "sub"
4015
+ | "summary"
4016
+ | "sup"
4017
+ | "table"
4018
+ | "template"
4019
+ | "tbody"
4020
+ | "td"
4021
+ | "textarea"
4022
+ | "tfoot"
4023
+ | "th"
4024
+ | "thead"
4025
+ | "time"
4026
+ | "title"
4027
+ | "tr"
4028
+ | "track"
4029
+ | "u"
4030
+ | "ul"
4031
+ | "var"
4032
+ | "video"
4033
+ | "wbr"
4034
+ | "webview";
4035
+
4036
+ // TODO: Move to react-dom
4037
+ type SVGElementType =
4038
+ | "animate"
4039
+ | "circle"
4040
+ | "clipPath"
4041
+ | "defs"
4042
+ | "desc"
4043
+ | "ellipse"
4044
+ | "feBlend"
4045
+ | "feColorMatrix"
4046
+ | "feComponentTransfer"
4047
+ | "feComposite"
4048
+ | "feConvolveMatrix"
4049
+ | "feDiffuseLighting"
4050
+ | "feDisplacementMap"
4051
+ | "feDistantLight"
4052
+ | "feDropShadow"
4053
+ | "feFlood"
4054
+ | "feFuncA"
4055
+ | "feFuncB"
4056
+ | "feFuncG"
4057
+ | "feFuncR"
4058
+ | "feGaussianBlur"
4059
+ | "feImage"
4060
+ | "feMerge"
4061
+ | "feMergeNode"
4062
+ | "feMorphology"
4063
+ | "feOffset"
4064
+ | "fePointLight"
4065
+ | "feSpecularLighting"
4066
+ | "feSpotLight"
4067
+ | "feTile"
4068
+ | "feTurbulence"
4069
+ | "filter"
4070
+ | "foreignObject"
4071
+ | "g"
4072
+ | "image"
4073
+ | "line"
4074
+ | "linearGradient"
4075
+ | "marker"
4076
+ | "mask"
4077
+ | "metadata"
4078
+ | "path"
4079
+ | "pattern"
4080
+ | "polygon"
4081
+ | "polyline"
4082
+ | "radialGradient"
4083
+ | "rect"
4084
+ | "stop"
4085
+ | "svg"
4086
+ | "switch"
4087
+ | "symbol"
4088
+ | "text"
4089
+ | "textPath"
4090
+ | "tspan"
4091
+ | "use"
4092
+ | "view";
4093
+
4094
+ //
4095
+ // Browser Interfaces
4096
+ // https://github.com/nikeee/2048-typescript/blob/master/2048/js/touch.d.ts
4097
+ // ----------------------------------------------------------------------
4098
+
4099
+ interface AbstractView {
4100
+ styleMedia: StyleMedia;
4101
+ document: Document;
4102
+ }
4103
+
4104
+ interface Touch {
4105
+ identifier: number;
4106
+ target: EventTarget;
4107
+ screenX: number;
4108
+ screenY: number;
4109
+ clientX: number;
4110
+ clientY: number;
4111
+ pageX: number;
4112
+ pageY: number;
4113
+ }
4114
+
4115
+ interface TouchList {
4116
+ [index: number]: Touch;
4117
+ length: number;
4118
+ item(index: number): Touch;
4119
+ identifiedTouch(identifier: number): Touch;
4120
+ }
4121
+
4122
+ //
4123
+ // Error Interfaces
4124
+ // ----------------------------------------------------------------------
4125
+ interface ErrorInfo {
4126
+ /**
4127
+ * Captures which component contained the exception, and its ancestors.
4128
+ */
4129
+ componentStack?: string | null;
4130
+ }
4131
+
4132
+ namespace JSX {
4133
+ // We don't just alias React.ElementType because React.ElementType
4134
+ // historically does more than we need it to.
4135
+ // E.g. it also contains .propTypes and so TS also verifies the declared
4136
+ // props type does match the declared .propTypes.
4137
+ // But if libraries declared their .propTypes but not props type,
4138
+ // or they mismatch, you won't be able to use the class component
4139
+ // as a JSX.ElementType.
4140
+ // We could fix this everywhere but we're ultimately not interested in
4141
+ // .propTypes assignability so we might as well drop it entirely here to
4142
+ // reduce the work of the type-checker.
4143
+ // TODO: Check impact of making React.ElementType<P = any> = React.JSXElementConstructor<P>
4144
+ type ElementType = string | React.JSXElementConstructor<any>;
4145
+ interface Element extends React.ReactElement<any, any> {}
4146
+ interface ElementClass extends React.Component<any> {
4147
+ render(): React.ReactNode;
4148
+ }
4149
+ interface ElementAttributesProperty {
4150
+ props: {};
4151
+ }
4152
+ interface ElementChildrenAttribute {
4153
+ children: {};
4154
+ }
4155
+
4156
+ // We can't recurse forever because `type` can't be self-referential;
4157
+ // let's assume it's reasonable to do a single React.lazy() around a single React.memo() / vice-versa
4158
+ type LibraryManagedAttributes<C, P> = C extends
4159
+ React.MemoExoticComponent<infer T> | React.LazyExoticComponent<infer T>
4160
+ ? T extends React.MemoExoticComponent<infer U> | React.LazyExoticComponent<infer U>
4161
+ ? ReactManagedAttributes<U, P>
4162
+ : ReactManagedAttributes<T, P>
4163
+ : ReactManagedAttributes<C, P>;
4164
+
4165
+ interface IntrinsicAttributes extends React.Attributes {}
4166
+ interface IntrinsicClassAttributes<T> extends React.ClassAttributes<T> {}
4167
+
4168
+ interface IntrinsicElements {
4169
+ // HTML
4170
+ a: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
4171
+ abbr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4172
+ address: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4173
+ area: React.DetailedHTMLProps<React.AreaHTMLAttributes<HTMLAreaElement>, HTMLAreaElement>;
4174
+ article: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4175
+ aside: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4176
+ audio: React.DetailedHTMLProps<React.AudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>;
4177
+ b: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4178
+ base: React.DetailedHTMLProps<React.BaseHTMLAttributes<HTMLBaseElement>, HTMLBaseElement>;
4179
+ bdi: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4180
+ bdo: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4181
+ big: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4182
+ blockquote: React.DetailedHTMLProps<React.BlockquoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4183
+ body: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBodyElement>, HTMLBodyElement>;
4184
+ br: React.DetailedHTMLProps<React.HTMLAttributes<HTMLBRElement>, HTMLBRElement>;
4185
+ button: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
4186
+ canvas: React.DetailedHTMLProps<React.CanvasHTMLAttributes<HTMLCanvasElement>, HTMLCanvasElement>;
4187
+ caption: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4188
+ center: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4189
+ cite: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4190
+ code: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4191
+ col: React.DetailedHTMLProps<React.ColHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4192
+ colgroup: React.DetailedHTMLProps<React.ColgroupHTMLAttributes<HTMLTableColElement>, HTMLTableColElement>;
4193
+ data: React.DetailedHTMLProps<React.DataHTMLAttributes<HTMLDataElement>, HTMLDataElement>;
4194
+ datalist: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDataListElement>, HTMLDataListElement>;
4195
+ dd: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4196
+ del: React.DetailedHTMLProps<React.DelHTMLAttributes<HTMLModElement>, HTMLModElement>;
4197
+ details: React.DetailedHTMLProps<React.DetailsHTMLAttributes<HTMLDetailsElement>, HTMLDetailsElement>;
4198
+ dfn: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4199
+ dialog: React.DetailedHTMLProps<React.DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>;
4200
+ div: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>;
4201
+ dl: React.DetailedHTMLProps<React.HTMLAttributes<HTMLDListElement>, HTMLDListElement>;
4202
+ dt: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4203
+ em: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4204
+ embed: React.DetailedHTMLProps<React.EmbedHTMLAttributes<HTMLEmbedElement>, HTMLEmbedElement>;
4205
+ fieldset: React.DetailedHTMLProps<React.FieldsetHTMLAttributes<HTMLFieldSetElement>, HTMLFieldSetElement>;
4206
+ figcaption: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4207
+ figure: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4208
+ footer: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4209
+ form: React.DetailedHTMLProps<React.FormHTMLAttributes<HTMLFormElement>, HTMLFormElement>;
4210
+ h1: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4211
+ h2: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4212
+ h3: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4213
+ h4: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4214
+ h5: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4215
+ h6: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>;
4216
+ head: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadElement>, HTMLHeadElement>;
4217
+ header: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4218
+ hgroup: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4219
+ hr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLHRElement>, HTMLHRElement>;
4220
+ html: React.DetailedHTMLProps<React.HtmlHTMLAttributes<HTMLHtmlElement>, HTMLHtmlElement>;
4221
+ i: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4222
+ iframe: React.DetailedHTMLProps<React.IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>;
4223
+ img: React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement>;
4224
+ input: React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
4225
+ ins: React.DetailedHTMLProps<React.InsHTMLAttributes<HTMLModElement>, HTMLModElement>;
4226
+ kbd: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4227
+ keygen: React.DetailedHTMLProps<React.KeygenHTMLAttributes<HTMLElement>, HTMLElement>;
4228
+ label: React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>;
4229
+ legend: React.DetailedHTMLProps<React.HTMLAttributes<HTMLLegendElement>, HTMLLegendElement>;
4230
+ li: React.DetailedHTMLProps<React.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>;
4231
+ link: React.DetailedHTMLProps<React.LinkHTMLAttributes<HTMLLinkElement>, HTMLLinkElement>;
4232
+ main: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4233
+ map: React.DetailedHTMLProps<React.MapHTMLAttributes<HTMLMapElement>, HTMLMapElement>;
4234
+ mark: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4235
+ menu: React.DetailedHTMLProps<React.MenuHTMLAttributes<HTMLElement>, HTMLElement>;
4236
+ menuitem: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4237
+ meta: React.DetailedHTMLProps<React.MetaHTMLAttributes<HTMLMetaElement>, HTMLMetaElement>;
4238
+ meter: React.DetailedHTMLProps<React.MeterHTMLAttributes<HTMLMeterElement>, HTMLMeterElement>;
4239
+ nav: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4240
+ noindex: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4241
+ noscript: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4242
+ object: React.DetailedHTMLProps<React.ObjectHTMLAttributes<HTMLObjectElement>, HTMLObjectElement>;
4243
+ ol: React.DetailedHTMLProps<React.OlHTMLAttributes<HTMLOListElement>, HTMLOListElement>;
4244
+ optgroup: React.DetailedHTMLProps<React.OptgroupHTMLAttributes<HTMLOptGroupElement>, HTMLOptGroupElement>;
4245
+ option: React.DetailedHTMLProps<React.OptionHTMLAttributes<HTMLOptionElement>, HTMLOptionElement>;
4246
+ output: React.DetailedHTMLProps<React.OutputHTMLAttributes<HTMLOutputElement>, HTMLOutputElement>;
4247
+ p: React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>;
4248
+ param: React.DetailedHTMLProps<React.ParamHTMLAttributes<HTMLParamElement>, HTMLParamElement>;
4249
+ picture: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4250
+ pre: React.DetailedHTMLProps<React.HTMLAttributes<HTMLPreElement>, HTMLPreElement>;
4251
+ progress: React.DetailedHTMLProps<React.ProgressHTMLAttributes<HTMLProgressElement>, HTMLProgressElement>;
4252
+ q: React.DetailedHTMLProps<React.QuoteHTMLAttributes<HTMLQuoteElement>, HTMLQuoteElement>;
4253
+ rp: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4254
+ rt: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4255
+ ruby: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4256
+ s: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4257
+ samp: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4258
+ search: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4259
+ slot: React.DetailedHTMLProps<React.SlotHTMLAttributes<HTMLSlotElement>, HTMLSlotElement>;
4260
+ script: React.DetailedHTMLProps<React.ScriptHTMLAttributes<HTMLScriptElement>, HTMLScriptElement>;
4261
+ section: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4262
+ select: React.DetailedHTMLProps<React.SelectHTMLAttributes<HTMLSelectElement>, HTMLSelectElement>;
4263
+ small: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4264
+ source: React.DetailedHTMLProps<React.SourceHTMLAttributes<HTMLSourceElement>, HTMLSourceElement>;
4265
+ span: React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>;
4266
+ strong: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4267
+ style: React.DetailedHTMLProps<React.StyleHTMLAttributes<HTMLStyleElement>, HTMLStyleElement>;
4268
+ sub: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4269
+ summary: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4270
+ sup: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4271
+ table: React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>;
4272
+ template: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTemplateElement>, HTMLTemplateElement>;
4273
+ tbody: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4274
+ td: React.DetailedHTMLProps<React.TdHTMLAttributes<HTMLTableDataCellElement>, HTMLTableDataCellElement>;
4275
+ textarea: React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>;
4276
+ tfoot: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4277
+ th: React.DetailedHTMLProps<React.ThHTMLAttributes<HTMLTableHeaderCellElement>, HTMLTableHeaderCellElement>;
4278
+ thead: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableSectionElement>, HTMLTableSectionElement>;
4279
+ time: React.DetailedHTMLProps<React.TimeHTMLAttributes<HTMLTimeElement>, HTMLTimeElement>;
4280
+ title: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTitleElement>, HTMLTitleElement>;
4281
+ tr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>;
4282
+ track: React.DetailedHTMLProps<React.TrackHTMLAttributes<HTMLTrackElement>, HTMLTrackElement>;
4283
+ u: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4284
+ ul: React.DetailedHTMLProps<React.HTMLAttributes<HTMLUListElement>, HTMLUListElement>;
4285
+ "var": React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4286
+ video: React.DetailedHTMLProps<React.VideoHTMLAttributes<HTMLVideoElement>, HTMLVideoElement>;
4287
+ wbr: React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>;
4288
+ webview: React.DetailedHTMLProps<React.WebViewHTMLAttributes<HTMLWebViewElement>, HTMLWebViewElement>;
4289
+
4290
+ // SVG
4291
+ svg: React.SVGProps<SVGSVGElement>;
4292
+
4293
+ animate: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateElement but is not in TypeScript's lib.dom.d.ts for now.
4294
+ animateMotion: React.SVGProps<SVGElement>;
4295
+ animateTransform: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateTransformElement but is not in TypeScript's lib.dom.d.ts for now.
4296
+ circle: React.SVGProps<SVGCircleElement>;
4297
+ clipPath: React.SVGProps<SVGClipPathElement>;
4298
+ defs: React.SVGProps<SVGDefsElement>;
4299
+ desc: React.SVGProps<SVGDescElement>;
4300
+ ellipse: React.SVGProps<SVGEllipseElement>;
4301
+ feBlend: React.SVGProps<SVGFEBlendElement>;
4302
+ feColorMatrix: React.SVGProps<SVGFEColorMatrixElement>;
4303
+ feComponentTransfer: React.SVGProps<SVGFEComponentTransferElement>;
4304
+ feComposite: React.SVGProps<SVGFECompositeElement>;
4305
+ feConvolveMatrix: React.SVGProps<SVGFEConvolveMatrixElement>;
4306
+ feDiffuseLighting: React.SVGProps<SVGFEDiffuseLightingElement>;
4307
+ feDisplacementMap: React.SVGProps<SVGFEDisplacementMapElement>;
4308
+ feDistantLight: React.SVGProps<SVGFEDistantLightElement>;
4309
+ feDropShadow: React.SVGProps<SVGFEDropShadowElement>;
4310
+ feFlood: React.SVGProps<SVGFEFloodElement>;
4311
+ feFuncA: React.SVGProps<SVGFEFuncAElement>;
4312
+ feFuncB: React.SVGProps<SVGFEFuncBElement>;
4313
+ feFuncG: React.SVGProps<SVGFEFuncGElement>;
4314
+ feFuncR: React.SVGProps<SVGFEFuncRElement>;
4315
+ feGaussianBlur: React.SVGProps<SVGFEGaussianBlurElement>;
4316
+ feImage: React.SVGProps<SVGFEImageElement>;
4317
+ feMerge: React.SVGProps<SVGFEMergeElement>;
4318
+ feMergeNode: React.SVGProps<SVGFEMergeNodeElement>;
4319
+ feMorphology: React.SVGProps<SVGFEMorphologyElement>;
4320
+ feOffset: React.SVGProps<SVGFEOffsetElement>;
4321
+ fePointLight: React.SVGProps<SVGFEPointLightElement>;
4322
+ feSpecularLighting: React.SVGProps<SVGFESpecularLightingElement>;
4323
+ feSpotLight: React.SVGProps<SVGFESpotLightElement>;
4324
+ feTile: React.SVGProps<SVGFETileElement>;
4325
+ feTurbulence: React.SVGProps<SVGFETurbulenceElement>;
4326
+ filter: React.SVGProps<SVGFilterElement>;
4327
+ foreignObject: React.SVGProps<SVGForeignObjectElement>;
4328
+ g: React.SVGProps<SVGGElement>;
4329
+ image: React.SVGProps<SVGImageElement>;
4330
+ line: React.SVGLineElementAttributes<SVGLineElement>;
4331
+ linearGradient: React.SVGProps<SVGLinearGradientElement>;
4332
+ marker: React.SVGProps<SVGMarkerElement>;
4333
+ mask: React.SVGProps<SVGMaskElement>;
4334
+ metadata: React.SVGProps<SVGMetadataElement>;
4335
+ mpath: React.SVGProps<SVGElement>;
4336
+ path: React.SVGProps<SVGPathElement>;
4337
+ pattern: React.SVGProps<SVGPatternElement>;
4338
+ polygon: React.SVGProps<SVGPolygonElement>;
4339
+ polyline: React.SVGProps<SVGPolylineElement>;
4340
+ radialGradient: React.SVGProps<SVGRadialGradientElement>;
4341
+ rect: React.SVGProps<SVGRectElement>;
4342
+ set: React.SVGProps<SVGSetElement>;
4343
+ stop: React.SVGProps<SVGStopElement>;
4344
+ switch: React.SVGProps<SVGSwitchElement>;
4345
+ symbol: React.SVGProps<SVGSymbolElement>;
4346
+ text: React.SVGTextElementAttributes<SVGTextElement>;
4347
+ textPath: React.SVGProps<SVGTextPathElement>;
4348
+ tspan: React.SVGProps<SVGTSpanElement>;
4349
+ use: React.SVGProps<SVGUseElement>;
4350
+ view: React.SVGProps<SVGViewElement>;
4351
+ }
4352
+ }
4353
+ }
4354
+
4355
+ type InexactPartial<T> = { [K in keyof T]?: T[K] | undefined };
4356
+
4357
+ // Any prop that has a default prop becomes optional, but its type is unchanged
4358
+ // Undeclared default props are augmented into the resulting allowable attributes
4359
+ // If declared props have indexed properties, ignore default props entirely as keyof gets widened
4360
+ // Wrap in an outer-level conditional type to allow distribution over props that are unions
4361
+ type Defaultize<P, D> = P extends any ? string extends keyof P ? P
4362
+ :
4363
+ & Pick<P, Exclude<keyof P, keyof D>>
4364
+ & InexactPartial<Pick<P, Extract<keyof P, keyof D>>>
4365
+ & InexactPartial<Pick<D, Exclude<keyof D, keyof P>>>
4366
+ : never;
4367
+
4368
+ type ReactManagedAttributes<C, P> = C extends { defaultProps: infer D } ? Defaultize<P, D>
4369
+ : P;