UNPKG

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.

12 lines (11 loc) 508 B
import { OnInit, ElementRef } from '@angular/core'; import { MatDialogRef } from '@angular/material/dialog'; import { PrintConfig } from '../../../models/print-config.model'; export declare class PrintTableDialogComponent implements OnInit { dialogRef: MatDialogRef<PrintTableDialogComponent>; printTable: PrintConfig; printContentRef: ElementRef; constructor(dialogRef: MatDialogRef<PrintTableDialogComponent>, printTable: PrintConfig); ngOnInit(): void; print(): void; }