MLE text encoding API(mle-js-encodings)
    Preparing search index...

    Type Alias TextEncoderEncodeIntoResult

    The object returned by encodeInto. It reports on the progress of the encoder.

    type TextEncoderEncodeIntoResult = {
        read: number;
        written: number;
    }
    Index

    Properties

    Properties

    read: number

    The number of UTF-16 code points that were read.

    written: number

    The number of bytes written to the given buffer.