happy-opfs
    Preparing search index...

    Type Alias WriteSyncFileContent

    WriteSyncFileContent: Exclude<
        WriteFileContent,
        Blob
        | ReadableStream<Uint8Array<ArrayBuffer>>,
    >

    Represents the possible content types that can be written to a file synchronously. Excludes Blob (requires async read) and ReadableStream (inherently async).