diff options
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 11f467580..8cce7bfce 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -1,27 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. // Public deno module. -export { - env, - exit, - isTTY, - execPath, - homeDir, - cacheDir, - configDir, - dataDir, - dataLocalDir, - audioDir, - desktopDir, - documentDir, - downloadDir, - fontDir, - pictureDir, - publicDir, - templateDir, - videoDir, - hostname -} from "./os.ts"; +export { dir, env, exit, isTTY, execPath, hostname } from "./os.ts"; export { chdir, cwd } from "./dir.ts"; export { File, |