UNPKG

610 BTypeScriptView Raw
1import { EventEmitter, OnChanges } from '@angular/core';
2import { Grid } from '../../../lib/grid';
3import { Row } from '../../../lib/data-set/row';
4import { Cell } from '../../../lib/data-set/cell';
5export declare class TheadFormRowComponent implements OnChanges {
6 grid: Grid;
7 row: Row;
8 createConfirm: EventEmitter<any>;
9 create: EventEmitter<any>;
10 isMultiSelectVisible: boolean;
11 showActionColumnLeft: boolean;
12 showActionColumnRight: boolean;
13 addInputClass: string;
14 onCreate(event: any): void;
15 ngOnChanges(): void;
16 getVisibleCells(cells: Array<Cell>): Array<Cell>;
17}