(summary: string)
| 32 | |
| 33 | /** Abbreviate a tool activity summary for the trail display. */ |
| 34 | export function abbreviateActivity(summary: string): string { |
| 35 | return truncateToWidth(summary, 30) |
| 36 | } |
| 37 | |
| 38 | /** Build the connect URL shown when the bridge is idle. */ |
| 39 | export function buildBridgeConnectUrl( |
nothing calls this directly
no test coverage detected