ivr-tester-cli
Version:
CLI for automated testing of IVR call flows
13 lines (12 loc) • 324 B
TypeScript
import Joi from "joi";
import { Then } from "ivr-tester";
declare const typeValue: "hangUp";
export interface JsonThenHangUp {
type: typeof typeValue;
}
export declare const jsonThenHangUp: {
typeValue: "hangUp";
schema: Joi.ObjectSchema<JsonThenHangUp>;
converter(json: JsonThenHangUp): Then;
};
export {};