@absolutejs/absolute 0.19.0-beta.999 → 0.20.0-beta.1

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 (341) hide show
  1. package/LICENSE +21 -13
  2. package/README.md +48 -2
  3. package/dist/angular/browser.js +82 -77
  4. package/dist/angular/browser.js.map +11 -11
  5. package/dist/angular/components/constants.js +43 -0
  6. package/dist/angular/components/core/streamingSlotRegistrar.js +1 -1
  7. package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
  8. package/dist/angular/hmrPreserveCore.ts +132 -134
  9. package/dist/angular/index.js +1719 -844
  10. package/dist/angular/index.js.map +34 -26
  11. package/dist/angular/server.js +1620 -768
  12. package/dist/angular/server.js.map +28 -20
  13. package/dist/build.js +4935 -2593
  14. package/dist/build.js.map +72 -57
  15. package/dist/cli/config/client.js +578 -0
  16. package/dist/cli/config/server.js +39587 -0
  17. package/dist/cli/htmx/htmx.min.js +1 -0
  18. package/dist/cli/index.js +16828 -3511
  19. package/dist/client/index.js +49 -46
  20. package/dist/client/index.js.map +12 -12
  21. package/dist/core/streamingSlotRegistrar.js +1 -19
  22. package/dist/core/streamingSlotRegistrar.js.map +2 -2
  23. package/dist/core/streamingSlotRegistry.js +1 -19
  24. package/dist/core/streamingSlotRegistry.js.map +2 -2
  25. package/dist/dev/client/cssUtils.ts +98 -41
  26. package/dist/dev/client/domState.ts +2 -0
  27. package/dist/dev/client/errorOverlay.ts +14 -13
  28. package/dist/dev/client/handlers/angularHmrShim.ts +20 -20
  29. package/dist/dev/client/handlers/angularRemount.ts +74 -55
  30. package/dist/dev/client/handlers/angularRemountWiring.ts +1 -2
  31. package/dist/dev/client/handlers/html.ts +144 -41
  32. package/dist/dev/client/handlers/htmx.ts +43 -8
  33. package/dist/dev/client/handlers/react.ts +114 -32
  34. package/dist/dev/client/handlers/rebuild.ts +28 -8
  35. package/dist/dev/client/handlers/svelte.ts +92 -51
  36. package/dist/dev/client/handlers/vue.ts +36 -45
  37. package/dist/dev/client/hmrClient.ts +101 -26
  38. package/dist/dev/client/hmrTiming.ts +141 -0
  39. package/dist/dev/client/hmrToast.ts +22 -24
  40. package/dist/dev/client/reactRefreshSetup.ts +4 -0
  41. package/dist/dev/client/vendor/reactRefreshRuntime.d.ts +12 -0
  42. package/dist/dev/client/vendor/reactRefreshRuntime.js +313 -0
  43. package/dist/dev/serverBootstrap.js +45 -0
  44. package/dist/index.js +7153 -3224
  45. package/dist/index.js.map +118 -86
  46. package/dist/islands/browser.js +1 -19
  47. package/dist/islands/browser.js.map +3 -3
  48. package/dist/islands/index.js +709 -120
  49. package/dist/islands/index.js.map +18 -13
  50. package/dist/mobile/browser.js +428 -0
  51. package/dist/mobile/browser.js.map +12 -0
  52. package/dist/mobile/index.js +3058 -0
  53. package/dist/mobile/index.js.map +35 -0
  54. package/dist/react/browser.js +13 -62
  55. package/dist/react/browser.js.map +5 -6
  56. package/dist/react/components/browser/index.js +23 -13
  57. package/dist/react/components/index.js +30 -34
  58. package/dist/react/components/index.js.map +8 -7
  59. package/dist/react/hooks/index.js +1 -19
  60. package/dist/react/hooks/index.js.map +3 -3
  61. package/dist/react/index.js +1643 -679
  62. package/dist/react/index.js.map +29 -20
  63. package/dist/react/jsxDevRuntimeCompat.js +22 -20
  64. package/dist/react/jsxDevRuntimeCompat.js.map +5 -4
  65. package/dist/react/jsxRuntimeCompat.js +90 -0
  66. package/dist/react/jsxRuntimeCompat.js.map +10 -0
  67. package/dist/react/router/browser.js +77 -0
  68. package/dist/react/router/browser.js.map +10 -0
  69. package/dist/react/router/index.js +77 -0
  70. package/dist/react/router/index.js.map +10 -0
  71. package/dist/react/server.js +950 -565
  72. package/dist/react/server.js.map +16 -11
  73. package/dist/src/angular/components/constants.d.ts +21 -0
  74. package/dist/src/angular/hmrPreserveCore.d.ts +7 -20
  75. package/dist/src/angular/islands.d.ts +1 -1
  76. package/dist/src/angular/pageHandler.d.ts +2 -0
  77. package/dist/src/angular/ssrRender.d.ts +4 -1
  78. package/dist/src/build/bunStringRawUnicodePlugin.d.ts +12 -0
  79. package/dist/src/build/chainInlineSourcemaps.d.ts +1 -0
  80. package/dist/src/build/compileAngular.d.ts +5 -7
  81. package/dist/src/build/compileSvelte.d.ts +3 -0
  82. package/dist/src/build/compileVue.d.ts +3 -1
  83. package/dist/src/build/generateReactIndexes.d.ts +1 -0
  84. package/dist/src/build/islandRegistryTransform.d.ts +17 -0
  85. package/dist/src/build/maskLiterals.d.ts +28 -0
  86. package/dist/src/build/parseVueSpaRoutes.d.ts +5 -0
  87. package/dist/src/build/resolveBuildMode.d.ts +7 -0
  88. package/dist/src/build/serverExternals.d.ts +14 -0
  89. package/dist/src/build/spaSideManifests.d.ts +16 -0
  90. package/dist/src/build/tailwindCompiler.d.ts +0 -1
  91. package/dist/src/cli/add/dependencies.d.ts +13 -0
  92. package/dist/src/cli/config/absolute/AbsoluteConfigPanel.d.ts +6 -0
  93. package/dist/src/cli/config/absolute/editAbsoluteConfig.d.ts +5 -0
  94. package/dist/src/cli/config/absolute/resolveAbsoluteConfig.d.ts +19 -0
  95. package/dist/src/cli/config/auth/AuthPanel.d.ts +6 -0
  96. package/dist/src/cli/config/auth/authCatalog.d.ts +10 -0
  97. package/dist/src/cli/config/auth/authScaffolds.d.ts +16 -0
  98. package/dist/src/cli/config/auth/editAuthConfig.d.ts +5 -0
  99. package/dist/src/cli/config/auth/resolveAuthSettings.d.ts +14 -0
  100. package/dist/src/cli/config/auth/resolveAuthState.d.ts +2 -0
  101. package/dist/src/cli/config/auth/scaffoldAuthFeature.d.ts +6 -0
  102. package/dist/src/cli/config/client.d.ts +1 -0
  103. package/dist/src/cli/config/configCert.d.ts +12 -0
  104. package/dist/src/cli/config/eslint/EslintPanel.d.ts +6 -0
  105. package/dist/src/cli/config/eslint/configAst.d.ts +18 -0
  106. package/dist/src/cli/config/eslint/editConfigRule.d.ts +6 -0
  107. package/dist/src/cli/config/eslint/eslintStyles.d.ts +1 -0
  108. package/dist/src/cli/config/eslint/resolveConfig.d.ts +3 -0
  109. package/dist/src/cli/config/eslint/serializeValue.d.ts +9 -0
  110. package/dist/src/cli/config/guards.d.ts +4 -0
  111. package/dist/src/cli/config/integrations/IntegrationsPanel.d.ts +6 -0
  112. package/dist/src/cli/config/packageJson/PackageJsonPanel.d.ts +6 -0
  113. package/dist/src/cli/config/packageJson/editPackageJson.d.ts +9 -0
  114. package/dist/src/cli/config/packageJson/resolvePackageJson.d.ts +8 -0
  115. package/dist/src/cli/config/page/ConfigShell.d.ts +6 -0
  116. package/dist/src/cli/config/page/FieldEditor.d.ts +9 -0
  117. package/dist/src/cli/config/page/PanelHost.d.ts +6 -0
  118. package/dist/src/cli/config/page/configStyles.d.ts +1 -0
  119. package/dist/src/cli/config/panels.d.ts +7 -0
  120. package/dist/src/cli/config/prettier/PrettierPanel.d.ts +6 -0
  121. package/dist/src/cli/config/prettier/editPrettier.d.ts +5 -0
  122. package/dist/src/cli/config/prettier/resolvePrettier.d.ts +11 -0
  123. package/dist/src/cli/config/schema/fromJsonSchema.d.ts +3 -0
  124. package/dist/src/cli/config/schema/fromType.d.ts +1 -0
  125. package/dist/src/cli/config/schema/serialize.d.ts +1 -0
  126. package/dist/src/cli/config/server.d.ts +527 -0
  127. package/dist/src/cli/config/tsconfig/TsconfigPanel.d.ts +6 -0
  128. package/dist/src/cli/config/tsconfig/editTsconfig.d.ts +5 -0
  129. package/dist/src/cli/config/tsconfig/resolveTsconfig.d.ts +8 -0
  130. package/dist/src/cli/config/tsconfig/tsconfigStyles.d.ts +1 -0
  131. package/dist/src/cli/discoverInstances.d.ts +5 -0
  132. package/dist/src/cli/elysiaOpenApiTypeboxPlugin.d.ts +8 -0
  133. package/dist/src/cli/generate/componentTemplates.d.ts +7 -0
  134. package/dist/src/cli/generate/context.d.ts +30 -0
  135. package/dist/src/cli/generate/cssStrategy.d.ts +20 -0
  136. package/dist/src/cli/generate/frameworkKey.d.ts +3 -0
  137. package/dist/src/cli/generate/frameworks.d.ts +40 -0
  138. package/dist/src/cli/generate/generateApi.d.ts +3 -0
  139. package/dist/src/cli/generate/generateComponent.d.ts +4 -0
  140. package/dist/src/cli/generate/generatePage.d.ts +4 -0
  141. package/dist/src/cli/generate/naming.d.ts +5 -0
  142. package/dist/src/cli/generate/navData.d.ts +10 -0
  143. package/dist/src/cli/generate/outcome.d.ts +17 -0
  144. package/dist/src/cli/generate/pageTemplates.d.ts +11 -0
  145. package/dist/src/cli/generate/routeWiring.d.ts +40 -0
  146. package/dist/src/cli/generate/staticNav.d.ts +5 -0
  147. package/dist/src/cli/heapDiff.d.ts +1 -0
  148. package/dist/src/cli/htmx/install.d.ts +6 -0
  149. package/dist/src/cli/inspectData.d.ts +12 -0
  150. package/dist/src/cli/inspectTui.d.ts +1 -0
  151. package/dist/src/cli/instanceStatus.d.ts +22 -0
  152. package/dist/src/cli/integrations/addPlugin.d.ts +8 -0
  153. package/dist/src/cli/integrations/catalog.d.ts +20 -0
  154. package/dist/src/cli/psTui.d.ts +1 -0
  155. package/dist/src/cli/scripts/add.d.ts +1 -0
  156. package/dist/src/cli/scripts/analyze.d.ts +1 -0
  157. package/dist/src/cli/scripts/api.d.ts +1 -0
  158. package/dist/src/cli/scripts/build.d.ts +1 -1
  159. package/dist/src/cli/scripts/db.d.ts +20 -0
  160. package/dist/src/cli/scripts/dev.d.ts +5 -1
  161. package/dist/src/cli/scripts/doctor.d.ts +1 -0
  162. package/dist/src/cli/scripts/env.d.ts +7 -0
  163. package/dist/src/cli/scripts/eslint.d.ts +37 -2
  164. package/dist/src/cli/scripts/eslintChunked.d.ts +37 -0
  165. package/dist/src/cli/scripts/generate.d.ts +1 -0
  166. package/dist/src/cli/scripts/htmx.d.ts +1 -0
  167. package/dist/src/cli/scripts/inspect.d.ts +1 -0
  168. package/dist/src/cli/scripts/islands.d.ts +1 -0
  169. package/dist/src/cli/scripts/lintProof.d.ts +42 -0
  170. package/dist/src/cli/scripts/logs.d.ts +1 -0
  171. package/dist/src/cli/scripts/ls.d.ts +1 -0
  172. package/dist/src/cli/scripts/mem.d.ts +1 -0
  173. package/dist/src/cli/scripts/mobile.d.ts +1 -0
  174. package/dist/src/cli/scripts/prettier.d.ts +2 -0
  175. package/dist/src/cli/scripts/ps.d.ts +1 -0
  176. package/dist/src/cli/scripts/remove.d.ts +1 -0
  177. package/dist/src/cli/scripts/routes.d.ts +1 -0
  178. package/dist/src/cli/scripts/start.d.ts +6 -1
  179. package/dist/src/cli/scripts/tunnelRelay.d.ts +9 -0
  180. package/dist/src/cli/scripts/workspace.d.ts +3 -1
  181. package/dist/src/cli/serverBundleExternals.d.ts +2 -0
  182. package/dist/src/cli/tuiPrimitives.d.ts +14 -0
  183. package/dist/src/cli/typeGraphCoherence.d.ts +32 -0
  184. package/dist/src/cli/utils.d.ts +3 -1
  185. package/dist/src/cli/workspaceTui.d.ts +2 -1
  186. package/dist/src/client/hydrators/react.d.ts +1 -1
  187. package/dist/src/client/hydrators/svelte.d.ts +1 -1
  188. package/dist/src/client/hydrators/vue.d.ts +1 -1
  189. package/dist/src/client/islandStore.d.ts +3 -3
  190. package/dist/src/client/preserveIslandMarkup.d.ts +4 -1
  191. package/dist/src/constants.d.ts +21 -0
  192. package/dist/src/core/angularServerModule.d.ts +1 -0
  193. package/dist/src/core/build.d.ts +11 -3
  194. package/dist/src/core/devRouteRegistrationCallsite.d.ts +1 -5
  195. package/dist/src/core/index.d.ts +1 -0
  196. package/dist/src/core/pageResponseCache.d.ts +23 -0
  197. package/dist/src/core/prepare.d.ts +192 -154
  198. package/dist/src/core/requestContext.d.ts +18 -0
  199. package/dist/src/dev/angular/fastHmrCompiler.d.ts +5 -3
  200. package/dist/src/dev/angular/hmrCompiler.d.ts +1 -1
  201. package/dist/src/dev/angular/resolveOwningComponents.d.ts +1 -1
  202. package/dist/src/dev/clientManager.d.ts +10 -1
  203. package/dist/src/dev/configResolver.d.ts +2 -0
  204. package/dist/src/dev/moduleMapper.d.ts +1 -1
  205. package/dist/src/dev/moduleServer.d.ts +2 -1
  206. package/dist/src/dev/pathUtils.d.ts +1 -1
  207. package/dist/src/dev/reactComponentClassifier.d.ts +1 -1
  208. package/dist/src/dev/rebuildTrigger.d.ts +4 -0
  209. package/dist/src/dev/requestInspector.d.ts +31 -0
  210. package/dist/src/dev/serverBootstrap.d.ts +1 -0
  211. package/dist/src/dev/serverEntryWatcher.d.ts +3 -3
  212. package/dist/src/dev/tunnel/client.d.ts +20 -0
  213. package/dist/src/dev/tunnel/protocol.d.ts +85 -0
  214. package/dist/src/dev/tunnel/relay.d.ts +28 -0
  215. package/dist/src/dev/webSocket.d.ts +1 -1
  216. package/dist/src/mobile/androidConformance.d.ts +42 -0
  217. package/dist/src/mobile/androidEmulatorController.d.ts +99 -0
  218. package/dist/src/mobile/androidNativeWatcher.d.ts +19 -0
  219. package/dist/src/mobile/androidRelease.d.ts +47 -0
  220. package/dist/src/mobile/androidWebView.d.ts +46 -0
  221. package/dist/src/mobile/artifactStore.d.ts +47 -0
  222. package/dist/src/mobile/associationFiles.d.ts +49 -0
  223. package/dist/src/mobile/browser.d.ts +2 -0
  224. package/dist/src/mobile/buildMetadata.d.ts +10 -0
  225. package/dist/src/mobile/buildPipeline.d.ts +8 -0
  226. package/dist/src/mobile/buildRelease.d.ts +24 -0
  227. package/dist/src/mobile/capacitorBundle.d.ts +28 -0
  228. package/dist/src/mobile/capacitorProject.d.ts +9 -0
  229. package/dist/src/mobile/client.d.ts +35 -0
  230. package/dist/src/mobile/compatibilityDispatcher.d.ts +26 -0
  231. package/dist/src/mobile/config.d.ts +16 -0
  232. package/dist/src/mobile/emulatorDoctor.d.ts +25 -0
  233. package/dist/src/mobile/emulatorInstaller.d.ts +41 -0
  234. package/dist/src/mobile/index.d.ts +19 -0
  235. package/dist/src/mobile/materializedBundle.d.ts +36 -0
  236. package/dist/src/mobile/nativeDeepLinks.d.ts +5 -0
  237. package/dist/src/mobile/pageProtocol.d.ts +89 -0
  238. package/dist/src/mobile/producerContext.d.ts +4 -0
  239. package/dist/src/mobile/producerContextState.d.ts +10 -0
  240. package/dist/src/mobile/releaseArtifact.d.ts +75 -0
  241. package/dist/src/mobile/releaseDoctor.d.ts +13 -0
  242. package/dist/src/mobile/routeMatcher.d.ts +3 -0
  243. package/dist/src/mobile/routeMetadataTransform.d.ts +13 -0
  244. package/dist/src/mobile/shellBootstrap.d.ts +1 -0
  245. package/dist/src/mobile/transport.d.ts +31 -0
  246. package/dist/src/plugins/devtoolsJson.d.ts +6 -47
  247. package/dist/src/plugins/hmr.d.ts +22 -96
  248. package/dist/src/plugins/imageOptimizer.d.ts +150 -62
  249. package/dist/src/plugins/networking.d.ts +2 -2
  250. package/dist/src/plugins/openApiPlugin.d.ts +4 -0
  251. package/dist/src/plugins/telemetryPlugin.d.ts +36 -0
  252. package/dist/src/react/browser.d.ts +0 -2
  253. package/dist/src/react/hooks/useMediaQuery.d.ts +1 -1
  254. package/dist/src/react/index.d.ts +0 -2
  255. package/dist/src/react/jsxDevRuntimeCompat.d.ts +1 -1
  256. package/dist/src/react/jsxRuntimeCompat.d.ts +7 -0
  257. package/dist/src/react/pageHandler.d.ts +8 -0
  258. package/dist/src/react/router/UniversalRouter.d.ts +43 -0
  259. package/dist/src/react/router/browser.d.ts +2 -0
  260. package/dist/src/react/router/index.d.ts +2 -0
  261. package/dist/src/svelte/pageHandler.d.ts +5 -0
  262. package/dist/src/svelte/router/hashMode.d.ts +1 -6
  263. package/dist/src/svelte/router/matchPath.d.ts +4 -24
  264. package/dist/src/svelte/router/page.svelte.d.ts +1 -10
  265. package/dist/src/svelte/router/prefetchCache.d.ts +2 -6
  266. package/dist/src/utils/cleanup.d.ts +1 -0
  267. package/dist/src/utils/defineConvention.d.ts +2 -2
  268. package/dist/src/utils/defineEnv.d.ts +4 -4
  269. package/dist/src/utils/formatBytes.d.ts +2 -0
  270. package/dist/src/utils/generatedDir.d.ts +1 -1
  271. package/dist/src/utils/iconVersion.d.ts +5 -0
  272. package/dist/src/utils/imageProcessing.d.ts +1 -1
  273. package/dist/src/utils/index.d.ts +2 -0
  274. package/dist/src/utils/inlinePageCss.d.ts +9 -0
  275. package/dist/src/utils/instanceRegistry.d.ts +13 -0
  276. package/dist/src/utils/isTestSourcePath.d.ts +1 -0
  277. package/dist/src/utils/jsonLd.d.ts +1 -1
  278. package/dist/src/utils/loadConfig.d.ts +11 -3
  279. package/dist/src/utils/logger.d.ts +2 -0
  280. package/dist/src/utils/portScan.d.ts +22 -0
  281. package/dist/src/utils/projectRoot.d.ts +17 -0
  282. package/dist/src/utils/resolveConvention.d.ts +1 -1
  283. package/dist/src/utils/resolveDevPort.d.ts +4 -1
  284. package/dist/src/utils/runtimeMode.d.ts +1 -1
  285. package/dist/src/utils/spaRouteCss.d.ts +10 -0
  286. package/dist/src/utils/spaRouteManifest.d.ts +8 -0
  287. package/dist/src/utils/stripStringsAndComments.d.ts +18 -0
  288. package/dist/src/utils/userAgentFunctions.d.ts +1 -1
  289. package/dist/src/utils/vueCompiler.d.ts +1 -0
  290. package/dist/src/vue/components/Image.d.ts +2 -2
  291. package/dist/src/vue/defineVuePage.d.ts +1 -11
  292. package/dist/src/vue/index.d.ts +3 -0
  293. package/dist/src/vue/pageHandler.d.ts +5 -0
  294. package/dist/src/vue/resolveGeneratedVueModulePath.d.ts +1 -0
  295. package/dist/src/vue/teleports.d.ts +2 -0
  296. package/dist/src/vue/useResource.d.ts +65 -0
  297. package/dist/svelte/browser.js +1 -19
  298. package/dist/svelte/browser.js.map +3 -3
  299. package/dist/svelte/components/Head.svelte +7 -1
  300. package/dist/svelte/index.js +1281 -543
  301. package/dist/svelte/index.js.map +27 -19
  302. package/dist/svelte/router/Link.svelte.d.ts +3 -3
  303. package/dist/svelte/router/Route.svelte.d.ts +5 -5
  304. package/dist/svelte/router/Router.svelte.d.ts +3 -3
  305. package/dist/svelte/router/hashMode.ts +6 -12
  306. package/dist/svelte/router/matchPath.ts +44 -61
  307. package/dist/svelte/router/page.d.ts +1 -10
  308. package/dist/svelte/router/page.js +6 -6
  309. package/dist/svelte/router/prefetchCache.ts +21 -23
  310. package/dist/svelte/router/viewTransitions.ts +22 -12
  311. package/dist/svelte/server.js +697 -565
  312. package/dist/svelte/server.js.map +14 -11
  313. package/dist/types/absoluteConfig.d.ts +22 -0
  314. package/dist/types/angular.d.ts +4 -1
  315. package/dist/types/authPanel.d.ts +62 -0
  316. package/dist/types/build.d.ts +116 -0
  317. package/dist/types/cli.d.ts +57 -0
  318. package/dist/types/config.d.ts +52 -0
  319. package/dist/types/eslintConfig.d.ts +68 -0
  320. package/dist/types/globals.d.ts +31 -10
  321. package/dist/types/image.d.ts +2 -0
  322. package/dist/types/index.d.ts +1 -0
  323. package/dist/types/integrationsPanel.d.ts +29 -0
  324. package/dist/types/messages.d.ts +12 -0
  325. package/dist/types/packageJson.d.ts +74 -0
  326. package/dist/types/packageJsonPanel.d.ts +29 -0
  327. package/dist/types/prettier.d.ts +26 -0
  328. package/dist/types/tsconfig.d.ts +31 -0
  329. package/dist/types/vue.d.ts +13 -15
  330. package/dist/vue/browser.js +14 -36
  331. package/dist/vue/browser.js.map +5 -5
  332. package/dist/vue/components/Image.js +3 -20
  333. package/dist/vue/components/Image.js.map +3 -3
  334. package/dist/vue/components/index.js +3 -20
  335. package/dist/vue/components/index.js.map +3 -3
  336. package/dist/vue/index.js +1573 -620
  337. package/dist/vue/index.js.map +34 -22
  338. package/dist/vue/server.js +800 -520
  339. package/dist/vue/server.js.map +17 -11
  340. package/package.json +145 -68
  341. package/dist/src/react/UniversalRouter.d.ts +0 -12
@@ -1,7 +1,10 @@
1
1
  import type { RuntimeIslandRenderProps } from '../../types/island';
2
2
  export declare const initializeIslandMarkupSnapshot: () => void;
3
3
  export declare const preserveIslandMarkup: (props: RuntimeIslandRenderProps) => {
4
- attributes: Record<string, string> | {
4
+ attributes: Record<string, string>;
5
+ innerHTML: string;
6
+ } | {
7
+ attributes: {
5
8
  'data-component': string;
6
9
  'data-framework': string;
7
10
  'data-hydrate': string;
@@ -4,6 +4,7 @@ export declare const ANSI_ESCAPE_LENGTH = 3;
4
4
  export declare const ASCII_SPACE = 32;
5
5
  export declare const BASE_36_RADIX = 36;
6
6
  export declare const BUN_BUILD_WARNING_SUPPRESSION = "wildcard sideEffects are not supported yet";
7
+ export declare const TAILWIND_BUN_CSS_WARNING_PATTERN: RegExp;
7
8
  export declare const BODY_SLICE_LENGTH = 2000;
8
9
  export declare const BYTES_PER_KILOBYTE = 1024;
9
10
  export declare const CLI_ARGS_OFFSET = 3;
@@ -20,6 +21,10 @@ export declare const FILE_PROTOCOL_PREFIX_LENGTH = 7;
20
21
  export declare const FOCUS_ID_PREFIX_LENGTH = 3;
21
22
  export declare const FOCUS_IDX_PREFIX_LENGTH = 4;
22
23
  export declare const FOCUS_NAME_PREFIX_LENGTH = 5;
24
+ export declare const ESLINT_STUDIO_DEFAULT_HOST = "eslint.absolute.localhost";
25
+ export declare const ESLINT_STUDIO_DEFAULT_PORT = 4099;
26
+ export declare const CONFIG_DEFAULT_HOST = "config.absolute.localhost";
27
+ export declare const CONFIG_DEFAULT_PORT = 4099;
23
28
  export declare const HMR_UPDATE_TIMEOUT_MS = 2000;
24
29
  export declare const HOOK_SIGNATURE_LENGTH = 12;
25
30
  export declare const EXCLUDE_LAST_OFFSET = -1;
@@ -32,6 +37,7 @@ export declare const IMAGE_DEFAULT_DEVICE_SIZES: number[];
32
37
  export declare const IMAGE_DEFAULT_IMAGE_SIZES: number[];
33
38
  export declare const IMAGE_DEFAULT_QUALITY = 75;
34
39
  export declare const IMAGE_GLOB_SUFFIX_LENGTH = 2;
40
+ export declare const INSTANCE_PROBE_TIMEOUT_MS = 250;
35
41
  export declare const MAX_ERROR_LENGTH = 200;
36
42
  export declare const MAX_RECONNECT_ATTEMPTS = 60;
37
43
  export declare const MILLISECONDS_IN_A_SECOND = 1000;
@@ -41,6 +47,18 @@ export declare const MILLISECONDS_IN_A_MINUTE: number;
41
47
  export declare const MILLISECONDS_IN_A_DAY: number;
42
48
  export declare const OVERLAY_FADE_DURATION_MS = 150;
43
49
  export declare const PING_INTERVAL_MS = 30000;
50
+ export declare const LIST_LOG_TAIL_MAX_BYTES = 65536;
51
+ export declare const LIST_TUI_COLUMN_GAP = 2;
52
+ export declare const LIST_TUI_DEFAULT_HEIGHT = 28;
53
+ export declare const LIST_TUI_DEFAULT_WIDTH = 100;
54
+ export declare const LIST_TUI_ESCAPE_SEQUENCE_TIMEOUT_MS = 30;
55
+ export declare const LIST_TUI_FOOTER_LINE_COUNT = 2;
56
+ export declare const LIST_TUI_MARKER_WIDTH = 2;
57
+ export declare const LIST_TUI_MIN_LOG_HEIGHT = 3;
58
+ export declare const LIST_TUI_MIN_URL_WIDTH = 16;
59
+ export declare const LIST_TUI_RENDER_DEBOUNCE_MS = 16;
60
+ export declare const LIST_TUI_STATUS_MESSAGE_TIMEOUT_MS = 4000;
61
+ export declare const LIST_WATCH_REFRESH_MS = 1000;
44
62
  export declare const RAF_BATCH_COUNT = 3;
45
63
  export declare const RANDOM_ID_END_INDEX = 11;
46
64
  export declare const REBUILD_BATCH_DELAY_MS = 10;
@@ -56,6 +74,9 @@ export declare const TIME_PRECISION = 2;
56
74
  export declare const TWO_THIRDS: number;
57
75
  export declare const UNFOUND_INDEX = -1;
58
76
  export declare const WEBSOCKET_NORMAL_CLOSURE = 1000;
77
+ export declare const DEFAULT_WEBSOCKET_IDLE_TIMEOUT_SECONDS = 240;
78
+ export declare const DEFAULT_HTTP_IDLE_TIMEOUT_SECONDS = 240;
79
+ export declare const MAX_HTTP_IDLE_TIMEOUT_SECONDS = 255;
59
80
  export declare const WORKSPACE_COMMAND_ARGS_OFFSET = 3;
60
81
  export declare const WORKSPACE_FAILURE_LOG_PRINT_LIMIT = 30;
61
82
  export declare const WORKSPACE_FAILURE_RECENT_LOG_LIMIT = 60;
@@ -0,0 +1 @@
1
+ export declare const compileAngularServerModule: (sourcePath: string) => Promise<string>;
@@ -1,14 +1,22 @@
1
1
  import { build as bunBuild } from 'bun';
2
2
  import type { ConventionsMap } from '../../types/conventions';
3
- import type { BuildConfig, BunBuildConfigOverride, BunBuildPassKey } from '../../types/build';
3
+ import type { BuildConfig, BuildPassError, BunBuildConfigOverride, BunBuildPassKey } from '../../types/build';
4
+ export declare const scanWorkerReferences: (dirs: string[]) => Promise<string[]>;
4
5
  type BunBuildOptions = Parameters<typeof bunBuild>[0];
5
- export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => BunBuildConfigOverride;
6
- export declare const mergeBunBuildConfig: (base: BunBuildOptions, override: BunBuildConfigOverride) => BunBuildOptions;
6
+ export declare const resolveBunBuildOverride: (config: BuildConfig["bunBuild"], pass: BunBuildPassKey) => Partial<Omit<Bun.BuildConfig, "target" | "entrypoints" | "outdir" | "root" | "format" | "throw" | "compile">>;
7
+ /** Resolve the Bun `sourcemap` mode for CLIENT bundles from the `sourcemaps`
8
+ * config. Dev always uses inline maps (HMR / devtools); production emits
9
+ * external maps only when explicitly enabled — they're then chained back to
10
+ * source + moved to a private dir by `privatizeClientSourcemaps`. */
11
+ export declare const resolveClientSourcemap: (sourcemaps: BuildConfig["sourcemaps"], devMode: boolean) => "none" | "external" | "inline";
12
+ export declare const mergeBunBuildConfig: (base: BunBuildOptions, override: BunBuildConfigOverride) => Bun.BuildConfig;
7
13
  export declare const build: (config: BuildConfig) => Promise<{
8
14
  conventions?: undefined;
15
+ errors?: undefined;
9
16
  manifest?: undefined;
10
17
  } | {
11
18
  conventions: ConventionsMap;
19
+ errors: BuildPassError[] | undefined;
12
20
  manifest: Record<string, string>;
13
21
  }>;
14
22
  export {};
@@ -1,8 +1,4 @@
1
- export declare const isPageHandler: (handler: unknown) => boolean;
2
- /** Returns the unwrapped handler source. In dev the dev wrapper's
3
- * `.toString()` is opaque, so we use the registration-time-captured
4
- * original handler. In prod nothing wraps, so `route.handler` IS the
5
- * original. Returns `undefined` for non-functions. */
6
1
  export declare const getOriginalPageHandlerSource: (handler: unknown) => string | undefined;
2
+ export declare const isPageHandler: (handler: unknown) => boolean;
7
3
  export declare const getCurrentRouteRegistrationCallsite: () => string | undefined;
8
4
  export declare const patchElysiaRouteRegistrationCallsites: () => void;
@@ -2,6 +2,7 @@ export * from './lookup';
2
2
  export * from './islands';
3
3
  export * from './pageHandlers';
4
4
  export * from './prepare';
5
+ export * from './requestContext';
5
6
  export * from './renderIslandMarkup';
6
7
  export * from './responseEnhancers';
7
8
  export * from './wrapPageHandlerWithStreamingSlots';
@@ -0,0 +1,23 @@
1
+ export declare const STREAMING_PAGE_HEADER = "x-absolute-stream";
2
+ /** Headers for a STREAMING html page response — `text/html` plus the streaming
3
+ * marker so {@link withPageCacheHeaders} marks it `no-cache` (no ETag). */
4
+ export declare const streamingPageHeaders: (extra?: HeadersInit) => Headers;
5
+ /** Options for {@link withPageCacheHeaders}. */
6
+ export type PageCacheOptions = {
7
+ /** Opt a *streaming* page into the buffered-ETag path: buffer its whole
8
+ * body before sending so it can carry a content-hash `ETag` and serve a
9
+ * `304` on repeat visits. This trades streaming's fast first byte for the
10
+ * revalidation saving, so only set it on pages whose output is static
11
+ * enough that the 304 is worth losing the stream (e.g. a marketing page).
12
+ * No effect on already-buffered pages — those are ETagged regardless. */
13
+ bufferStreamForEtag?: boolean;
14
+ };
15
+ /** Apply the SPA cache policy to a page Response. HTML gets `no-cache` (+ a
16
+ * content-hash `ETag` / `304` for buffered responses); non-HTML responses
17
+ * (redirects, JSON, etc.) pass through untouched. Safe to call on every page
18
+ * handler's final response.
19
+ *
20
+ * Streaming pages skip the ETag (their headers flush before the body renders)
21
+ * unless the caller passes `bufferStreamForEtag`, which buffers the stream so
22
+ * it can be hashed — see {@link PageCacheOptions}. */
23
+ export declare const withPageCacheHeaders: (response: Response, request?: Request, options?: PageCacheOptions) => Promise<Response>;
@@ -1,49 +1,43 @@
1
- import { Elysia } from 'elysia';
1
+ import { Elysia, NotFound } from 'elysia';
2
2
  export declare const prepare: (configOrPath?: string) => Promise<{
3
- absolutejs: Elysia<"", {
3
+ absolutejs: Elysia<"", "local", {
4
4
  decorator: {};
5
5
  store: {};
6
6
  derive: {};
7
- resolve: {};
8
7
  }, {
9
8
  typebox: {};
10
- error: {};
11
- } & {
12
- typebox: {};
13
- error: {};
14
- }, {
15
- schema: {};
16
- standaloneSchema: {};
17
- macro: {};
18
- macroFn: {};
19
- parser: {};
20
- response: {};
21
- } & {
9
+ error: [import("elysia/types").ErrorDefinitionEntry<typeof NotFound, Promise<Response | undefined>>];
10
+ }, import("elysia/types").DefaultMetadata & {
22
11
  schema: {};
23
- standaloneSchema: {};
12
+ schemas: {};
24
13
  macro: {};
25
14
  macroFn: {};
26
15
  parser: {};
27
16
  response: {};
28
17
  } & {
29
18
  schema: {};
30
- standaloneSchema: {};
19
+ schemas: {};
31
20
  macro: {};
32
21
  macroFn: {};
33
22
  parser: {};
34
23
  response: {
35
24
  200: Response;
36
25
  };
37
- } & {
38
- schema: {};
39
- standaloneSchema: {};
40
- macro: {};
41
- macroFn: {};
42
- parser: {};
43
- response: {
44
- 200: Response;
26
+ }, ({
27
+ __absolute: {
28
+ requests: {
29
+ get: {
30
+ body: unknown;
31
+ params: {};
32
+ query: unknown;
33
+ headers: unknown;
34
+ response: {
35
+ 200: import("..").RequestRecord[];
36
+ };
37
+ error: never;
38
+ };
39
+ };
45
40
  };
46
- }, ((({
47
41
  ".well-known": {
48
42
  appspecific: {
49
43
  "com.chrome.devtools.json": {
@@ -60,11 +54,123 @@ export declare const prepare: (configOrPath?: string) => Promise<{
60
54
  };
61
55
  };
62
56
  };
57
+ error: never;
58
+ };
59
+ };
60
+ };
61
+ };
62
+ "@src": {
63
+ "*": {
64
+ get: {
65
+ body: unknown;
66
+ params: {
67
+ "*": string;
68
+ } & {};
69
+ query: unknown;
70
+ headers: unknown;
71
+ response: {};
72
+ error: never;
73
+ };
74
+ };
75
+ };
76
+ "@stub": {
77
+ "*": {
78
+ get: {
79
+ body: unknown;
80
+ params: {
81
+ "*": string;
82
+ } & {};
83
+ query: unknown;
84
+ headers: unknown;
85
+ response: {};
86
+ error: never;
87
+ };
88
+ };
89
+ };
90
+ "@hmr": {
91
+ "*": {
92
+ get: {
93
+ body: unknown;
94
+ params: {
95
+ "*": string;
96
+ } & {};
97
+ query: unknown;
98
+ headers: unknown;
99
+ response: {};
100
+ error: never;
101
+ };
102
+ };
103
+ };
104
+ "@ng": {
105
+ "*": {
106
+ get: {
107
+ body: unknown;
108
+ params: {
109
+ "*": string;
110
+ } & {};
111
+ query: unknown;
112
+ headers: unknown;
113
+ response: {
114
+ 200: Response;
115
+ };
116
+ error: never;
117
+ };
118
+ };
119
+ };
120
+ hmr: {
121
+ subscribe: {
122
+ body: unknown;
123
+ headers: unknown;
124
+ query: unknown;
125
+ params: {};
126
+ response: {};
127
+ };
128
+ };
129
+ "hmr-status": {
130
+ get: {
131
+ body: unknown;
132
+ params: {};
133
+ query: unknown;
134
+ headers: unknown;
135
+ response: {
136
+ 200: {
137
+ connectedClients: number;
138
+ entryWatcherReady: boolean;
139
+ isRebuilding: boolean;
140
+ manifestKeys: string[];
141
+ rebuildCount: number;
142
+ rebuildQueue: string[];
143
+ timestamp: number;
144
+ };
145
+ };
146
+ error: never;
147
+ };
148
+ };
149
+ } | {
150
+ [x: string]: {
151
+ get: {
152
+ body: unknown;
153
+ params: {};
154
+ query: unknown;
155
+ headers: unknown;
156
+ response: {};
157
+ error: never;
158
+ };
159
+ };
160
+ __absolute: {
161
+ requests: {
162
+ get: {
163
+ body: unknown;
164
+ params: {};
165
+ query: unknown;
166
+ headers: unknown;
167
+ response: {
168
+ 200: import("..").RequestRecord[];
63
169
  };
170
+ error: never;
64
171
  };
65
172
  };
66
173
  };
67
- } | ({
68
174
  ".well-known": {
69
175
  appspecific: {
70
176
  "com.chrome.devtools.json": {
@@ -81,21 +187,11 @@ export declare const prepare: (configOrPath?: string) => Promise<{
81
187
  };
82
188
  };
83
189
  };
190
+ error: never;
84
191
  };
85
192
  };
86
193
  };
87
194
  };
88
- } & {
89
- [x: string]: {
90
- get: {
91
- body: unknown;
92
- params: {};
93
- query: unknown;
94
- headers: unknown;
95
- response: {};
96
- };
97
- };
98
- })) & {
99
195
  "@src": {
100
196
  "*": {
101
197
  get: {
@@ -105,22 +201,11 @@ export declare const prepare: (configOrPath?: string) => Promise<{
105
201
  } & {};
106
202
  query: unknown;
107
203
  headers: unknown;
108
- response: {
109
- 200: Response;
110
- 422: {
111
- type: "validation";
112
- on: string;
113
- summary?: string;
114
- message?: string;
115
- found?: unknown;
116
- property?: string;
117
- expected?: string;
118
- };
119
- };
204
+ response: {};
205
+ error: never;
120
206
  };
121
207
  };
122
208
  };
123
- } & {
124
209
  "@stub": {
125
210
  "*": {
126
211
  get: {
@@ -130,22 +215,11 @@ export declare const prepare: (configOrPath?: string) => Promise<{
130
215
  } & {};
131
216
  query: unknown;
132
217
  headers: unknown;
133
- response: {
134
- 200: Response;
135
- 422: {
136
- type: "validation";
137
- on: string;
138
- summary?: string;
139
- message?: string;
140
- found?: unknown;
141
- property?: string;
142
- expected?: string;
143
- };
144
- };
218
+ response: {};
219
+ error: never;
145
220
  };
146
221
  };
147
222
  };
148
- } & {
149
223
  "@hmr": {
150
224
  "*": {
151
225
  get: {
@@ -155,22 +229,11 @@ export declare const prepare: (configOrPath?: string) => Promise<{
155
229
  } & {};
156
230
  query: unknown;
157
231
  headers: unknown;
158
- response: {
159
- 200: Response;
160
- 422: {
161
- type: "validation";
162
- on: string;
163
- summary?: string;
164
- message?: string;
165
- found?: unknown;
166
- property?: string;
167
- expected?: string;
168
- };
169
- };
232
+ response: {};
233
+ error: never;
170
234
  };
171
235
  };
172
236
  };
173
- } & {
174
237
  "@ng": {
175
238
  "*": {
176
239
  get: {
@@ -182,32 +245,20 @@ export declare const prepare: (configOrPath?: string) => Promise<{
182
245
  headers: unknown;
183
246
  response: {
184
247
  200: Response;
185
- 422: {
186
- type: "validation";
187
- on: string;
188
- summary?: string;
189
- message?: string;
190
- found?: unknown;
191
- property?: string;
192
- expected?: string;
193
- };
194
248
  };
249
+ error: never;
195
250
  };
196
251
  };
197
252
  };
198
- } & {
199
253
  hmr: {
200
254
  subscribe: {
201
255
  body: unknown;
202
- params: {};
203
- query: unknown;
204
256
  headers: unknown;
205
- response: {
206
- 200: Response;
207
- };
257
+ query: unknown;
258
+ params: {};
259
+ response: {};
208
260
  };
209
261
  };
210
- } & {
211
262
  "hmr-status": {
212
263
  get: {
213
264
  body: unknown;
@@ -215,8 +266,9 @@ export declare const prepare: (configOrPath?: string) => Promise<{
215
266
  query: unknown;
216
267
  headers: unknown;
217
268
  response: {
218
- 200: Response | {
269
+ 200: {
219
270
  connectedClients: number;
271
+ entryWatcherReady: boolean;
220
272
  isRebuilding: boolean;
221
273
  manifestKeys: string[];
222
274
  rebuildCount: number;
@@ -224,70 +276,57 @@ export declare const prepare: (configOrPath?: string) => Promise<{
224
276
  timestamp: number;
225
277
  };
226
278
  };
279
+ error: never;
227
280
  };
228
281
  };
229
- }) & {}) & {}, {
282
+ }) & {}, import("elysia/types").DefaultEphemeral, {
230
283
  derive: {};
231
- resolve: {};
232
284
  schema: {};
233
- standaloneSchema: {};
234
- response: {};
235
- }, {
236
- derive: {};
237
- resolve: {};
238
- schema: {};
239
- standaloneSchema: {};
240
- response: {};
241
- } & {
242
- derive: {};
243
- resolve: {};
244
- schema: {};
245
- standaloneSchema: {};
246
- response: {};
247
- } & {
248
- derive: {};
249
- resolve: {};
250
- schema: {};
251
- standaloneSchema: {};
285
+ schemas: {};
252
286
  response: {};
287
+ error: [];
253
288
  }>;
254
289
  manifest: Record<string, string>;
255
290
  } | {
256
- absolutejs: Elysia<"", {
291
+ absolutejs: Elysia<"", "local", {
257
292
  decorator: {};
258
293
  store: {};
259
294
  derive: {};
260
- resolve: {};
261
295
  }, {
262
296
  typebox: {};
263
- error: {};
264
- } & {
265
- typebox: {};
266
- error: {};
267
- }, {
297
+ error: [import("elysia/types").ErrorDefinitionEntry<typeof NotFound, Promise<Response | undefined>>];
298
+ }, import("elysia/types").DefaultMetadata & {
268
299
  schema: {};
269
- standaloneSchema: {};
300
+ schemas: {};
270
301
  macro: {};
271
302
  macroFn: {};
272
303
  parser: {};
273
304
  response: {};
274
305
  } & {
275
306
  schema: {};
276
- standaloneSchema: {};
307
+ schemas: {};
277
308
  macro: {};
278
309
  macroFn: {};
279
310
  parser: {};
280
311
  response: {};
281
- } & {
282
- schema: {};
283
- standaloneSchema: {};
284
- macro: {};
285
- macroFn: {};
286
- parser: {};
287
- response: {
288
- 200: Response;
312
+ }, ({
313
+ ".absolutejs": {
314
+ "*": {
315
+ get: {
316
+ body: unknown;
317
+ params: {
318
+ "*": string;
319
+ } & {};
320
+ query: unknown;
321
+ headers: unknown;
322
+ response: {
323
+ 200: Bun.BunFile | "Not Found";
324
+ };
325
+ error: never;
326
+ };
327
+ };
289
328
  };
290
- }, {} | {
329
+ } | {
291
330
  [x: string]: {
292
331
  get: {
293
332
  body: unknown;
@@ -295,32 +334,31 @@ export declare const prepare: (configOrPath?: string) => Promise<{
295
334
  query: unknown;
296
335
  headers: unknown;
297
336
  response: {};
337
+ error: never;
298
338
  };
299
339
  };
300
- }, {
301
- derive: {};
302
- resolve: {};
303
- schema: {};
304
- standaloneSchema: {};
305
- response: {};
306
- }, {
307
- derive: {};
308
- resolve: {};
309
- schema: {};
310
- standaloneSchema: {};
311
- response: {};
312
- } & {
313
- derive: {};
314
- resolve: {};
315
- schema: {};
316
- standaloneSchema: {};
317
- response: {};
318
- } & {
340
+ ".absolutejs": {
341
+ "*": {
342
+ get: {
343
+ body: unknown;
344
+ params: {
345
+ "*": string;
346
+ } & {};
347
+ query: unknown;
348
+ headers: unknown;
349
+ response: {
350
+ 200: Bun.BunFile | "Not Found";
351
+ };
352
+ error: never;
353
+ };
354
+ };
355
+ };
356
+ }) & {}, import("elysia/types").DefaultEphemeral, {
319
357
  derive: {};
320
- resolve: {};
321
358
  schema: {};
322
- standaloneSchema: {};
359
+ schemas: {};
323
360
  response: {};
361
+ error: [];
324
362
  }>;
325
363
  manifest: Record<string, string>;
326
364
  }>;
@@ -0,0 +1,18 @@
1
+ import { Elysia } from 'elysia';
2
+ export declare const absoluteRequestContext: Elysia<"", "local", {
3
+ decorator: {};
4
+ store: {};
5
+ derive: {};
6
+ }, {
7
+ typebox: {};
8
+ error: [];
9
+ }, {
10
+ schema: {};
11
+ schemas: {};
12
+ macro: {};
13
+ macroFn: {};
14
+ parser: {};
15
+ response: {};
16
+ }, {}, import("elysia/types").DefaultEphemeral, import("elysia/types").DefaultEphemeral>;
17
+ export declare const getCurrentAbsoluteRequest: () => Request | undefined;
18
+ export declare const runWithAbsoluteRequest: <Result>(request: Request, callback: () => Result) => Result;
@@ -46,13 +46,15 @@ export type FastHmrFailure = {
46
46
  };
47
47
  export type FastHmrResult = FastHmrSuccess | FastHmrFailure;
48
48
  export declare const takePendingModule: (id: string) => string | undefined;
49
- export declare const recordFingerprint: (id: string, fp: ComponentFingerprint) => void;
50
- export declare const primeComponentFingerprint: (componentFilePath: string) => Promise<void>;
51
49
  export declare const invalidateFingerprintCache: () => void;
50
+ export declare const primeComponentFingerprint: (componentFilePath: string) => Promise<void>;
51
+ export declare const recordFingerprint: (id: string, fingerprint: ComponentFingerprint) => void;
52
52
  export type TryFastHmrParams = {
53
53
  componentFilePath: string;
54
54
  className: string;
55
55
  projectRoot?: string;
56
56
  kind?: AngularEntityKind;
57
57
  };
58
- export declare const tryFastHmr: (params: TryFastHmrParams) => Promise<FastHmrResult>;
58
+ type TryFastHmr = (params: TryFastHmrParams) => Promise<FastHmrResult>;
59
+ export declare const tryFastHmr: TryFastHmr;
60
+ export {};
@@ -1,2 +1,2 @@
1
- export declare const getApplyMetadataModule: (encodedId: string) => Promise<string | null>;
2
1
  export declare const encodeHmrComponentId: (absoluteFilePath: string, className: string) => string;
2
+ export declare const getApplyMetadataModule: (encodedId: string) => Promise<string | null>;
@@ -9,8 +9,8 @@ export declare const resolveOwningComponents: (params: {
9
9
  changedFilePath: string;
10
10
  userAngularRoot: string;
11
11
  }) => AffectedEntity[];
12
+ export declare const invalidateResourceIndex: () => void;
12
13
  export declare const resolveDescendantsOfParent: (params: {
13
14
  changedFilePath: string;
14
15
  userAngularRoot: string;
15
16
  }) => AffectedEntity[];
16
- export declare const invalidateResourceIndex: () => void;