diff options
Diffstat (limited to 'cli/js/web/text_encoding.ts')
-rw-r--r-- | cli/js/web/text_encoding.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/js/web/text_encoding.ts b/cli/js/web/text_encoding.ts index b0630bf95..e54cf0418 100644 --- a/cli/js/web/text_encoding.ts +++ b/cli/js/web/text_encoding.ts @@ -25,7 +25,6 @@ import * as base64 from "./base64.ts"; import { decodeUtf8 } from "./decode_utf8.ts"; -import * as domTypes from "./dom_types.d.ts"; import { core } from "../core.ts"; const CONTINUE = null; @@ -449,7 +448,7 @@ export class TextDecoder { } decode( - input?: domTypes.BufferSource, + input?: BufferSource, options: TextDecodeOptions = { stream: false } ): string { if (options.stream) { |