diff options
Diffstat (limited to 'cli/js/web/streams/transform_stream.ts')
-rw-r--r-- | cli/js/web/streams/transform_stream.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/js/web/streams/transform_stream.ts b/cli/js/web/streams/transform_stream.ts index ac08fea3f..548a20b38 100644 --- a/cli/js/web/streams/transform_stream.ts +++ b/cli/js/web/streams/transform_stream.ts @@ -11,10 +11,10 @@ import { setUpTransformStreamDefaultControllerFromTransformer, validateAndNormalizeHighWaterMark, } from "./internals.ts"; -import { ReadableStreamImpl } from "./readable_stream.ts"; +import type { ReadableStreamImpl } from "./readable_stream.ts"; import * as sym from "./symbols.ts"; -import { TransformStreamDefaultControllerImpl } from "./transform_stream_default_controller.ts"; -import { WritableStreamImpl } from "./writable_stream.ts"; +import type { TransformStreamDefaultControllerImpl } from "./transform_stream_default_controller.ts"; +import type { WritableStreamImpl } from "./writable_stream.ts"; import { customInspect, inspect } from "../console.ts"; // eslint-disable-next-line @typescript-eslint/no-explicit-any |