UNPKG

ng2-qgrid

Version:
19 lines (15 loc) 365 B
import { CellViewPosition } from '../scene/view/cell.view'; /** * A class contains highlight data for rows and columns */ export declare interface HighlightModel { /** * Set of columns that should be highlighted. */ columns?: string[]; /** * Set of rows that should be highlighted. */ rows?: number[]; cell?: CellViewPosition; }