import { SimpleDatagridCellComponent } from "../components/simple-datagrid-cell/simple-datagrid-cell.component"; import { ISimpleDataGridColumn } from "./simple-datagrid-column.interface"; export interface ISimpleDataGridCellEvent { index: number; column: ISimpleDataGridColumn; field: string; rowInstance: any; instance: SimpleDatagridCellComponent; rowData: any; rowIndex: number; }