import { BigNumberInput } from "@medusajs/framework/types"; export interface CreateShippingMethodDTO { name: string; shippingMethod_id: string; amount: BigNumberInput; data?: Record; } export interface UpdateShippingMethodDTO { id: string; name?: string; amount?: BigNumberInput; data?: Record; } //# sourceMappingURL=shipping-method.d.ts.map