export interface Listing { listingID: string; status: string; } export interface Property { propertyID: string; status: string; listings: Listing[]; } export interface WorkOrder { workOrderID: string; workOrderNumber: string; caseType: string; location: string; priority: string; workStatus: string; grandTotal: number; unitNumber: string; street: string; propertyID: string; } export interface groupByProp { [propertyID: string]: WorkOrder[]; } export interface WorkOrderData { [key: string]: groupByProp; } export interface PropertyDetail { propertyID: string; status: string; image: { [key: string]: string; }; isListed: boolean; occupancy: string; propertyDisplayName: string; unitType: string; street: string; unitNumber: string; } //# sourceMappingURL=types.d.ts.map