@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
@@ -0,0 +1,3 @@
1
+ export type FrameworkKey = 'angular' | 'html' | 'htmx' | 'react' | 'svelte' | 'vue';
2
+ export declare const FRAMEWORK_KEYS: FrameworkKey[];
3
+ export declare const isFrameworkKey: (value: string) => value is FrameworkKey;
@@ -0,0 +1,40 @@
1
+ import type { FrameworkKey } from './frameworkKey';
2
+ export type ConfigDirKey = 'angularDirectory' | 'htmlDirectory' | 'htmxDirectory' | 'reactDirectory' | 'svelteDirectory' | 'vueDirectory';
3
+ export type ImportSpec = {
4
+ kind: 'named';
5
+ module: string;
6
+ name: string;
7
+ } | {
8
+ kind: 'typeDefault';
9
+ local: string;
10
+ module: string;
11
+ } | {
12
+ kind: 'typeNamespace';
13
+ local: string;
14
+ module: string;
15
+ };
16
+ export type RouteContext = {
17
+ cssAssetKey: string;
18
+ indexKey: string;
19
+ manifestKey: string;
20
+ pageSpecifier: string;
21
+ pascal: string;
22
+ route: string;
23
+ title: string;
24
+ };
25
+ type FileNames = {
26
+ kebab: string;
27
+ pascal: string;
28
+ };
29
+ export type FrameworkDef = {
30
+ componentFile: (names: FileNames) => string;
31
+ configDirKey: ConfigDirKey;
32
+ kind: 'manifest' | 'static';
33
+ label: string;
34
+ pageFile: (names: FileNames) => string;
35
+ pageImportExtension: string | null;
36
+ routeExpression: (ctx: RouteContext) => string;
37
+ routeImports: (ctx: RouteContext) => ImportSpec[];
38
+ };
39
+ export declare const frameworks: Record<FrameworkKey, FrameworkDef>;
40
+ export {};
@@ -0,0 +1,3 @@
1
+ import { type ProjectContext } from './context';
2
+ import { type GenerateOutcome } from './outcome';
3
+ export declare const generateApi: (project: ProjectContext, rawName: string) => GenerateOutcome;
@@ -0,0 +1,4 @@
1
+ import type { ProjectContext } from './context';
2
+ import type { FrameworkKey } from './frameworkKey';
3
+ import { type GenerateOutcome } from './outcome';
4
+ export declare const generateComponent: (project: ProjectContext, framework: FrameworkKey, rawName: string) => GenerateOutcome;
@@ -0,0 +1,4 @@
1
+ import { type ProjectContext } from './context';
2
+ import type { FrameworkKey } from './frameworkKey';
3
+ import { type GenerateOutcome } from './outcome';
4
+ export declare const generatePage: (project: ProjectContext, framework: FrameworkKey, rawName: string) => GenerateOutcome;
@@ -0,0 +1,5 @@
1
+ export declare const isValidName: (raw: string | undefined) => raw is string;
2
+ export declare const toCamelCase: (raw: string) => string;
3
+ export declare const toKebabCase: (raw: string) => string;
4
+ export declare const toPascalCase: (raw: string) => string;
5
+ export declare const toTitleCase: (raw: string) => string;
@@ -0,0 +1,10 @@
1
+ export type NavItem = {
2
+ href: string;
3
+ label: string;
4
+ };
5
+ export declare const readNavItems: (navDataPath: string) => NavItem[];
6
+ export declare const upsertNavItem: (navDataPath: string, item: NavItem) => {
7
+ changed: boolean;
8
+ created: boolean;
9
+ items: NavItem[];
10
+ };
@@ -0,0 +1,17 @@
1
+ export type GenerateOutcome = {
2
+ created: string[];
3
+ manual: {
4
+ reason: string;
5
+ snippet: string;
6
+ } | null;
7
+ notes: string[];
8
+ route: string | null;
9
+ updated: string[];
10
+ };
11
+ export declare const emptyOutcome: () => {
12
+ created: never[];
13
+ manual: null;
14
+ notes: never[];
15
+ route: null;
16
+ updated: never[];
17
+ };
@@ -0,0 +1,11 @@
1
+ import type { FrameworkKey } from './frameworkKey';
2
+ import type { NavItem } from './navData';
3
+ export type PageTemplateContext = {
4
+ cssHref: string;
5
+ kebab: string;
6
+ navImportPath: string;
7
+ navItems: NavItem[];
8
+ pascal: string;
9
+ title: string;
10
+ };
11
+ export declare const pageTemplates: Record<FrameworkKey, (ctx: PageTemplateContext) => string>;
@@ -0,0 +1,40 @@
1
+ import type { FrameworkDef } from './frameworks';
2
+ export type WireInput = {
3
+ cssAssetKey: string;
4
+ def: FrameworkDef;
5
+ indexKey: string;
6
+ manifestKey: string;
7
+ pageFileAbs: string;
8
+ pascal: string;
9
+ route: string;
10
+ serverEntry: string;
11
+ title: string;
12
+ };
13
+ export type WireResult = {
14
+ kind: 'edited';
15
+ routingFile: string;
16
+ } | {
17
+ kind: 'manual';
18
+ reason: string;
19
+ snippet: string;
20
+ };
21
+ export declare const findRoutingFile: (serverEntry: string) => string | null;
22
+ export declare const wirePluginUse: (serverEntry: string, pluginName: string, moduleSpecifier: string) => {
23
+ kind: "manual";
24
+ reason: string;
25
+ snippet: string;
26
+ } | {
27
+ kind: "edited";
28
+ routingFile: string;
29
+ };
30
+ export declare const wireRoute: (input: WireInput) => {
31
+ kind: "manual";
32
+ reason: string;
33
+ snippet: string;
34
+ routingFile?: undefined;
35
+ } | {
36
+ kind: "edited";
37
+ routingFile: string;
38
+ reason?: undefined;
39
+ snippet?: undefined;
40
+ };
@@ -0,0 +1,5 @@
1
+ import type { NavItem } from './navData';
2
+ export declare const NAV_MARKER_END = "<!-- /absolute:nav -->";
3
+ export declare const NAV_MARKER_START = "<!-- absolute:nav -->";
4
+ export declare const renderNavBlock: (items: NavItem[], indent: string) => string;
5
+ export declare const syncStaticNav: (html: string, items: NavItem[]) => string | null;
@@ -0,0 +1 @@
1
+ export declare const runHeapDiff: (beforePath?: string, afterPath?: string) => void;
@@ -0,0 +1,6 @@
1
+ export declare const VENDORED_HTMX_VERSION = "2.0.6";
2
+ export declare const detectHtmxVersion: (content: string) => string | null | undefined;
3
+ export declare const fetchHtmx: (version: string) => Promise<string>;
4
+ export declare const installedHtmxVersion: (htmxDir: string) => string | null | undefined;
5
+ export declare const readVendoredHtmx: () => string | null;
6
+ export declare const writeHtmx: (htmxDir: string, content: string) => string;
@@ -0,0 +1,12 @@
1
+ import type { LiveInstance, RequestRecord } from '../../types/cli';
2
+ export declare const aggregates: (records: RequestRecord[]) => {
3
+ avgMs: number;
4
+ count: number;
5
+ p95Ms: number;
6
+ };
7
+ export declare const fetchRequests: (url: string) => Promise<RequestRecord[] | null>;
8
+ export declare const findServer: () => Promise<LiveInstance | null>;
9
+ export declare const formatRequestRow: (record: RequestRecord, pathWidth: number) => string;
10
+ export declare const pathColumnWidth: (totalWidth: number) => number;
11
+ export declare const requestDetail: (record: RequestRecord) => string[];
12
+ export declare const requestHeader: (pathWidth: number) => string;
@@ -0,0 +1 @@
1
+ export declare const runInspectTui: () => Promise<void>;
@@ -0,0 +1,22 @@
1
+ import type { InstanceRecord } from '../../types/cli';
2
+ export declare const enrichInstances: (records: InstanceRecord[]) => Promise<{
3
+ memoryBytes: number | null;
4
+ status: "ready" | "starting";
5
+ uptimeMs: number;
6
+ url: string | null;
7
+ command: string[];
8
+ configPath: string | null;
9
+ controllerPid: number;
10
+ cwd: string;
11
+ frameworks: string[];
12
+ host: string;
13
+ https: boolean;
14
+ logFile: string | null;
15
+ name: string;
16
+ pid: number;
17
+ port: number | null;
18
+ ppid: number;
19
+ source: import("..").InstanceSource;
20
+ startedAt: string;
21
+ }[]>;
22
+ export declare const instanceUrl: (record: InstanceRecord) => string | null;
@@ -0,0 +1,8 @@
1
+ import type { IntegrationAddResult, IntegrationsPanelState } from '../../../types/integrationsPanel';
2
+ type AddOptions = {
3
+ install?: boolean;
4
+ override?: string;
5
+ };
6
+ export declare const resolveIntegrationsState: (cwd: string, override?: string) => IntegrationsPanelState;
7
+ export declare const addIntegration: (cwd: string, id: string, options?: AddOptions) => IntegrationAddResult;
8
+ export {};
@@ -0,0 +1,20 @@
1
+ export type IntegrationWiring = {
2
+ field: string;
3
+ kind: 'config';
4
+ } | {
5
+ importLine: string;
6
+ kind: 'use';
7
+ useLine: string;
8
+ };
9
+ type IntegrationMeta = {
10
+ blurb: string;
11
+ id: string;
12
+ label: string;
13
+ note?: string;
14
+ packages: string[];
15
+ wiring: IntegrationWiring;
16
+ };
17
+ export declare const INTEGRATIONS: IntegrationMeta[];
18
+ export declare const findIntegration: (id: string) => IntegrationMeta | null;
19
+ export declare const isIntegrationId: (value: string) => boolean;
20
+ export {};
@@ -0,0 +1 @@
1
+ export declare const runPsTui: () => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runAdd: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runAnalyze: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runApi: (args: string[]) => Promise<void>;
@@ -1 +1 @@
1
- export declare const build: (outdir?: string, configPath?: string) => Promise<void>;
1
+ export declare const build: (outdir?: string, configPath?: string, profile?: boolean) => Promise<void>;
@@ -0,0 +1,20 @@
1
+ type ColumnMeta = {
2
+ isJson: boolean;
3
+ name: string;
4
+ };
5
+ type TableMeta = {
6
+ columns: ColumnMeta[];
7
+ name: string;
8
+ primaryKey: string[];
9
+ };
10
+ type ForeignLink = {
11
+ from: string;
12
+ to: string;
13
+ };
14
+ export declare const chunkRows: <Item>(items: Item[], size: number) => Item[][];
15
+ export declare const quoteIdent: (name: string) => string;
16
+ export declare const conflictClause: (meta: TableMeta) => string;
17
+ export declare const dependencyOrder: (names: string[], links: ForeignLink[]) => string[];
18
+ export declare const encodeValue: (col: ColumnMeta, value: unknown) => {} | null;
19
+ export declare const runDb: (args: string[]) => Promise<void>;
20
+ export {};
@@ -1 +1,5 @@
1
- export declare const dev: (serverEntry: string, configPath?: string) => Promise<void>;
1
+ export declare const formatServerBootDiagnostic: (output: string, serverEntry: string) => string | null;
2
+ export type AbsoluteDevOptions = {
3
+ mobile?: boolean;
4
+ };
5
+ export declare const dev: (serverEntry: string, configPath?: string, options?: AbsoluteDevOptions) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runDoctor: (args: string[]) => Promise<void>;
@@ -0,0 +1,7 @@
1
+ export declare const scanEnvUsage: () => Promise<Map<string, string[]>>;
2
+ export declare const collectEnvVars: () => Promise<{
3
+ files: string[];
4
+ key: string;
5
+ set: boolean;
6
+ }[]>;
7
+ export declare const runEnv: (args: string[]) => Promise<void>;
@@ -1,8 +1,42 @@
1
+ export declare const getCacheLocation: (args: string[]) => string;
2
+ export declare const findEslintConfigPath: (cwd?: string) => string | null;
3
+ /**
4
+ * Guards the on-disk ESLint cache. Covers the INSTALLED manifests of every
5
+ * lint-related dependency — plugin and parser implementations are functions,
6
+ * so they vanish from the config object ESLint itself hashes, and an upgrade
7
+ * (or node_modules drifting from the lockfile) would otherwise reuse stale
8
+ * verdicts forever.
9
+ *
10
+ * Deliberately NOT the config file's text. ESLint already stores a hash of
11
+ * each file's *calculated* config in its own cache entry, so editing one
12
+ * `files:` override re-lints exactly the files whose computed config changed
13
+ * and leaves the rest hot. Mixing config text in here dropped every cached
14
+ * verdict in the repo for a one-line edit. The config's import list still
15
+ * feeds `lintDependencyNames`, so adding a plugin does reset the cache.
16
+ *
17
+ * The lint proof must fail closed on any config edit, so it hashes
18
+ * `createEslintConfigDigest` in on top of this.
19
+ */
20
+ export declare const createEslintCacheFingerprint: (cwd?: string) => string;
21
+ /** Digest of the flat-config file itself, for callers that must invalidate on
22
+ * any config edit rather than defer to ESLint's per-file config hashing. */
23
+ export declare const createEslintConfigDigest: (cwd?: string) => string;
24
+ type EslintCacheOptions = {
25
+ cacheLocation: string;
26
+ cwd?: string;
27
+ fingerprint?: string;
28
+ };
29
+ export declare const prepareEslintCache: (options: EslintCacheOptions) => boolean;
30
+ export declare const buildEslintCommand: (args: string[], cacheLocation: string) => string[];
1
31
  /**
2
32
  * Run ESLint with sensible absolutejs defaults.
3
33
  *
4
- * - Caching: enabled by default, cache file location overridable via
5
- * the `ABSOLUTE_ESLINT_CACHE` env var (default: `.absolutejs/eslint-cache`).
34
+ * - Caching: enabled by default with ESLint's content strategy, so Git
35
+ * operations that alter mtimes don't make unchanged files expensive.
36
+ * Installed lint-tool changes invalidate the cache automatically; config
37
+ * edits are left to ESLint's own per-file config hashing.
38
+ * The cache location is overridable via `ABSOLUTE_ESLINT_CACHE`
39
+ * (default: `.absolutejs/eslint-cache`).
6
40
  * - Implicit lint target: `.` is appended only when the user hasn't
7
41
  * supplied a positional path of their own. So `bun lint src/backend/`
8
42
  * lints just that directory — not the whole repo plus `src/backend/`.
@@ -14,3 +48,4 @@
14
48
  * spread through to the underlying `bun eslint` invocation.
15
49
  */
16
50
  export declare const eslint: (args: string[]) => Promise<void>;
51
+ export {};
@@ -0,0 +1,37 @@
1
+ type ChunkedArgs = {
2
+ changedBase: string | null;
3
+ changedOnly: boolean;
4
+ chunkSize: number;
5
+ globs: string[];
6
+ outFile: string;
7
+ passthrough: string[];
8
+ shards: number;
9
+ };
10
+ /**
11
+ * The exact set of files an `absolute eslint --chunked` invocation lints,
12
+ * resolved through the same glob semantics the run itself uses. `--changed` is
13
+ * deliberately ignored: callers that attest to a run (the lint proof) must
14
+ * cover the whole lint set, not one diff's slice of it.
15
+ */
16
+ export declare const resolveLintTargets: (args: string[], cwd?: string) => string[];
17
+ export declare const eslintChunked: (args: string[], cwd?: string) => Promise<void>;
18
+ /**
19
+ * Files that differ from `base` plus anything staged/unstaged/untracked —
20
+ * i.e. everything a full lint of `base` has not already verified.
21
+ *
22
+ * Porcelain lines keep their leading whitespace: ` M path` (unstaged) starts
23
+ * with a significant space, and trimming it shifts the 3-char status prefix
24
+ * onto the path itself, silently dropping that file from the set.
25
+ */
26
+ export declare const gitChangedFiles: (cwd: string, base: string | null) => Set<string>;
27
+ /**
28
+ * Every file git can see: tracked plus untracked-but-not-ignored. Respects
29
+ * .gitignore, so no hand-rolled ignore list can drift out of sync with it.
30
+ */
31
+ export declare const gitVisibleFiles: (cwd: string) => string[];
32
+ export declare const parseChunkedArgs: (args: string[]) => ChunkedArgs;
33
+ /** The by-rule triage summary: rule id is the last token of each finding. */
34
+ export declare const ruleSummary: (report: string) => string;
35
+ /** The branch's upstream ref, or null when none is configured. */
36
+ export declare const upstreamRef: (cwd: string) => string | null;
37
+ export {};
@@ -0,0 +1 @@
1
+ export declare const runGenerate: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runHtmx: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runInspect: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runIslands: (args: string[]) => Promise<void>;
@@ -0,0 +1,42 @@
1
+ type LintProofAttestation = {
2
+ algorithm: 'ed25519';
3
+ keyId: string;
4
+ signature: string;
5
+ };
6
+ type LintProof = {
7
+ attestation?: LintProofAttestation;
8
+ command: string[];
9
+ contractVersion: number;
10
+ createdAt: string;
11
+ lintFingerprint: string;
12
+ sourceTree: string;
13
+ };
14
+ type ProofResult = {
15
+ valid: true;
16
+ proof: LintProof;
17
+ } | {
18
+ reason: string;
19
+ valid: false;
20
+ };
21
+ type CreateLintProofOptions = {
22
+ cwd?: string;
23
+ proofLocation?: string;
24
+ };
25
+ type WriteLintProofOptions = CreateLintProofOptions & {
26
+ signingKeyLocation?: string;
27
+ };
28
+ type VerifyLintProofOptions = CreateLintProofOptions & {
29
+ trustedKeyLocation?: string;
30
+ };
31
+ /**
32
+ * Build a Git tree from the files the lint command covers, without modifying
33
+ * the real index. Ignored files and the proof itself are excluded. Git
34
+ * performs its normal clean filters, so the digest is stable across checkout
35
+ * platforms.
36
+ */
37
+ export declare const createLintSourceTree: (cwd?: string, proofLocation?: string, command?: string[]) => string;
38
+ export declare const createLintProof: (command: string[], options?: CreateLintProofOptions) => LintProof;
39
+ export declare const writeLintProof: (command: string[], options?: WriteLintProofOptions) => LintProof;
40
+ export declare const verifyLintProof: (command: string[], options?: VerifyLintProofOptions) => ProofResult;
41
+ export declare const runLintProof: (args: string[]) => Promise<number>;
42
+ export {};
@@ -0,0 +1 @@
1
+ export declare const runLogs: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runLs: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runMem: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runMobile: (args: string[]) => Promise<void>;
@@ -1,3 +1,5 @@
1
1
  import type { ToolAdapter } from '../../../types/tool';
2
2
  export declare const prettierAdapter: ToolAdapter;
3
+ export declare const buildTargetedPrettierCommand: (args: string[]) => string[];
4
+ export declare const hasPrettierTarget: (args: string[]) => boolean;
3
5
  export declare const prettier: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runPs: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runRemove: (args: string[]) => Promise<void>;
@@ -0,0 +1 @@
1
+ export declare const runRoutes: (args: string[]) => Promise<void>;
@@ -1 +1,6 @@
1
- export declare const start: (serverEntry: string, outdir?: string, configPath?: string) => Promise<void>;
1
+ type StartOptions = {
2
+ prebuilt?: boolean;
3
+ prepareOnly?: boolean;
4
+ };
5
+ export declare const start: (serverEntry: string, outdir?: string, configPath?: string, options?: StartOptions) => Promise<void>;
6
+ export {};
@@ -0,0 +1,9 @@
1
+ /**
2
+ * `absolute tunnel-relay` — run the public reverse-tunnel relay (typically on a
3
+ * small always-on host like a DO App Platform service). Dev machines connect to
4
+ * it with `dev: { tunnel: { relay, token } }`. Reads:
5
+ * - PORT (App Platform injects this; default 8787)
6
+ * - ABSOLUTE_TUNNEL_TOKEN (required shared secret)
7
+ * - ABSOLUTE_TUNNEL_PUBLIC_URL (optional; the relay's public base URL)
8
+ */
9
+ export declare const tunnelRelay: () => void;
@@ -1,7 +1,9 @@
1
- import type { WorkspaceConfig } from '../../../types/build';
1
+ import type { ServiceConfig, WorkspaceConfig } from '../../../types/build';
2
2
  type WorkspaceDevOptions = {
3
3
  configPath?: string;
4
+ noTui?: boolean;
4
5
  };
6
+ export declare const resolveWorkspaceServicePort: (service: ServiceConfig, env: Record<string, string>) => number;
5
7
  export declare const findSharedWorkspaceBuildDirectories: (services: WorkspaceConfig) => {
6
8
  buildDirectory: string;
7
9
  names: string[];
@@ -0,0 +1,2 @@
1
+ import type { BuildConfig } from '../../types/build';
2
+ export declare const resolveServerBundleExternals: (buildConfig: BuildConfig) => string[];
@@ -0,0 +1,14 @@
1
+ import { ReadStream } from 'node:tty';
2
+ import type { TuiColors } from '../../types/cli';
3
+ export declare const ANSI_ESCAPE_PREFIX = "\u001B[";
4
+ export declare const colors: TuiColors;
5
+ export declare const ESCAPE = "\u001B";
6
+ export declare const appendRightEdge: (value: string, width: number, marker: string) => string;
7
+ export declare const formatTimestamp: () => string;
8
+ export declare const isPartialEscapeSequence: (value: string) => boolean;
9
+ export declare const openTtyStream: () => ReadStream | null;
10
+ export declare const padLine: (value: string, width: number) => string;
11
+ export declare const stripAnsi: (value: string) => string;
12
+ export declare const truncateText: (value: string, width: number) => string;
13
+ export declare const visibleLength: (value: string) => number;
14
+ export declare const wrapText: (value: string, width: number) => string[];
@@ -0,0 +1,32 @@
1
+ export type PackageIdentity = {
2
+ consumer: string;
3
+ packageName: string;
4
+ packagePath: string;
5
+ version: string;
6
+ };
7
+ export type TypeGraphReport = {
8
+ identities: PackageIdentity[];
9
+ installRoot: string;
10
+ unresolved: {
11
+ consumer: string;
12
+ packageName: string;
13
+ }[];
14
+ };
15
+ declare const findInstallRoot: (cwd: string) => string;
16
+ declare const inspectTypeGraph: (cwd: string) => TypeGraphReport;
17
+ declare const duplicateTypeGraphPackages: (report: TypeGraphReport) => {
18
+ identities: PackageIdentity[];
19
+ name: "typebox" | "elysia" | "exact-mirror";
20
+ paths: string[];
21
+ }[];
22
+ declare const alignTypeGraphOverrides: (report: TypeGraphReport) => string[];
23
+ declare const removeDuplicateTypeGraphPackages: (report: TypeGraphReport) => string[];
24
+ type TypeGraphCoherence = {
25
+ alignTypeGraphOverrides: typeof alignTypeGraphOverrides;
26
+ duplicateTypeGraphPackages: typeof duplicateTypeGraphPackages;
27
+ findInstallRoot: typeof findInstallRoot;
28
+ inspectTypeGraph: typeof inspectTypeGraph;
29
+ removeDuplicateTypeGraphPackages: typeof removeDuplicateTypeGraphPackages;
30
+ };
31
+ export declare const typeGraphCoherence: TypeGraphCoherence;
32
+ export {};
@@ -2,8 +2,10 @@ import type { DbScripts } from '../../types/cli';
2
2
  export declare const COMPOSE_PATH = "db/docker-compose.db.yml";
3
3
  export declare const DEFAULT_SERVER_ENTRY = "src/backend/server.ts";
4
4
  export declare const isWSLEnvironment: () => boolean;
5
+ export declare const findFreePort: () => Promise<number>;
5
6
  export declare const killStaleProcesses: (port: number, logMessage?: (message: string) => void) => void;
6
- export declare const printHelp: (subject?: string) => void;
7
+ export declare const openUrlInBrowser: (url: string, onError?: (message: string) => void) => boolean;
8
+ export declare const printHelp: (subject?: string, mobile?: boolean) => void;
7
9
  export declare const printHint: () => void;
8
10
  export declare const readDbScripts: () => Promise<{
9
11
  downCommand: string;
@@ -20,8 +20,9 @@ type WorkspaceLogEntry = {
20
20
  source: string;
21
21
  timestamp: string;
22
22
  };
23
- export declare const createWorkspaceTui: ({ actions, services, version }: {
23
+ export declare const createWorkspaceTui: ({ actions, headless: headlessOption, services, version }: {
24
24
  actions: WorkspaceTuiActions;
25
+ headless?: boolean;
25
26
  services: WorkspaceTuiService[];
26
27
  version: string;
27
28
  }) => {
@@ -1,3 +1,3 @@
1
1
  import { type ComponentType } from 'react';
2
- export declare const isReactComponent: (value: unknown) => value is ComponentType<Record<string, unknown>>;
3
2
  export declare const hydrateReactIsland: (component: ComponentType<Record<string, unknown>>, element: HTMLElement, props: unknown) => void;
3
+ export declare const isReactComponent: (value: unknown) => value is ComponentType<Record<string, unknown>>;
@@ -1,2 +1,2 @@
1
- export declare const isSvelteComponent: (value: unknown) => value is import("svelte").Component<Record<string, unknown>>;
2
1
  export declare const hydrateSvelteIsland: (component: import("svelte").Component<Record<string, unknown>>, element: HTMLElement, props: unknown) => void;
2
+ export declare const isSvelteComponent: (value: unknown) => value is import("svelte").Component<Record<string, unknown>>;
@@ -1,2 +1,2 @@
1
- export declare const isVueComponent: (value: unknown) => value is import("vue").Component<Record<string, unknown>>;
2
1
  export declare const hydrateVueIsland: (component: import("vue").Component<Record<string, unknown>>, element: HTMLElement, props: unknown) => void;
2
+ export declare const isVueComponent: (value: unknown) => value is import("vue").Component<Record<string, unknown>>;
@@ -7,8 +7,8 @@ type IslandStoreInstance = {
7
7
  applyExternalSnapshot: (snapshot: IslandStoreSnapshot) => void;
8
8
  store: AnyIslandStore;
9
9
  };
10
- declare const ABSOLUTE_ISLAND_STATE = "__ABS_ISLAND_STATE__";
11
- declare const ABSOLUTE_ISLAND_STORES = "__ABS_ISLAND_STORES__";
10
+ export declare const ABSOLUTE_ISLAND_STATE = "__ABS_ISLAND_STATE__";
11
+ export declare const ABSOLUTE_ISLAND_STORES = "__ABS_ISLAND_STORES__";
12
12
  declare global {
13
13
  var __ABS_ISLAND_STATE__: IslandStateSnapshot | undefined;
14
14
  var __ABS_ISLAND_STORES__: Map<string, Set<IslandStoreInstance>> | undefined;
@@ -19,4 +19,4 @@ export declare const initializeIslandStores: (state: IslandStateSnapshot) => voi
19
19
  export declare const readIslandStore: <TState extends IslandStoreState, TSelected>(store: StoreApi<TState>, selector: (state: TState) => TSelected) => TSelected;
20
20
  export declare const resetIslandStoreForTesting: () => void;
21
21
  export declare const subscribeIslandStore: <TState extends IslandStoreState, TSelected>(store: StoreApi<TState>, selector: (state: TState) => TSelected, listener: (value: TSelected) => void) => () => void;
22
- export { ABSOLUTE_ISLAND_STATE, ABSOLUTE_ISLAND_STORES };
22
+ export {};