import { DataTableParams } from '../types/dataTable.type'; export type AssetStatus = 'Available' | 'On Disposal Process' | 'Reported Disposal' | 'Damaged' | 'Missing' | 'On Borrowing Process' | 'On Assign Process' | 'Borrowed' | 'Assigned' | 'On Transfer'; export type GetAssetsByAssetNameFilter = { status?: AssetStatus; group?: string; maintenanceStatus?: string; auditStatus?: string; }; export type GetAssetsByAssetNameParams = DataTableParams & GetAssetsByAssetNameFilter;