UNPKG

pretty-parallel

Version:
9 lines (8 loc) 328 B
interface Options { readonly filePatterns: ReadonlyArray<string | number>; readonly workingDir: string; readonly maxWorkers: number; readonly config?: string; } export declare function processParallel(type: 'check' | 'write', { filePatterns, workingDir, maxWorkers, config }: Options): Promise<void>; export {};