UtilityProcess
external class UtilityProcess : <ERROR CLASS> ERROR CLASS: Symbol not found for NodeEventEmitter(source)
Properties
Link copied to clipboard
val errorEvent: ERROR CLASS: Symbol not found for node.events.EventInstance<ERROR CLASS: Symbol not found for js.array.Tuple3<kotlin/String, kotlin/String, kotlin/String>>
Link copied to clipboard
val messageEvent: ERROR CLASS: Symbol not found for node.events.EventInstance<ERROR CLASS: Symbol not found for js.array.Tuple1<kotlin/Any?>>
Link copied to clipboard
val spawnEvent: ERROR CLASS: Symbol not found for node.events.EventInstance<ERROR CLASS: Symbol not found for js.array.Tuple>
Link copied to clipboard
A NodeJS.ReadableStream | null
that represents the child process's stderr. If the child was spawned with options.stdio2 set to anything other than 'pipe', then this will be null
. When the child process exits, then the value is null
after the exit
event is emitted.
Link copied to clipboard
A NodeJS.ReadableStream | null
that represents the child process's stdout. If the child was spawned with options.stdio1 set to anything other than 'pipe', then this will be null
. When the child process exits, then the value is null
after the exit
event is emitted.
Functions
Link copied to clipboard
fun postMessage(message: Any?, transfer: ERROR CLASS: Symbol not found for js.array.ReadonlyArray<electron/core/MessagePortMain> = definedExternally)
Send a message to the child process, optionally transferring ownership of zero or more MessagePortMain
objects.