UNPKG

@myparcel/sdk

Version:

JavaScript SDK to connect to the MyParcel API via Node.js or browser

12 lines (10 loc) 309 B
import { CarrierId } from '@myparcel/constants'; export interface SystemCountryCode { label: string; region: string; } export type SystemCountryCodesPerCountry = Record<string, SystemCountryCode>[]; export type GetSystemCountryCodesParams = { carrier_id?: CarrierId; unfiltered?: boolean; };