UNPKG

antd-table-editable-af

Version:
7 lines (6 loc) 363 B
import { Component, EditableOnCellProps } from '../../interface'; interface CellDefaultProps<RecordType> extends EditableOnCellProps<RecordType> { cellComponent: Component<any>; } export default function CellDefault<RecordType>({ cellComponent: CellComponent, ...restProps }: CellDefaultProps<RecordType>): import("react/jsx-runtime").JSX.Element; export {};