mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-28 16:17:23 +00:00
18 lines
378 B
TypeScript
18 lines
378 B
TypeScript
export interface PnpmRunnerParams {
|
|
comSpec?: string;
|
|
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;
|