summaryrefslogtreecommitdiff
path: root/io/bufio.ts
diff options
context:
space:
mode:
Diffstat (limited to 'io/bufio.ts')
-rw-r--r--io/bufio.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/io/bufio.ts b/io/bufio.ts
index f583a2ff9..f057952fe 100644
--- a/io/bufio.ts
+++ b/io/bufio.ts
@@ -3,7 +3,9 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-import { Reader, ReadResult, Writer } from "deno";
+type Reader = Deno.Reader;
+type ReadResult = Deno.ReadResult;
+type Writer = Deno.Writer;
import { charCode, copyBytes } from "./util.ts";
import { assert } from "../testing/asserts.ts";