(title: string)
| 406 | }; |
| 407 | |
| 408 | const sendTitleSummary = (title: string): void => { |
| 409 | session.client.sendClaudeSessionMessage({ |
| 410 | type: 'summary', |
| 411 | summary: title, |
| 412 | leafUuid: randomUUID() |
| 413 | }); |
| 414 | }; |
| 415 | |
| 416 | const formatOutputPreview = (value: unknown): string => { |
| 417 | if (typeof value === 'string') return value; |
nothing calls this directly
no test coverage detected