View source
enum abstract ChildProcessSpawnOptionsStdioSimple(String)
package js.node
from String to String
import js.node.ChildProcess
A shorthand for the stdio
argument in ChildProcessSpawnOptions
Variables
inlineread onlyIgnore:ChildProcessSpawnOptionsStdioSimple = "ignore"
Equivalent to ['ignore', 'ignore', 'ignore']
inlineread onlyInherit:ChildProcessSpawnOptionsStdioSimple = "inherit"
Equivalent to [process.stdin, process.stdout, process.stderr] or [0,1,2]
inlineread onlyPipe:ChildProcessSpawnOptionsStdioSimple = "pipe"
Equivalent to ['pipe', 'pipe', 'pipe']