ivr-tester-cli
Version:
CLI for automated testing of IVR call flows
14 lines (13 loc) • 337 B
TypeScript
import Joi from "joi";
import { Then } from "ivr-tester";
declare const typeValue: "press";
export interface JsonThenPress {
type: typeof typeValue;
value: string;
}
export declare const jsonThenPress: {
typeValue: "press";
schema: Joi.ObjectSchema<JsonThenPress>;
converter(json: JsonThenPress): Then;
};
export {};