bs-datatable
Version:
A data table based on Bootstrap 5
17 lines (16 loc) • 608 B
TypeScript
import { BSDataTableBase } from "./BSDataTableBase";
import { BSDataTablePaginationOptions } from "../commonTypes/common-types";
import { BSDataTableHyperLink } from "./BSDataTableHyperLink";
export declare class BSDataTablePagination extends BSDataTableBase {
options: BSDataTablePaginationOptions;
listId: string;
containerId: string;
pageLinks: BSDataTableHyperLink[];
/**
* @param {BSDataTablePaginationOptions} options
*/
constructor(options: BSDataTablePaginationOptions);
render(): void;
focusPageIndex(index: any): void;
clear(): void;
}