UNPKG

react-smart-data-table

Version:

A smart data table component for React.js meant to be configuration free

7 lines (6 loc) 612 B
import type { ReactNode } from 'react'; import type { SmartDataTableProps } from './types'; import * as utils from './helpers/functions'; import './css/basic.css'; declare function SmartDataTable<T = utils.UnknownObject>({ className, data, dataKey, dataKeyResolver, dataRequestOptions, dataSampling, dynamic, emptyTable, filterValue, headers, hideUnordered, loader, name, onRowClick, orderedHeaders, paginator: PaginatorComponent, parseBool, parseImg, perPage, rowClassName, sortable, withFooter, withHeader, withLinks, withToggles, }: Partial<SmartDataTableProps<T>>): ReactNode; export default SmartDataTable;