UNPKG

echo-e2e

Version:

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

15 lines 350 B
export default class ReceivedTranscript { constructor() { this.transcript = []; } add(transcript) { this.transcript.push(transcript); } getTranscript() { return this.transcript; } getTextTranscript() { return this.transcript.join(' '); } } //# sourceMappingURL=receivedTranscript.js.map