mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 03:00:21 +00:00
build: type live media runner
This commit is contained in:
16
scripts/pnpm-runner.d.ts
vendored
16
scripts/pnpm-runner.d.ts
vendored
@@ -7,8 +7,24 @@ export type PnpmRunnerParams = {
|
||||
nodeExecPath?: string;
|
||||
platform?: NodeJS.Platform;
|
||||
comSpec?: string;
|
||||
cwd?: string;
|
||||
detached?: boolean;
|
||||
stdio?: SpawnOptions["stdio"];
|
||||
env?: NodeJS.ProcessEnv;
|
||||
};
|
||||
|
||||
export function resolvePnpmRunner(params?: PnpmRunnerParams): {
|
||||
command: string;
|
||||
args: string[];
|
||||
shell: boolean;
|
||||
windowsVerbatimArguments?: boolean;
|
||||
env?: NodeJS.ProcessEnv;
|
||||
};
|
||||
|
||||
export function createPnpmRunnerSpawnSpec(params?: PnpmRunnerParams): {
|
||||
command: string;
|
||||
args: string[];
|
||||
options: SpawnOptions;
|
||||
};
|
||||
|
||||
export function spawnPnpmRunner(params?: PnpmRunnerParams): ChildProcess;
|
||||
|
||||
Reference in New Issue
Block a user