/** * @author huajiezhang@microsoft.com */ import { UserError } from "@microsoft/teamsfx-api"; /** * invalid yml schema, failed to parse yml file content into object or schema validation failed */ export declare class InvalidYamlSchemaError extends UserError { constructor(filePath: string, reason?: string); } /** * Yaml field has incorrect type */ export declare class YamlFieldTypeError extends UserError { constructor(field: string, type: string); } /** * Yaml field is missing */ export declare class YamlFieldMissingError extends UserError { constructor(field: string); } /** * Invalid yaml action name */ export declare class InvalidYmlActionNameError extends UserError { constructor(action: string); } /** * Lifecycle not found */ export declare class LifeCycleUndefinedError extends UserError { constructor(lifecycle: string); } //# sourceMappingURL=yml.d.ts.map