UNPKG

usimple-saleor-sdk

Version:

This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.

7 lines (6 loc) 505 B
import { ICheckoutModelLine, ICheckoutModelPrice, ICheckoutModelPriceValue } from "../../helpers/LocalStorageHandler"; export declare type IItems = ICheckoutModelLine[] | null | undefined; export declare type ITotalPrice = ICheckoutModelPrice | null | undefined; export declare type ISubtotalPrice = ICheckoutModelPrice | null | undefined; export declare type IShippingPrice = ICheckoutModelPriceValue | null | undefined; export declare type IDiscount = ICheckoutModelPriceValue | null | undefined;