@commercelayer/react-components
Version:
The Official Commerce Layer React Components
10 lines (9 loc) • 424 B
TypeScript
import type { DeliveryLeadTime, ShippingMethod } from '@commercelayer/sdk';
export interface InitialShippingMethodContext {
shippingMethod?: ShippingMethod;
deliveryLeadTimeForShipment?: DeliveryLeadTime;
currentShippingMethodId?: string;
shipmentId?: string;
}
declare const ShippingMethodChildrenContext: import("react").Context<InitialShippingMethodContext>;
export default ShippingMethodChildrenContext;