1 | import { EventEmitter, AfterViewInit, ElementRef, OnChanges } from '@angular/core';
|
2 | import { Grid } from '../../../lib/grid';
|
3 | import { DataSource } from '../../../lib/data-source/data-source';
|
4 | export declare class AddButtonComponent implements AfterViewInit, OnChanges {
|
5 | private ref;
|
6 | grid: Grid;
|
7 | source: DataSource;
|
8 | create: EventEmitter<any>;
|
9 | isActionAdd: boolean;
|
10 | addNewButtonContent: string;
|
11 | constructor(ref: ElementRef);
|
12 | ngAfterViewInit(): void;
|
13 | ngOnChanges(): void;
|
14 | onAdd(event: any): void;
|
15 | }
|