botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
30 lines • 959 B
JavaScript
;
/**
* @module botbuilder-dialogs-adaptive
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActionChangeType = void 0;
var ActionChangeType;
(function (ActionChangeType) {
/**
* Add the change actions to the head of the sequence.
*/
ActionChangeType["insertActions"] = "insertActions";
/**
* Add the change actions to the tail of the sequence.
*/
ActionChangeType["appendActions"] = "appendActions";
/**
* Terminate the action sequence.
*/
ActionChangeType["endSequence"] = "endSequence";
/**
* Terminate the action sequence, then add the change actions.
*/
ActionChangeType["replaceSequence"] = "replaceSequence";
})(ActionChangeType = exports.ActionChangeType || (exports.ActionChangeType = {}));
//# sourceMappingURL=actionChangeType.js.map