UNPKG

@commercelayer/react-components

Version:
11 lines (10 loc) 507 B
import { type ShipmentState, type SetShipmentErrors, type setShippingMethod } from '../reducers/ShipmentReducer'; type DefaultContext = { setShipmentErrors: SetShipmentErrors; setShippingMethod?: (shipmentId: string, shippingMethodId: string) => ReturnType<typeof setShippingMethod>; } & ShipmentState; export declare const defaultShipmentContext: { setShipmentErrors: SetShipmentErrors; }; declare const ShipmentContext: import("react").Context<DefaultContext>; export default ShipmentContext;