@true-directive/grid
Version:
Angular Data Grid from Yopsilon.
22 lines (21 loc) • 615 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';
import { ICell } from './cell.interface';
/**
* Component for displaying html content.
*/
export declare class CellHtmlComponent implements ICell {
value: string;
event: EventEmitter<any>;
column: Column;
row: any;
state: GridStateService;
disabled: boolean;
init(value: any): void;
}