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.
20 lines (19 loc) • 521 B
TypeScript
import { AbstractField } from './table-field.model';
import { Direction } from './table-setting.model';
export interface PrintConfig {
displayedFields?: string[];
title?: string;
userPrintParameters?: {
key: string;
value: string;
}[];
tablePrintParameters?: {
key: string;
value: string;
}[];
showParameters?: boolean;
data?: any[];
columns?: AbstractField[];
direction?: Direction;
pregenerate?: (html: string) => string;
}