(parts: readonly ContentPart[])
| 324 | } |
| 325 | |
| 326 | function collapseSingleText(parts: readonly ContentPart[]): string | ContentPart[] { |
| 327 | if (parts.length === 1 && parts[0]?.type === 'text') { |
| 328 | return parts[0].text; |
| 329 | } |
| 330 | return [...parts]; |
| 331 | } |
no outgoing calls
no test coverage detected