UNPKG

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 (19 loc) 722 B
import { UtilsService } from '../utils/utils.service'; import { CopyPasteService } from './copy-paste.service'; export declare class CopyPasteCommands { private readonly copyPasteService; private readonly utilsService; private readonly 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>; }