Represents the possible content types that can be read from a file. The actual type depends on the encoding option:
encoding
'bytes'
Uint8Array
'utf8'
string
'blob'
File
'stream'
ReadableStream<Uint8Array>
Represents the possible content types that can be read from a file. The actual type depends on the
encodingoption:'bytes'(default):Uint8Array'utf8':string'blob':File'stream':ReadableStream<Uint8Array>