UNPKG

ng2-qgrid

Version:
20 lines (17 loc) 325 B
/** * 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; }