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.
24 lines (23 loc) • 479 B
TypeScript
export interface ShippingMethod_price {
__typename: "Money";
/**
* Currency code.
*/
currency: string;
/**
* Amount of money.
*/
amount: number;
}
export interface ShippingMethod {
__typename: "ShippingMethod";
/**
* The ID of the object.
*/
id: string;
name: string;
/**
* The price of the cheapest variant (including discounts).
*/
price: ShippingMethod_price | null;
}