ngx-table-powerfull
Version:
Table with catalog of functionalities for free use based on the ngx-datatable component and other components
14 lines (13 loc) • 426 B
TypeScript
import { MatDialogRef } from '@angular/material';
import { CdkDragDrop } from '@angular/cdk/drag-drop';
export declare class GridColumnsComponent {
private dialogRef;
data: any;
columns: any[];
description: string;
constructor(dialogRef: MatDialogRef<GridColumnsComponent>, data: any);
ngOnInit(): void;
save(): void;
close(): void;
drop(event: CdkDragDrop<string[]>): void;
}