TextDecoderStream
interface TextDecoderStream {
readonly [[Symbol.toStringTag]]: string;
readonly encoding: string;
readonly fatal: boolean;
readonly ignoreBOM: boolean;
readonly readable: ReadableStream<string>;
readonly writable: WritableStream<BufferSource>;
}var TextDecoderStream: {
readonly prototype: TextDecoderStream;
new (label?: string, options?: TextDecoderOptions): TextDecoderStream;
};§Properties
§
readonly readable: ReadableStream<string>
[src]§
readonly writable: WritableStream<BufferSource>
[src]