UNPKG

ultra-runner

Version:

Smart and beautiful script runner that hijacks any `npm run`, `yarn` and `npx` calls for ultra fast execution

14 lines (13 loc) 462 B
import { Spinner } from "./spinner"; import { RunnerOptions } from "./options"; export declare class CommandFormatter { cmd: string; level: number; spinner: Spinner | undefined; options: RunnerOptions; packageName?: string | undefined; output: string; constructor(cmd: string, level: number, spinner: Spinner | undefined, options: RunnerOptions, packageName?: string | undefined); private format; write(data: string): void; }