interface VisibleMatrixData {
    colIndices: readonly number[];
    hasMoreCols: boolean;
    hasMoreRows: boolean;
    rowIndices: readonly number[];
    rows: readonly (readonly number[])[];
    visibleColumns: readonly number[];
}

Properties

colIndices: readonly number[]
hasMoreCols: boolean
hasMoreRows: boolean
rowIndices: readonly number[]
rows: readonly (readonly number[])[]
visibleColumns: readonly number[]