botbuilder-dialogs-adaptive
Version:
Rule system for the Microsoft BotBuilder dialog system.
27 lines (26 loc) • 699 B
TypeScript
/**
* @module botbuilder-dialogs-adaptive
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export declare enum ActionChangeType {
/**
* Add the change actions to the head of the sequence.
*/
insertActions = "insertActions",
/**
* Add the change actions to the tail of the sequence.
*/
appendActions = "appendActions",
/**
* Terminate the action sequence.
*/
endSequence = "endSequence",
/**
* Terminate the action sequence, then add the change actions.
*/
replaceSequence = "replaceSequence"
}
//# sourceMappingURL=actionChangeType.d.ts.map