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