UNPKG

echo-e2e

Version:

**Testing phone calls is hard. Testing AI-powered phone calls is even harder.**

15 lines (12 loc) 318 B
export default class ReceivedTranscript { private transcript: string[] = []; public add(transcript: string) { this.transcript.push(transcript); } public getTranscript() { return this.transcript; } public getTextTranscript() { return this.transcript.join(' '); } }