/** * This file is used to wrap result type of fx-api for function plugin because of its instability. */ import { FxError, Result } from "@microsoft/teamsfx-api"; export declare type FxResult = Result; export declare class FxBotPluginResultFactory { static readonly source: string; static readonly defaultHelpLink: string; static readonly defaultIssueLink: string; static UserError(errorName: string, errorMessage: string, showHelpLink: boolean, innerError?: any): FxResult; static SystemError(errorName: string, errorMessage: string, innerError?: any): FxResult; static Success(result?: any): FxResult; } //# sourceMappingURL=result.d.ts.map