UNPKG

305 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2import { Cell } from '../../../lib/data-set/cell';
3export declare class EditCellDefault {
4 cell: Cell;
5 inputClass: string;
6 edited: EventEmitter<any>;
7 onEdited(event: any): boolean;
8 onStopEditing(): boolean;
9 onClick(event: any): void;
10}