UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

24 lines 722 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.HashPathResolver = void 0; /** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ const aliasPathResolver_1 = require("./aliasPathResolver"); /** * Maps #xxx => turn.recognized.intents.xxx */ class HashPathResolver extends aliasPathResolver_1.AliasPathResolver { /** * Initializes a new instance of the [HashPathResolver](botbuilder-dialogs.HashPathResolver) class. */ constructor() { super('#', 'turn.recognized.intents.'); } } exports.HashPathResolver = HashPathResolver; //# sourceMappingURL=hashPathResolver.js.map