diff options
| author | Tomohito Nakayama <nkym.tmht@gmail.com> | 2019-10-02 09:08:51 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-10-01 20:08:51 -0400 |
| commit | a646c2a88505819e07b5b967b9f8afacbac5aeef (patch) | |
| tree | 4ca7f99e29fc59c7efa1d16261579bb6bba6c4c9 /js/lib.deno_runtime.d.ts | |
| parent | 75eeac03f31521dff1ef7db9ff2a9cb32a97b111 (diff) | |
Implement ignoreBOM option of UTF8Decoder in text_encoding (#3040)
Diffstat (limited to 'js/lib.deno_runtime.d.ts')
| -rw-r--r-- | js/lib.deno_runtime.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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; |
