1 | import { EventEmitter } from '@angular/core';
|
2 | import { Cell } from '../../../lib/data-set/cell';
|
3 | export declare class DefaultEditor implements Editor {
|
4 | cell: Cell;
|
5 | inputClass: string;
|
6 | onStopEditing: EventEmitter<any>;
|
7 | onEdited: EventEmitter<any>;
|
8 | onClick: EventEmitter<any>;
|
9 | }
|
10 | export interface Editor {
|
11 | cell: Cell;
|
12 | inputClass: string;
|
13 | onStopEditing: EventEmitter<any>;
|
14 | onEdited: EventEmitter<any>;
|
15 | onClick: EventEmitter<any>;
|
16 | }
|