Interfaces for running shell commands as tasks.
npm install @lde/task-runnerinterface TaskRunner<Task> {
run(command: string): Promise<Task>;
wait(task: Task): Promise<string>;
stop(task: Task): Promise<string | null>;
}See the full documentation.