UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

24 lines 775 B
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { ModelResult } from 'botbuilder-dialogs'; import { TextEntityRecognizer } from './textEntityRecognizer'; /** * Recognizes currency input. */ export declare class CurrencyEntityRecognizer extends TextEntityRecognizer { static $kind: string; /** * @protected * Currency recognizing implementation. * @param text Text to recognize. * @param culture Culture to use. * @returns The recognized [ModelResult](xref:botbuilder-dialogs.ModelResult) list. */ protected _recognize(text: string, culture: string): ModelResult[]; } //# sourceMappingURL=currencyEntityRecognizer.d.ts.map