templates-mo
Version:
Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting
16 lines (15 loc) • 380 B
TypeScript
export declare class DirectoryNotFoundError extends Error {
name: string;
path: string;
constructor(directory: string);
}
export declare class FileExistError extends Error {
name: string;
path: string;
constructor(filePath: string);
}
export declare class FileWriteError extends Error {
name: string;
path: string;
constructor(dest: string);
}