UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

27 lines 730 B
/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { AliasPathResolver } from './aliasPathResolver'; /** * Maps @@ => turn.recognized.entitites.xxx[0] */ export declare class AtPathResolver extends AliasPathResolver { private readonly _prefix; private readonly _delims; /** * Initializes a new instance of the [AtPathResolver](xref:botbuilder-dialogs.AtPathResolver) class. */ constructor(); /** * Transforms the path. * * @param path Path to inspect. * @returns The transformed path. */ transformPath(path: string): string; } //# sourceMappingURL=atPathResolver.d.ts.map