UNPKG

antd-table-editable-af

Version:
9 lines (8 loc) 520 B
/// <reference types="react" /> import { CellEditorProps, EditableCellProps } from '../../interface'; interface EditorCellProps<RecordType extends Record<string, any> = any> extends Omit<EditableCellProps<RecordType>, 'render'> { editorComponents: Record<string, React.FunctionComponent<CellEditorProps>>; eventName?: string; } declare const EditorCell: import("react").MemoExoticComponent<({ editorComponents, ...props }: EditorCellProps) => import("react/jsx-runtime").JSX.Element>; export default EditorCell;