UNPKG

botbuilder-dialogs

Version:

A dialog stack based conversation manager for Microsoft BotBuilder.

23 lines 759 B
/** * @module botbuilder-dialogs */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { PathResolver } from './pathResolvers'; /** * Interface for declaring path resolvers. */ export interface ComponentPathResolvers { getPathResolvers(): PathResolver[]; } /** * Check if a [ComponentRegistration](xref:botbuilder-core.ComponentRegistration) is * [ComponentPathResolvers](xref:botbuilder-dialogs.ComponentPathResolvers) or not. * * @param {any} component The component registration. * @returns {boolean} Type check result. */ export declare function isComponentPathResolvers(component: unknown): component is ComponentPathResolvers; //# sourceMappingURL=componentPathResolvers.d.ts.map