botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
25 lines • 935 B
TypeScript
/**
* @module botbuilder-dialogs
*/
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
/**
* Defines path for avaiable turns.
*/
export declare class TurnPath {
static readonly lastResult = "turn.lastresult";
static readonly activity = "turn.activity";
static readonly recognized = "turn.recognized";
static readonly topIntent = "turn.recognized.intent";
static readonly topScore = "turn.recognized.score";
static readonly text = "turn.recognized.text";
static readonly unrecognizedText = "turn.unrecognizedText";
static readonly recognizedEntities = "turn.recognizedEntities";
static readonly interrupted = "turn.interrupted";
static readonly dialogEvent = "turn.dialogEvent";
static readonly repeatedIds = "turn.repeatedIds";
static readonly activityProcessed = "turn.activityProcessed";
}
//# sourceMappingURL=turnPath.d.ts.map