@oclif/plugin-plugins
Version:
plugins plugin for oclif
11 lines (10 loc) • 313 B
TypeScript
import { LogLevel } from './log-level.js';
export type ExecOptions = {
cwd: string;
logLevel: LogLevel;
};
export type Output = {
stderr: string[];
stdout: string[];
};
export declare function spawn(modulePath: string, args: string[] | undefined, { cwd, logLevel }: ExecOptions): Promise<Output>;