]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/cd-table-column.ts
import ceph nautilus 14.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / cd-table-column.ts
1 import { TableColumn, TableColumnProp } from '@swimlane/ngx-datatable';
2
3 import { CellTemplate } from '../enum/cell-template.enum';
4
5 export interface CdTableColumn extends TableColumn {
6 cellTransformation?: CellTemplate;
7 isHidden?: boolean;
8 prop: TableColumnProp; // Enforces properties to get sortable columns
9 }