diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-03-11 15:49:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-11 15:49:53 +0100 |
commit | 2d1b39bef339edb19ae6be5fb2099e685cee93bb (patch) | |
tree | 4e1664f50e079e2f258d86cb0e4a1160fb6b3d7b /cli/js/deno.ts | |
parent | 99a0c6df79b903e4fe72ce066787039bdede3868 (diff) |
reorg: remove dispatch.ts, move signals, factor out web utils (#4316)
- moves signal definition from "cli/js/process.ts" to "cli/js/signals.ts"
- removes "cli/js/dispatch.ts"
- removes "cli/js/types.ts"
- moves web specific utilities to "cli/js/web/util.ts"
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 4f56bb7d1..2ecd7680c 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -99,7 +99,7 @@ export { } from "./permissions.ts"; export { openPlugin } from "./plugins.ts"; export { kill } from "./ops/process.ts"; -export { run, RunOptions, Process, ProcessStatus, Signal } from "./process.ts"; +export { run, RunOptions, Process, ProcessStatus } from "./process.ts"; export { readdirSync, readdir } from "./ops/fs/read_dir.ts"; export { readFileSync, readFile } from "./read_file.ts"; export { readlinkSync, readlink } from "./ops/fs/read_link.ts"; @@ -107,7 +107,7 @@ export { realpathSync, realpath } from "./ops/fs/realpath.ts"; export { removeSync, remove, RemoveOptions } from "./ops/fs/remove.ts"; export { renameSync, rename } from "./ops/fs/rename.ts"; export { resources, close } from "./ops/resources.ts"; -export { signal, signals, SignalStream } from "./signals.ts"; +export { signal, signals, Signal, SignalStream } from "./signals.ts"; export { statSync, lstatSync, stat, lstat } from "./ops/fs/stat.ts"; export { symlinkSync, symlink } from "./ops/fs/symlink.ts"; export { connectTLS, listenTLS } from "./tls.ts"; |