UNPKG

300 BTypeScriptView Raw
1import { EventEmitter, OnChanges } from '@angular/core';
2import { Grid } from '../../../lib/grid';
3export declare class ActionsComponent implements OnChanges {
4 grid: Grid;
5 create: EventEmitter<any>;
6 createButtonContent: string;
7 cancelButtonContent: string;
8 ngOnChanges(): void;
9}