@true-directive/grid
Version:
Angular Data Grid from Yopsilon.
18 lines (17 loc) • 581 B
TypeScript
/**
* Copyright (c) 2018-2019 Aleksey Melnikov, True Directive Company.
* @link https://truedirective.com/
* @license MIT
*/
import { EventEmitter } from '@angular/core';
import { Column } from '@true-directive/base';
import { GridStateService } from '../grid-state.service';
export interface IEditor {
state: GridStateService;
column: Column;
row: any;
change: EventEmitter<any>;
commit: EventEmitter<any>;
cancel: EventEmitter<void>;
init(value: any, valueChanged: boolean, height: number, ie: boolean, wasShown: boolean): void;
}