UNPKG

253 BTypeScriptView Raw
1/**
2 * Utility method to copy files
3 */
4export declare function copyFiles(sourceBaseDir: string, destinationBaseDir: string, files: string[], options?: {
5 overwrite: boolean;
6}): {
7 filePath: string;
8 state: 'skipped' | 'copied';
9}[];