UNPKG

react-smart-data-table

Version:

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

15 lines (14 loc) 459 B
import type { ReactNode } from 'react'; import * as utils from '../helpers/functions'; export interface CellValueProps { children?: ReactNode; content?: ReactNode; filterable?: boolean; filterValue?: string; isImg?: boolean; parseBool?: boolean | utils.ParseBool; parseImg?: boolean | utils.ParseImg; withLinks?: boolean; } declare const _default: import("react").NamedExoticComponent<CellValueProps>; export default _default;