summaryrefslogtreecommitdiff
path: root/cli/js/lib.deno.unstable.d.ts
diff options
context:
space:
mode:
authorAli Hasani <a.hassssani@gmail.com>2020-05-17 21:41:24 +0430
committerGitHub <noreply@github.com>2020-05-17 19:11:24 +0200
commiteddb916883901385233bea24313e2920fcac5388 (patch)
tree0dbde6a34037b1c2b2459077731cb9afdc5b3a35 /cli/js/lib.deno.unstable.d.ts
parenta054250a2cd709f74a3c9984af0cb74b7adde3bd (diff)
Implement Deno.kill for windows (#5347)
Diffstat (limited to 'cli/js/lib.deno.unstable.d.ts')
-rw-r--r--cli/js/lib.deno.unstable.d.ts2
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/js/lib.deno.unstable.d.ts b/cli/js/lib.deno.unstable.d.ts
index a166cb1c0..d34d86636 100644
--- a/cli/js/lib.deno.unstable.d.ts
+++ b/cli/js/lib.deno.unstable.d.ts
@@ -1120,8 +1120,6 @@ declare namespace Deno {
*
* Deno.kill(p.pid, Deno.Signal.SIGINT);
*
- * Throws Error (not yet implemented) on Windows
- *
* Requires `allow-run` permission. */
export function kill(pid: number, signo: number): void;