ivr-tester-cli
Version:
CLI for automated testing of IVR call flows
15 lines (14 loc) • 457 B
TypeScript
import Joi from "joi";
import { When } from "ivr-tester";
declare const typeValue: "containsSimilarTo";
export interface JsonWhenPromptContainsSimilarTo {
type: typeof typeValue;
value: string;
threshold?: number;
}
export declare const jsonWhenPromptContainsSimilarTo: {
typeValue: "containsSimilarTo";
schema: Joi.ObjectSchema<JsonWhenPromptContainsSimilarTo>;
converter(json: JsonWhenPromptContainsSimilarTo): When;
};
export {};