UNPKG

@schummar/runp

Version:

Neat parallel task execution

5 lines (4 loc) 275 B
import type { TextProps } from '@schummar/react-terminal'; import type { Task } from './task'; export type WriteLine = (text: string, task: Task) => void; export declare function trackLinearOutput(tasks: Task[], writeLine: (line: string, options?: TextProps) => void): void;