mirror of
https://github.com/deepseek-ai/deepseek-harness.git
synced 2026-08-29 04:26:38 +00:00
12 lines
521 B
TypeScript
12 lines
521 B
TypeScript
/**
|
|
* Web shell library entry. The shell's product is {@link AppWebEntry} —
|
|
* apps/web's Vite entry runs it against #root. The boot page and fiber-state
|
|
* projection remain internal; the static module table and its platform words
|
|
* form the package's build-time contract.
|
|
* @module @deepseek-ai/dsh-client-web
|
|
*/
|
|
|
|
export { AppWebEntry, type BootSeams } from './boot.ts'
|
|
export { getStaticModules } from './seed.ts'
|
|
export { PLATFORM_MODULES, PRELOADED_CLIENT_EXTERNALS, type PlatformModule } from './platform.ts'
|