Binary Raw - Docs
    Preparing search index...

    Type Alias EditOperation

    EditOperation:
        | { data: Uint8Array; range: ByteRange; type: "replace" }
        | { data: Uint8Array; offset: AbsoluteOffset; type: "insert" }
        | { range: ByteRange; type: "delete" }

    Represents a single edit operation on a binary file. Discriminated union of possible edit types.