interface TextEncoder
          
   extends TextEncoderCommon
encode(input?: string): Uint8Array
      
    Returns the result of running UTF-8's encoder.
encodeInto(input: string,dest: Uint8Array,): TextEncoderEncodeIntoResult
      
    Allows you to convert a string into binary data (in the form of a Uint8Array) given the encoding.
encode(input?: string): Uint8Array
      
    Turns a string into binary data (in the form of a Uint8Array) using UTF-8 encoding.
encodeInto(input: string,dest: Uint8Array,): TextEncoderEncodeIntoResult
      
    Encodes a string into the destination Uint8Array and returns the result of the encoding.