summaryrefslogtreecommitdiff
path: root/io/iotest.ts
diff options
context:
space:
mode:
Diffstat (limited to 'io/iotest.ts')
-rw-r--r--io/iotest.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/iotest.ts b/io/iotest.ts
index e3a42f58a..9973562a7 100644
--- a/io/iotest.ts
+++ b/io/iotest.ts
@@ -2,8 +2,8 @@
// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-
-import { Reader, ReadResult } from "deno";
+type Reader = Deno.Reader;
+type ReadResult = Deno.ReadResult;
/** OneByteReader returns a Reader that implements
* each non-empty Read by reading one byte from r.