Kizuki
    Preparing search index...

    Interface Row

    One row of a sheet: its 1-based row number and its cells by column. Empty cells may be included; rowsToPassages skips them.

    interface Row {
        cells: { col: number; value: string }[];
        row: number;
    }
    Index
    cells: { col: number; value: string }[]

    The row's cells, each with its column number (starting at 0) and its text.

    row: number

    The row's number in the sheet, starting at 1.