UNPKG

313 BTypeScriptView Raw
1import { LogLevel } from './log-level.js';
2export type ExecOptions = {
3 cwd: string;
4 logLevel: LogLevel;
5};
6export type Output = {
7 stderr: string[];
8 stdout: string[];
9};
10export declare function spawn(modulePath: string, args: string[] | undefined, { cwd, logLevel }: ExecOptions): Promise<Output>;