mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-30 01:43:32 +00:00
20 lines
421 B
TypeScript
20 lines
421 B
TypeScript
export interface PnpmRunnerParams {
|
|
comSpec?: string;
|
|
cwd?: string;
|
|
env?: NodeJS.ProcessEnv;
|
|
nodeArgs?: string[];
|
|
nodeExecPath?: string;
|
|
npmExecPath?: string;
|
|
platform?: string;
|
|
pnpmArgs?: string[];
|
|
}
|
|
|
|
export interface PnpmRunnerSpec {
|
|
args: string[];
|
|
command: string;
|
|
shell: false;
|
|
windowsVerbatimArguments?: true;
|
|
}
|
|
|
|
export function resolvePnpmRunner(params?: PnpmRunnerParams): PnpmRunnerSpec;
|