UNPKG

react-smart-data-table

Version:

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

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