diff options
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 6a5b73112..b8126f4cf 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -1982,13 +1982,12 @@ declare namespace Deno { stderrOutput(): Promise<Uint8Array>; close(): void; - /** **UNSTABLE**: The `signo` argument may change to require the Deno.Signal - * enum. + /** **UNSTABLE** * * Send a signal to process. This functionality currently only works on * Linux and Mac OS. */ - kill(signo: number): void; + kill(signo: string): void; // TODO(ry): Use Signal type here once made stable. } export type ProcessStatus = |