botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
21 lines • 649 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Case = void 0;
const actionScope_1 = require("./actionScope");
/**
* Cases of action scope.
*/
class Case extends actionScope_1.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, actions = []) {
super(actions);
this.value = value;
}
}
exports.Case = Case;
//# sourceMappingURL=case.js.map