antd-table-editable-af
Version:
A editable table based on antd table
9 lines (8 loc) • 520 B
TypeScript
/// <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;