UNPKG

bananas-commerce-admin

Version:

What's this, an admin for apes?

11 lines (9 loc) 257 B
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; }