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