UNPKG

react-url-table

Version:

Smart and flexible table component built with React and for React projects. based on React16 hooks and mobx-react-lite

12 lines (11 loc) 347 B
/// <reference types="react" /> import { IRecord } from "../../@typings/types"; import FieldModel from "../../store/models/field"; interface IProps { record: IRecord; rowIndex: number; field: FieldModel; } declare function EditableCell(props: IProps): JSX.Element; declare const _default: typeof EditableCell; export default _default;