mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-06-19 00:01:59 +00:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
16 lines
536 B
Text
16 lines
536 B
Text
// https://encoding.spec.whatwg.org/#dictdef-textencoderencodeintoresult
|
|
dictionary TextEncoderEncodeIntoResult {
|
|
[GenerateAsRequired] unsigned long long read;
|
|
[GenerateAsRequired] unsigned long long written;
|
|
};
|
|
|
|
// https://encoding.spec.whatwg.org/#textencoder
|
|
[Exposed=*]
|
|
interface TextEncoder {
|
|
constructor();
|
|
|
|
[NewObject] Uint8Array encode(optional USVString input = "");
|
|
TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);
|
|
};
|
|
|
|
TextEncoder includes TextEncoderCommon;
|