happy-opfs
    Preparing search index...

    Type Alias ReadFileContent

    ReadFileContent:
        | Uint8Array<ArrayBuffer>
        | File
        | string
        | ReadableStream<Uint8Array<ArrayBuffer>>

    Represents the possible content types that can be read from a file. The actual type depends on the encoding option:

    • 'bytes' (default): Uint8Array
    • 'utf8': string
    • 'blob': File
    • 'stream': ReadableStream<Uint8Array>