import { INgRunResult } from "./ng-run-result.interface"; export interface INgRunner { run(command: string): Promise; run(command: string, location?: string): Promise; }