import { Address } from './Address'; export interface Shipment { ID?: string; BuyerID?: string; Shipper?: string; DateShipped?: string; DateDelivered?: string; TrackingNumber?: string; Cost?: number; OwnerID?: string; xp?: TShipmentXp; Account?: string; FromAddressID?: string; ToAddressID?: string; readonly FromAddress?: Address; readonly ToAddress?: Address; }