ts-node-builder
Version:
16 lines (15 loc) • 401 B
TypeScript
export interface Copy {
from: string;
to: string;
}
/**
* @description apply the copy array using the copy function
* @param arr
*/
export declare function copyArray(arr: Copy[]): void;
/**
* @description function that copy files or folders and take the from path and the toPath
* @param fromPath
* @param toPath
*/
export declare function copy(fromPath: string, toPath: string): void;