ladybird/Libraries/LibWeb/Encoding/TextEncoderStream.idl
Luke Wilde cae0ee6fa7 LibWeb: Implement TextEncoderStream
Required by the server-side rendering mode of React Router, used by
https://chatgpt.com/

Note that the imported tests do not have the worker variants to prevent
freezing on macOS.
2025-02-07 11:04:46 -05:00

11 lines
298 B
Text

#import <Encoding/TextEncoder.idl>
#import <Streams/GenericTransformStream.idl>
// https://encoding.spec.whatwg.org/#textencoderstream
[Exposed=*]
interface TextEncoderStream {
constructor();
};
TextEncoderStream includes TextEncoderCommon;
TextEncoderStream includes GenericTransformStream;