UNPKG

@nestjs/cli

Version:

Nest - modern, fast, powerful node.js web framework (@cli)

12 lines (11 loc) 397 B
export declare class AbstractRunner { protected binary: string; protected args: string[]; constructor(binary: string, args?: string[]); run(command: string, collect?: boolean, cwd?: string): Promise<null | string>; /** * @param command * @returns The entire command that will be ran when calling `run(command)`. */ rawFullCommand(command: string): string; }