mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 17:51:22 +00:00
15 lines
387 B
TypeScript
15 lines
387 B
TypeScript
import type { ChildProcess, SpawnOptions } from "node:child_process";
|
|
|
|
export type PnpmRunnerParams = {
|
|
pnpmArgs?: string[];
|
|
nodeArgs?: string[];
|
|
npmExecPath?: string;
|
|
nodeExecPath?: string;
|
|
platform?: NodeJS.Platform;
|
|
comSpec?: string;
|
|
stdio?: SpawnOptions["stdio"];
|
|
env?: NodeJS.ProcessEnv;
|
|
};
|
|
|
|
export function spawnPnpmRunner(params?: PnpmRunnerParams): ChildProcess;
|