@usethrottle/cart
    Preparing search index...

    Interface ShippingTaxMethod

    interface ShippingTaxMethod {
        amount: number;
        currency: string;
        deliveryMaxDays?: number | null;
        deliveryMinDays?: number | null;
        deliveryWindowLabel?: string | null;
        id: string;
        label: string;
        type?: "ship" | "pickup";
        warnings?: { code: string; field?: string; message: string }[];
    }
    Index
    amount: number
    currency: string
    deliveryMaxDays?: number | null
    deliveryMinDays?: number | null
    deliveryWindowLabel?: string | null
    id: string
    label: string
    type?: "ship" | "pickup"
    warnings?: { code: string; field?: string; message: string }[]