summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2019-07-06 23:16:03 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-07-06 10:16:03 -0400
commita948f9ff541e5983bc29113d1e0f1898206f8581 (patch)
tree67e47efd88468886a8e2a50ad28cc2c75be69389 /js/deno.ts
parent33cb79d24cf03c2c771dfa499e4cc8ee7bcee800 (diff)
io: change Reader interface (#2591)
Instead of returning { nread: number, eof: bool }, read() returns EOF | number.
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index 0bc3c95c7..f20b6eff1 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -20,9 +20,9 @@ export {
OpenMode
} from "./files";
export {
+ EOF,
copy,
toAsyncIterator,
- ReadResult,
SeekMode,
Reader,
SyncReader,