@moonsong-labs/moonwall-cli
Version:
Testing framework for the Moon family of projects
13 lines (10 loc) • 404 B
TypeScript
import { ChildProcessWithoutNullStreams } from 'node:child_process';
declare function runTask(cmd: string, { cwd, env }?: {
cwd: string;
env?: NodeJS.ProcessEnv;
}, title?: string): Promise<string>;
declare function spawnTask(cmd: string, { cwd, env }?: {
cwd: string;
env?: NodeJS.ProcessEnv;
}, title?: string): Promise<ChildProcessWithoutNullStreams>;
export { runTask, spawnTask };