rucken
Version:
Console tools and scripts for nx and not only that I (EndyKaufman) use to automate the workflow and speed up the development process
20 lines • 762 B
TypeScript
import { UtilsService } from '../utils/utils.service';
import { CopyPasteService } from './copy-paste.service';
export declare class CopyPasteCommands {
private readonly copyPasteService;
private readonly utilsService;
private config;
constructor(copyPasteService: CopyPasteService, utilsService: UtilsService);
copyPaste({ path, find, findPlural, replace, replacePlural, destPath, extensions, globRules, replaceEnvs, }: {
path?: string;
find: string;
findPlural?: string;
replace: string;
replacePlural?: string;
destPath?: string;
extensions?: string;
globRules?: string;
replaceEnvs?: string;
}): Promise<void>;
}
//# sourceMappingURL=copy-paste.commands.d.ts.map