* {
* "step": "cp",
* "fromPath": "/wordpress/index.php",
* "toPath": "/wordpress/index2.php"
* }
*
*/
export interface CpStep {
step: 'cp';
/** Source path */
fromPath: string;
/** Target path */
toPath: string;
}
/**
* Copies a file from one path to another.
*/
export declare const cp: StepHandler