UNPKG

es-grid-template

Version:

es-grid-template

17 lines (16 loc) 546 B
import React from "react"; import type { EditType } from "rc-master-ui"; import type { ColumnTable, IFormat } from "../../grid-component/type"; interface EditableCellProps<DataType> extends React.HTMLAttributes<HTMLElement> { t?: any; dataIndex: string; editType: EditType; record: DataType; format?: IFormat; column: ColumnTable<DataType>; indexRow: number; indexCol: number; cellEditing?: any; } declare const EditableCell: <T>(props: EditableCellProps<T>) => React.JSX.Element; export default EditableCell;