From a646c2a88505819e07b5b967b9f8afacbac5aeef Mon Sep 17 00:00:00 2001 From: Tomohito Nakayama Date: Wed, 2 Oct 2019 09:08:51 +0900 Subject: Implement ignoreBOM option of UTF8Decoder in text_encoding (#3040) --- js/lib.deno_runtime.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'js/lib.deno_runtime.d.ts') diff --git a/js/lib.deno_runtime.d.ts b/js/lib.deno_runtime.d.ts index 8eb46b410..1e220a29d 100644 --- a/js/lib.deno_runtime.d.ts +++ b/js/lib.deno_runtime.d.ts @@ -2372,7 +2372,7 @@ declare namespace textEncoding { } export interface TextDecoderOptions { fatal?: boolean; - ignoreBOM?: false; + ignoreBOM?: boolean; } export class TextDecoder { private _encoding; -- cgit v1.2.3