mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-26 11:20:03 +00:00
10 lines
289 B
Plaintext
10 lines
289 B
Plaintext
[Exposed=(Window,Worker)]
|
|
interface TextEncoder {
|
|
constructor();
|
|
|
|
[NewObject] Uint8Array encode(optional USVString input = "");
|
|
// TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);
|
|
|
|
// readonly attribute DOMString encoding;
|
|
};
|