UNPKG

@vlsergey/react-bootstrap-pagetable

Version:

Complex solution to work with pageable data, including sorting, filtering, actions, changing displayed columns, etc.

11 lines 404 B
/// <reference types="react" /> import FieldModel from './FieldModel'; import ItemModel from './ItemModel'; interface PropsType<I, V, F> { itemModel: ItemModel<I>; item: I; field: FieldModel<I, V, F>; } declare const ItemFieldValue: <I, V, F>({ itemModel, item, field }: PropsType<I, V, F>) => JSX.Element; export default ItemFieldValue; //# sourceMappingURL=ItemFieldValue.d.ts.map