diff options
author | Yoshiya Hinosawa <stibium121@gmail.com> | 2020-01-24 22:15:31 +0900 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2020-01-24 08:15:31 -0500 |
commit | bc89f04cbf5e7a8480331eea77e57a100c8179d7 (patch) | |
tree | cb5b466f1169872f1e47d68926c27fbbd1509c3f /cli/js/deno.ts | |
parent | a6a7253df9129b51255d45bf996d9a335c809ace (diff) |
Add signal handlers (#3757)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index e53f9a63a..2d20ae811 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -101,6 +101,7 @@ export { } from "./process.ts"; export { transpileOnly, compile, bundle } from "./compiler_api.ts"; export { inspect } from "./console.ts"; +export { signal, signals, SignalStream } from "./signals.ts"; export { build, OperatingSystem, Arch } from "./build.ts"; export { version } from "./version.ts"; export const args: string[] = []; |