From 1d4b92ac85d8c850270ca859f928404c72c0a49a Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Sun, 21 Apr 2019 18:26:56 -0700 Subject: Add Deno.kill(pid, signo) and process.kill(signo) (Unix only) (#2177) --- js/deno.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'js/deno.ts') diff --git a/js/deno.ts b/js/deno.ts index 51cc0791a..46f018afc 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -68,7 +68,14 @@ export { FileInfo } from "./file_info"; export { connect, dial, listen, Listener, Conn } from "./net"; export { metrics, Metrics } from "./metrics"; export { resources } from "./resources"; -export { run, RunOptions, Process, ProcessStatus } from "./process"; +export { + kill, + run, + RunOptions, + Process, + ProcessStatus, + Signal +} from "./process"; export { inspect } from "./console"; export { build, platform, OperatingSystem, Arch } from "./build"; export { version } from "./version"; -- cgit v1.2.3