UNPKG

ng2-smart-table

Version:

Angular Smart Table

18 lines (17 loc) 610 B
import { EventEmitter, OnChanges } from '@angular/core'; import { Grid } from '../../../lib/grid'; import { Row } from '../../../lib/data-set/row'; import { Cell } from '../../../lib/data-set/cell'; export declare class TheadFormRowComponent implements OnChanges { grid: Grid; row: Row; createConfirm: EventEmitter<any>; create: EventEmitter<any>; isMultiSelectVisible: boolean; showActionColumnLeft: boolean; showActionColumnRight: boolean; addInputClass: string; onCreate(event: any): void; ngOnChanges(): void; getVisibleCells(cells: Array<Cell>): Array<Cell>; }