UNPKG

@naturalcycles/nodejs-lib

Version:
22 lines (21 loc) 449 B
export interface DelOptions { /** * Globby patterns. */ patterns: string[]; /** * @default 0 (infinite) */ concurrency?: number; verbose?: boolean; silent?: boolean; debug?: boolean; dry?: boolean; } export declare type DelSingleOption = string; /** * Delete files that match input patterns. * * @experimental */ export declare function del(_opt: DelOptions | DelSingleOption): Promise<void>;