UNPKG

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