UNPKG

ivr-tester

Version:

An automated testing framework for IVR call flows

17 lines (16 loc) 398 B
import { Twilio } from "twilio"; export declare enum TwilioConnectionEvents { MediaStreamStart = "start", Media = "media", Mark = "mark", CallEnded = "stop" } export interface Call { from: string; to: string; } export interface TwilioClientAuth { accountSid: string; authToken: string; } export declare type TwilioClientFactory = (auth: TwilioClientAuth) => Twilio;