Spawn a process with the given arguments.
(...args: string[])
| 92 | |
| 93 | /** Spawn a process with the given arguments. */ |
| 94 | exec(...args: string[]): Promise<KaosProcess>; |
| 95 | /** Spawn a process with explicit environment variables. */ |
| 96 | execWithEnv(args: string[], env?: Record<string, string>): Promise<KaosProcess>; |
| 97 | } |
no outgoing calls