]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/cd-table-column-filters-change.ts
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / cd-table-column-filters-change.ts
1 import { TableColumnProp } from '@swimlane/ngx-datatable';
2
3 export interface CdTableColumnFiltersChange {
4 /**
5 * Applied filters.
6 */
7 filters: {
8 name: string;
9 prop: TableColumnProp;
10 value: { raw: string; formatted: string };
11 }[];
12
13 /**
14 * Filtered data.
15 */
16 data: any[];
17
18 /**
19 * Filtered out data.
20 */
21 dataOut: any[];
22 }