summaryrefslogtreecommitdiff
path: root/js/files.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/files.ts
parent40d6daf8240f9dc090c23f975488c424b88f120f (diff)
Fix deno.open permission check (#1336)
Diffstat (limited to 'js/files.ts')
-rw-r--r--js/files.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/files.ts b/js/files.ts
index 4392eadf7..e23d19cfe 100644
--- a/js/files.ts
+++ b/js/files.ts
@@ -29,7 +29,7 @@ export const stdout = new File(1);
/** An instance of `File` for stderr. */
export const stderr = new File(2);
-type OpenMode =
+export type OpenMode =
/** Read-only. Default. Starts at beginning of file. */
| "r"
/** Read-write. Start at beginning of file. */