UNPKG

537 BTypeScriptView Raw
1import { EventEmitter, AfterViewInit, ElementRef, OnChanges } from '@angular/core';
2import { Grid } from '../../../lib/grid';
3import { DataSource } from '../../../lib/data-source/data-source';
4export 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}