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