export interface PwWorkOrdersInterface { id: number; pw_id: number; number: number; location: string; portfolio_id: number; building_id: number; unit_id: number; status: string; assigned_vendors: string[]; } export interface Column { index: string; dataType: string; label: string; } export interface DataStructure { totalCount: number; columns: Column[]; records: any[]; }