AutoBE
    Preparing search index...

    Read bounded data rows from a CSV file.

    interface Locator {
        columns?: (number & Type<"uint32">)[] & UniqueItems<true>;
        from: number & Type<"uint32">;
        to: number & Type<"uint32">;
        type: "csvRows";
        unit: "row";
    }
    Index

    Properties

    Properties

    columns?: (number & Type<"uint32">)[] & UniqueItems<true>

    Optional zero-based CSV column indexes to include.

    Omit when the adapter should return every column in the selected row window.

    from: number & Type<"uint32">

    Inclusive zero-based range start.

    to: number & Type<"uint32">

    Exclusive zero-based range end.

    type: "csvRows"

    Chunk locator discriminator.

    unit: "row"

    Range coordinate unit.