(segments: TranscriptSegment[])
| 636 | } |
| 637 | |
| 638 | function combineTranscript(segments: TranscriptSegment[]): string { |
| 639 | return segments.map((s) => s.text).join(' '); |
| 640 | } |
| 641 | |
| 642 | function formatTranscriptWithTimestamps(segments: TranscriptSegment[]): string { |
| 643 | return segments |
no outgoing calls
no test coverage detected