just-scripts
Version:
Just Stack Scripts
18 lines • 582 B
TypeScript
import { TaskFunction } from 'just-task';
export interface CleanTaskOptions {
/**
* Paths to clean
* @default defaultCleanPaths()
*/
paths?: string[];
/**
* Limit on number of simultaneous cleaning tasks
* @default 5
*/
limit?: number;
}
export declare function defaultCleanPaths(): string[];
export declare function cleanTask(options?: CleanTaskOptions): TaskFunction;
/** @deprecated Use object param version */
export declare function cleanTask(paths?: string[], limit?: number): TaskFunction;
//# sourceMappingURL=cleanTask.d.ts.map