2026-07-19 21:17:57 +08:00
|
|
|
/**
|
2026-07-25 01:19:30 +08:00
|
|
|
* Web shell library entry. The shell's product is {@link AppWebEntry} —
|
|
|
|
|
* apps/web's vite entry runs it against #root; everything else (AppRoot
|
2026-07-23 21:55:39 +08:00
|
|
|
* gate, app-shell assembly entry, module-table staticModules, platform constants) is
|
|
|
|
|
* internal to the boot chain. PLATFORM_MODULES is re-exported as the C1
|
|
|
|
|
* single source of truth for the tsdown client externals projection.
|
2026-07-19 21:17:57 +08:00
|
|
|
* @module @deepseek-ai/dsh-client-web
|
|
|
|
|
*/
|
|
|
|
|
|
2026-07-25 01:19:30 +08:00
|
|
|
export { AppWebEntry, type BootSeams } from './boot.tsx'
|
2026-07-19 21:17:57 +08:00
|
|
|
export { AppRoot, type AppRootProps } from './AppRoot.tsx'
|
|
|
|
|
export { buildRenderApp, type AssemblyDeps } from './app.tsx'
|
2026-07-22 23:43:53 +08:00
|
|
|
export { DocumentTitle, type DocumentTitleProps } from './DocumentTitle.tsx'
|
2026-07-23 21:55:39 +08:00
|
|
|
export { APP_SHELL_ID, type AppShellService } from './app-shell.ts'
|
|
|
|
|
export { getStaticModules } from './seed.ts'
|
|
|
|
|
export { PLATFORM_MODULES, type PlatformModule } from './platform.ts'
|
|
|
|
|
export {
|
|
|
|
|
STATE_LABELS, FIBER_STATE, createSignal, createLoaderStatusStore,
|
|
|
|
|
type LoaderStatus, type LoaderEntryState, type KernelSignal, type KernelValueSignal, type LoaderStatusStore,
|
|
|
|
|
} from './loader-status.ts'
|