diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2021-10-10 09:48:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-10 15:48:26 +0200 |
commit | 6ac0337165d5e341eee9bff9ff0065894289df69 (patch) | |
tree | 9cba4b1ac1f271dfc8a80aa8688a398e7cc91eb6 /cli/dts/lib.deno.unstable.d.ts | |
parent | ffea0f198c27368405541e5a871deccc132c7ad9 (diff) |
feat: Stabilize Deno.kill and Deno.Process.kill (#12375)
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index a024713a8..b2fe0d9c7 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -562,41 +562,6 @@ declare namespace Deno { */ export function applySourceMap(location: Location): Location; - export type Signal = - | "SIGABRT" - | "SIGALRM" - | "SIGBUS" - | "SIGCHLD" - | "SIGCONT" - | "SIGEMT" - | "SIGFPE" - | "SIGHUP" - | "SIGILL" - | "SIGINFO" - | "SIGINT" - | "SIGIO" - | "SIGKILL" - | "SIGPIPE" - | "SIGPROF" - | "SIGPWR" - | "SIGQUIT" - | "SIGSEGV" - | "SIGSTKFLT" - | "SIGSTOP" - | "SIGSYS" - | "SIGTERM" - | "SIGTRAP" - | "SIGTSTP" - | "SIGTTIN" - | "SIGTTOU" - | "SIGURG" - | "SIGUSR1" - | "SIGUSR2" - | "SIGVTALRM" - | "SIGWINCH" - | "SIGXCPU" - | "SIGXFSZ"; - /** **UNSTABLE**: new API, yet to be vetted. * * Represents the stream of signals, implements both `AsyncIterator` and @@ -722,21 +687,6 @@ declare namespace Deno { }, >(opt: T): Process<T>; - /** **UNSTABLE**: Send a signal to process under given `pid`. This - * functionality only works on Linux and Mac OS. - * - * If `pid` is negative, the signal will be sent to the process group - * identified by `pid`. - * - * const p = Deno.run({ - * cmd: ["sleep", "10000"] - * }); - * - * Deno.kill(p.pid, "SIGINT"); - * - * Requires `allow-run` permission. */ - export function kill(pid: number, signo: Signal): void; - /** **UNSTABLE**: New API, yet to be vetted. Additional consideration is still * necessary around the permissions required. * |