summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-12-13 16:20:37 -0500
committerRyan Dahl <ry@tinyclouds.org>2018-12-13 16:20:37 -0500
commit2cb52cc4d19b212c4a1095ca4f668fe62b237c7a (patch)
treee08f7714165fe2bff643dd25a987d4f0b4531d09 /js/deno.ts
parent40d6daf8240f9dc090c23f975488c424b88f120f (diff)
Fix deno.open permission check (#1336)
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts12
1 files changed, 11 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index 21c93c5d3..869314d2c 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -4,7 +4,17 @@
/// <amd-module name="deno"/>
export { env, exit } from "./os";
export { chdir, cwd } from "./dir";
-export { File, open, stdin, stdout, stderr, read, write, close } from "./files";
+export {
+ File,
+ open,
+ stdin,
+ stdout,
+ stderr,
+ read,
+ write,
+ close,
+ OpenMode
+} from "./files";
export {
copy,
toAsyncIterator,