diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-09-06 10:05:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-06 10:05:33 -0400 |
commit | c132c8690bc92fa306b2082992f3b7108e5a4c9e (patch) | |
tree | df152f94815b8ace8fd99696d003eb8adef06d53 /cli/dts/lib.deno.ns.d.ts | |
parent | b7c2902c9752e83dc467ce6a812dab4726f200d9 (diff) |
BREAKING(unstable): Remove Deno.Signals enum, Deno.signals.* (#11909)
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 = |