es-grid-template
Version:
es-grid-template
14 lines (13 loc) • 361 B
TypeScript
import React from "react";
import type { ColumnTable } from "../../grid-component/type";
type Props = {
column: ColumnTable;
record?: any;
rowIndex: number;
colIndex: number;
checkValue: any;
checked: boolean;
editAble?: boolean;
};
declare const ControlCheckbox: (props: Props) => React.JSX.Element;
export default ControlCheckbox;