botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
33 lines • 1.05 kB
TypeScript
/**
* @module botbuilder-dialogs-adaptive
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import { DialogContext, TemplateInterface, ChoiceFactoryOptions } from 'botbuilder-dialogs';
/**
* Sets the ChoiceFactoryOptions.
*/
export declare class ChoiceOptionsSet implements ChoiceFactoryOptions, TemplateInterface<ChoiceFactoryOptions> {
private readonly template;
inlineSeparator?: string;
inlineOr?: string;
inlineOrMore?: string;
includeNumbers?: boolean;
/**
* Initializes a new instance of the [ChoiceOptionsSet](xref:botbuilder-dialogs-adaptive.ChoiceOptionsSet) class.
*
* @param obj Choice values.
*/
constructor(obj: any);
/**
* Bind data to template.
*
* @param dialogContext DialogContext
* @param data Data to bind to.
* @returns Data binded ChoiceFactoryOptions.
*/
bind(dialogContext: DialogContext, data?: any): Promise<ChoiceFactoryOptions>;
}
//# sourceMappingURL=choiceOptionsSet.d.ts.map