UNPKG

mobyo-interfaces

Version:
20 lines (19 loc) 442 B
export interface IOrderDeliveryLatLan { latitude: number; longitude: number; } export interface IOrderDeliveryAddressV3 { city: string; complement: string; coordinates: IOrderDeliveryLatLan; country: string; formattedAddress: string; name?: string; neighborhood: string; postalCode: string; reference: string; state: string; streetName: string; streetNumber: string; id?: string; }