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