Interface TextDecoderStream
interface TextDecoderStream {
encoding: string;
fatal: boolean;
ignoreBOM: boolean;
readable: ReadableStream<string>;
writable: WritableStream<BufferSource>;
}
encoding: string;
fatal: boolean;
ignoreBOM: boolean;
readable: ReadableStream<string>;
writable: WritableStream<BufferSource>;
}
Hierarchy
- GenericTransformStream
- TextDecoderCommon
- TextDecoderStream (view full)
MDN Reference