export type ErrorResponse = 'fail' | 'skip' | 'retry'; /** * Run a function in parallel with cached output */ export declare function parallelShell(inputs: A[], block: (x: A, output: NodeJS.WritableStream) => Promise, swallowError?: (x: A, output: string) => ErrorResponse): Promise;