UNPKG

bs-datatable

Version:

A data table based on Bootstrap 5

18 lines (17 loc) 496 B
import { BSDataTableBase } from "./BSDataTableBase"; import { BSDataTableRow } from "./BSDataTableRow"; export declare class BSDataTableRowCollection extends BSDataTableBase { /** * @type BSDataTableRow[] */ rows: BSDataTableRow[]; constructor(); /** * * @param {BSDataTableRow} row */ addRow(row: BSDataTableRow): this; getVisibleRows(): BSDataTableRow[]; getNextRowIndex(): number; getGridTitlesRow(): BSDataTableRow; }