ft_transcendence/pong/node_modules/@nestjs/cli/lib/runners/abstract.runner.d.ts
2023-05-02 19:15:50 +02:00

12 lines
397 B
TypeScript

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;
}