summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/deno.ts8
-rw-r--r--cli/js/deno_unstable.ts6
2 files changed, 7 insertions, 7 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts
index 5843d5fbf..5bc69fc7b 100644
--- a/cli/js/deno.ts
+++ b/cli/js/deno.ts
@@ -13,12 +13,6 @@ export { chmodSync, chmod } from "./ops/fs/chmod.ts";
export { chownSync, chown } from "./ops/fs/chown.ts";
export { customInspect, inspect } from "./web/console.ts";
export { copyFileSync, copyFile } from "./ops/fs/copy_file.ts";
-export {
- Diagnostic,
- DiagnosticCategory,
- DiagnosticItem,
- DiagnosticMessageChain,
-} from "./diagnostics.ts";
export { chdir, cwd } from "./ops/fs/dir.ts";
export { errors } from "./errors.ts";
export {
@@ -59,7 +53,7 @@ export {
export { metrics, Metrics } from "./ops/runtime.ts";
export { mkdirSync, mkdir, MkdirOptions } from "./ops/fs/mkdir.ts";
export { connect, listen, Listener, Conn } from "./net.ts";
-export { dir, env, exit, execPath } from "./ops/os.ts";
+export { env, exit, execPath } from "./ops/os.ts";
export { run, RunOptions, Process, ProcessStatus } from "./process.ts";
export { DirEntry, readDirSync, readDir } from "./ops/fs/read_dir.ts";
export { readFileSync, readFile } from "./read_file.ts";
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts
index 4d964f3bd..192137e1f 100644
--- a/cli/js/deno_unstable.ts
+++ b/cli/js/deno_unstable.ts
@@ -23,3 +23,9 @@ export {
PermissionStatus,
Permissions,
} from "./permissions.ts";
+export {
+ Diagnostic,
+ DiagnosticCategory,
+ DiagnosticItem,
+ DiagnosticMessageChain,
+} from "./diagnostics.ts";