/** * Pure types of the title domain: the ONE home of the `title` projection-key * declaration, free of this package's host-side value imports (cordis * service, schemastery, the llm seam). Two namespace projections serve it — * `./types` for host consumers, `./client/types` (the browser half-entry's * re-export) for client aggregates — with zero content duplication. * * @module @deepseek-ai/dsh-session-title/types */ export {}; declare module '@deepseek-ai/dsh-session-projection/types' { interface SessionProjectionMap { /** * The session's current normalized title — the latest `session/title` * event's text (last-wins), or `null` before the first title lands. A * plain string: the shape the client list rows consume. */ title: string | null; } } //# sourceMappingURL=types.d.ts.map