crapifyme
Version:
Ultra-fast developer productivity CLI tools - remove comments, logs, and more
14 lines • 735 B
TypeScript
export declare function findFiles(patterns: string[], exclude?: string[]): Promise<string[]>;
export declare function readFile(filePath: string): Promise<string>;
export declare function writeFile(filePath: string, content: string): Promise<void>;
export declare function getFileExtension(filePath: string): string;
export declare function showBanner(): void;
export declare function showComplete(): void;
export declare function resolvePath(inputPath: string): string;
export declare function createFilePatterns(paths: string[], extensions: string[]): string[];
export declare function detectVersionControl(startPath?: string): {
detected: boolean;
type?: string;
path?: string;
};
//# sourceMappingURL=file-utils.d.ts.map