es-grid-template
Version:
es-grid-template
21 lines (20 loc) • 625 B
TypeScript
import React from "react";
import type { ColumnTable, IFormat } from "./type";
import type { EditType } from "rc-master-ui";
interface EditableCellProps<DataType> extends React.HTMLAttributes<HTMLElement> {
t?: any;
editing: boolean;
dataIndex: string;
title: any;
editType: EditType;
record: DataType;
index: number;
format?: IFormat;
column: ColumnTable<DataType>;
indexRow: number;
indexCol: number;
rowKey: any;
cellEditing: any;
}
declare const EditableCell: <T>(props: React.PropsWithChildren<EditableCellProps<T>>) => React.JSX.Element;
export default EditableCell;