just-scripts
Version:
Just Stack Scripts
16 lines • 548 B
TypeScript
import { TaskFunction } from 'just-task';
export interface CopyTaskOptions {
/** Paths to copy */
paths?: string[];
/** Destination directory */
dest: string;
/**
* Limit on number of simultaneous copying tasks
* @default 15
*/
limit?: number;
}
export declare function copyTask(options: CopyTaskOptions): TaskFunction;
/** @deprecated Use object param version */
export declare function copyTask(paths: string[] | undefined, dest: string, limit?: number): TaskFunction;
//# sourceMappingURL=copyTask.d.ts.map