mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 22:08:59 +00:00
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.
11 lines
298 B
Text
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;
|