diff options
Diffstat (limited to 'cli/dts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index bb93eac8d..e21c2afce 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -1060,8 +1060,8 @@ declare namespace Deno { /** Waits for the child to exit completely, returning all its output and status. */ output(): Promise<SpawnOutput<T>>; - /** Kills the process with given Signal. */ - kill(signo: Signal): void; + /** Kills the process with given Signal. Defaults to SIGTERM. */ + kill(signo?: Signal): void; } /** |