interface ChildProcessOptionsimport { type ChildProcessOptions } from "https://dotland.deno.dev/std@0.177.0/node/internal/child_process.ts"; Propertiesoptionalcwd: stringCurrent working directory of the child process. optionalenv: Record<string, string | number | boolean>Environment variables passed to the child process. optionalstdio: Array< | NodeStdio | number | Stream | null | undefined> | NodeStdioThis option defines child process's stdio configuration. optionaldetached: booleanNOTE: This option is not yet implemented. optionaluid: numberNOTE: This option is not yet implemented. optionalgid: numberNOTE: This option is not yet implemented. optionalargv0: stringNOTE: This option is not yet implemented. optionalshell: string | boolean If this option is true, run the command in the shell. If this option is a string, run the command in the specified shell. optionalsignal: AbortSignalAllows aborting the child process using an AbortSignal. optionalserialization: "json" | "advanced"NOTE: This option is not yet implemented. optionalwindowsVerbatimArguments: booleanNo quoting or escaping of arguments is done on Windows. Ignored on Unix. Default: false. optionalwindowsHide: booleanNOTE: This option is not yet implemented.