summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Encoding/TextEncoder.idl
blob: 09713478b729e44892a3d8d15369d23857e0529e (plain)
1
2
3
4
5
6
7
8
9
[Exposed=(Window,Worker)]
interface TextEncoder {
    constructor();

    // [NewObject] Uint8Array encode(optional USVString input = "");
    // TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);

    // readonly attribute DOMString encoding;
};