ivr-tester
Version:
An automated testing framework for IVR call flows
14 lines (13 loc) • 433 B
TypeScript
import { Scenario } from "../../../configuration/scenario/Scenario";
export interface StreamDetails {
sid: string;
call: {
from: string;
to: string;
};
}
/**
* Returns the filename used for recording a stream. The filename returned does not
* need to contain the path nor extension.
*/
export declare type FilenameFactory = (stream: StreamDetails, scenario: Scenario, customSuffix?: string) => string;