ng2-qgrid
Version:
Angular Grid
20 lines (17 loc) • 325 B
TypeScript
/**
* A class that contains focused cell position.
*/
export declare interface FocusModel {
/**
* Index of row for focused cell.
*/
rowIndex?: number;
/**
* Index of column for focused cell.
*/
columnIndex?: number;
/**
* Indicates if grid is focused or not.
*/
isActive?: boolean;
}