diff options
author | Axetroy <axetroy.dev@gmail.com> | 2019-12-15 13:14:20 +0800 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-12-15 13:14:20 +0800 |
commit | de946989150d74204678da7f613a4e039d033e46 (patch) | |
tree | 93c24aa4aae4346aaccf79cf260fc36eba8e1229 /cli/js/deno.ts | |
parent | 22a2afe5588ae71301db6b9a6000d241ef1e762a (diff) |
Feat: Add more dir APIs for Deno (#3491)
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, |