UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

26 lines 786 B
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { Dialog } from 'botbuilder-dialogs'; import { ActionScope } from './actionScope'; /** * Cases of action scope. */ export declare class Case extends ActionScope { /** * Initializes a new instance of the [Case](xref:botbuilder-dialogs-adaptive.Case) class. * * @param value Optional. Case's string value. * @param actions Optional. Numerable list of [Dialog](xref:botbuilder-dialogs.Dialog) actions. */ constructor(value?: string, actions?: Dialog[]); /** * Gets or sets value expression to be compared against condition. */ value: string; } //# sourceMappingURL=case.d.ts.map