UNPKG

ng2-qgrid

Version:
13 lines (9 loc) 285 B
import { Element } from './element'; import { Box } from './box'; import { Cell } from './cell'; export declare class Row extends Element { constructor(box: Box, index: number, element: HTMLElement); cells(): Cell[]; cell(columnIndex: number): Cell; model(): any; }