ng2-qgrid
Version:
Angular Grid
17 lines (12 loc) • 338 B
TypeScript
import { ColumnModel } from '../column-type/column.model';
export declare interface Td {
// @deprecated
readonly element: HTMLElement;
value: any;
label: any;
readonly columnIndex: number;
readonly rowIndex: number;
readonly column: ColumnModel;
readonly row: any;
mode(value: string): void;
}