export type ShipmentDestinationType = "HOME" | "STORE" | "SERVICE_POINT" | "LOCKER";

export interface Shipment {
  option_name: string;
  carrier: string;
  tracking_number: string;
  tracking_url: string;
  date_commited?: string;
  date_sent?: string;
}
