UNPKG

@makingchatbots/genesys-cloud-chatbot-tester-cli

Version:

[![npm](https://img.shields.io/npm/v/@makingchatbots/genesys-cloud-chatbot-tester-cli)](https://www.npmjs.com/package/@makingchatbots/genesys-cloud-chatbot-tester-cli) [![Follow me on LinkedIn for updates](https://img.shields.io/badge/Follow%20for%20updat

16 lines (15 loc) 429 B
export interface PhraseFound { phraseFound: true; phraseIndicates: 'fail' | 'pass'; phraseInSubject: string; subject: string; } export interface PhraseNotFound { phraseFound: false; subject: string; } export type PhraseFoundResult = PhraseFound | PhraseNotFound; export declare function containsTerminatingPhrases(subject: string, phrases: { fail: string[]; pass: string[]; }): PhraseFoundResult;