mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 08:11:58 +00:00
9 lines
293 B
Text
9 lines
293 B
Text
|
|
// https://encoding.spec.whatwg.org/#textdecoderstream
|
||
|
|
[Exposed=*]
|
||
|
|
interface TextDecoderStream {
|
||
|
|
constructor(optional DOMString label = "utf-8", optional TextDecoderOptions options = {});
|
||
|
|
};
|
||
|
|
|
||
|
|
TextDecoderStream includes TextDecoderCommon;
|
||
|
|
TextDecoderStream includes GenericTransformStream;
|