mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
17 lines
536 B
Plaintext
17 lines
536 B
Plaintext
// 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;
|