dynamic-mat-table
Version:
dynamic-mat-table is an Angular component for presenting large and complex data with a lightning fast performance (at least 10x faster) and excellent level of control over the presentation.
11 lines (10 loc) • 448 B
TypeScript
import { EventEmitter } from '@angular/core';
import { DynamicMatTableComponent } from '../../dynamic-mat-table/dynamic-mat-table.component';
import { TableField } from '../../models/table-field.model';
import { IRowEvent, TableRow } from '../../models/table-row.model';
export interface IDynamicCell {
row: TableRow;
column: TableField<any>;
parent: DynamicMatTableComponent<any>;
onRowEvent?: EventEmitter<IRowEvent>;
}