From b91470d63048587e6b6151e802bfe7706bd57afe Mon Sep 17 00:00:00 2001 From: Kitson Kelly Date: Wed, 13 Jan 2021 11:48:02 +1100 Subject: [PATCH] more cleanup --- cli/tests/unit/unit_tests.ts | 4 ---- op_crates/fetch/lib.deno_fetch.d.ts | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/cli/tests/unit/unit_tests.ts b/cli/tests/unit/unit_tests.ts index 7d00101d34b01a..ae3726575388cf 100644 --- a/cli/tests/unit/unit_tests.ts +++ b/cli/tests/unit/unit_tests.ts @@ -58,10 +58,6 @@ import "./response_test.ts"; import "./signal_test.ts"; import "./stat_test.ts"; import "./stdio_test.ts"; -import "./streams_internal_test.ts"; -import "./streams_piping_test.ts"; -import "./streams_transform_test.ts"; -import "./streams_writable_test.ts"; import "./symlink_test.ts"; import "./sync_test.ts"; import "./text_encoding_test.ts"; diff --git a/op_crates/fetch/lib.deno_fetch.d.ts b/op_crates/fetch/lib.deno_fetch.d.ts index f5a08453a116dc..83739f2ecea4b1 100644 --- a/op_crates/fetch/lib.deno_fetch.d.ts +++ b/op_crates/fetch/lib.deno_fetch.d.ts @@ -101,7 +101,7 @@ declare var ReadableStreamDefaultController: { }; interface ReadableByteStreamController { - readonly byobRequest: ReadableStreamBYOBRequest | undefined; + readonly byobRequest: undefined; readonly desiredSize: number | null; close(): void; enqueue(chunk: ArrayBufferView): void;