UNPKG

ivr-tester

Version:

An automated testing framework for IVR call flows

15 lines (14 loc) 534 B
import { TranscriberPlugin, TranscriptionEvents } from "./plugin/TranscriberPlugin"; import { TypedEmitter } from "../../Emitter"; import { Call } from "../Call"; export declare class CallTranscriber extends TypedEmitter<TranscriptionEvents> { private readonly call; private readonly transcriber; private static debug; private readonly processMessageRef; private readonly closeRef; constructor(call: Call, transcriber: TranscriberPlugin); private processMessage; private close; private collects; }