diff options
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 12 |
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, |