summaryrefslogtreecommitdiff
path: root/js/lib.deno_runtime.d.ts
diff options
context:
space:
mode:
authorTomohito Nakayama <nkym.tmht@gmail.com>2019-10-02 09:08:51 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-10-01 20:08:51 -0400
commita646c2a88505819e07b5b967b9f8afacbac5aeef (patch)
tree4ca7f99e29fc59c7efa1d16261579bb6bba6c4c9 /js/lib.deno_runtime.d.ts
parent75eeac03f31521dff1ef7db9ff2a9cb32a97b111 (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.ts2
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;