UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

21 lines 749 B
/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ /** * Defines path for available dialogs. */ export declare class DialogPath { static readonly eventCounter = "dialog.eventCounter"; static readonly expectedProperties = "dialog.expectedProperties"; static readonly defaultOperation = "dialog.defaultOperation"; static readonly lastEvent = "dialog.lastEvent"; static readonly requiredProperties = "dialog.requiredProperties"; static readonly retries = "dialog.retries"; static readonly lastIntent = "dialog.lastIntent"; static readonly lastTriggerEvent = "dialog.lastTriggerEvent"; } //# sourceMappingURL=dialogPath.d.ts.map