| 14 | |
| 15 | declare namespace iconv { |
| 16 | export interface DecodeOptions { |
| 17 | /** |
| 18 | * Strip the Byte Order Mark (BOM) from the input, |
| 19 | * when decoding, if the codec is BOM-aware. @default true |
| 20 | */ |
| 21 | stripBOM?: boolean; |
| 22 | /** Override the default endianness for `UTF-16` and `UTF-32` decodings. */ |
| 23 | defaultEncoding?: "utf16be" | "utf32be"; |
| 24 | } |
| 25 | |
| 26 | export interface EncodeOptions { |
| 27 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…