signal property
AbortSignal?
get
signal
An {@linkcode AbortSignal} that allows closing the process using the corresponding {@linkcode AbortController} by sending the process a SIGTERM signal.
Not supported in {@linkcode Deno.Command.outputSync}.
Implementation
_i5.AbortSignal? get signal => _i3.getProperty(
this,
'signal',
);
set
signal
(AbortSignal? value)
Implementation
set signal(_i5.AbortSignal? value) {
_i3.setProperty(
this,
'signal',
value ?? _i6.undefined,
);
}