ng2-qgrid
Version:
Angular Grid
19 lines (15 loc) • 365 B
TypeScript
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;
}