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