/** * `@czap/edge` — **LiteShip** edge-station: server-side tier detection, * content-addressed boundary cache, and theme **casting** for first paint. * * Parses HTTP Client Hints headers into device capabilities, maps them * to the same tier lattice used on the client, and provides helpers for * HTML injection, KV-backed boundary caching, and per-tenant theme * compilation. * * @module */ export { ClientHints } from './client-hints.js'; export type { ClientHintsHeaders } from './client-hints.js'; export { CrossOriginIsolation } from './cross-origin.js'; export type { CrossOriginEmbedderPolicy } from './cross-origin.js'; export { EdgeTier } from './edge-tier.js'; export type { EdgeTierResult } from './edge-tier.js'; export { createBoundaryCache, KVCache } from './kv-cache.js'; export type { KVNamespace, BoundaryCache, CompiledOutputs } from './kv-cache.js'; export { MOTION_TIERS, DESIGN_TIERS, tierKey, enumerateTierKeys, dedupeOutputsByTier, resolveOutputsByTier, resolveAssetUrlByTier, } from './manifest.js'; export type { TierKey, BoundaryManifest, BoundaryManifestEntry, BoundaryManifestFile } from './manifest.js'; export { compileTheme } from './theme-compiler.js'; export type { ThemeCompileConfig, ThemeCompileResult } from './theme-compiler.js'; export { createEdgeHostAdapter, EdgeHostAdapter } from './host-adapter.js'; export type { EdgeHostAdapterConfig, EdgeHostResolution, EdgeHostCacheConfig, EdgeHostCacheTags, EdgeHostCacheStatus, EdgeHostContext, EdgeHostCompileContext, EdgeHostBoundaryConfig, EdgeHostBoundaryResolution, } from './host-adapter.js'; //# sourceMappingURL=index.d.ts.map