@baseplate-dev/sync
Version:
Library for syncing Baseplate descriptions
29 lines • 816 B
TypeScript
/**
* Error thrown when a conflict is detected in the generator output
*/
export declare class ConflictDetectedError extends Error {
constructor(relativePath: string);
}
/**
* Error thrown when there is an error formatting the generator output
*/
export declare class FormatterError extends Error {
cause: unknown;
fileContents: string;
outputRelativePath: string;
constructor(cause: unknown, fileContents: string, outputRelativePath: string);
}
/**
* Error thrown when there is an error preparing the generator files
*/
export declare class PrepareGeneratorFilesError extends Error {
causes: {
relativePath: string;
cause: unknown;
}[];
constructor(causes: {
relativePath: string;
cause: unknown;
}[]);
}
//# sourceMappingURL=errors.d.ts.map