1 | import { EventEmitter } from '@angular/core';
|
2 | import { Row } from '../../../lib/data-set/row';
|
3 | import { Grid } from '../../../lib/grid';
|
4 | export declare class TbodyCustomComponent {
|
5 | grid: Grid;
|
6 | row: Row;
|
7 | source: any;
|
8 | custom: EventEmitter<any>;
|
9 | onCustom(action: any, event: any): void;
|
10 | }
|