@comake/skl-js-engine
Version:
Standard Knowledge Language Javascript Engine
10 lines (9 loc) • 377 B
TypeScript
/// <reference types="node" />
import type { ChildProcess } from 'node:child_process';
/**
* Spawns a Deno process with the given arguments
* @param commandArgs - Command line arguments for Deno
* @returns The spawned child process
* @throws ProcessSpawnError if the process fails to spawn
*/
export declare function spawnDenoProcess(commandArgs: string[]): ChildProcess;