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.
34 lines (33 loc) • 598 B
TypeScript
export interface Price_gross {
__typename: "Money";
/**
* Amount of money.
*/
amount: number;
/**
* Currency code.
*/
currency: string;
}
export interface Price_net {
__typename: "Money";
/**
* Amount of money.
*/
amount: number;
/**
* Currency code.
*/
currency: string;
}
export interface Price {
__typename: "TaxedMoney";
/**
* Amount of money including taxes.
*/
gross: Price_gross;
/**
* Amount of money without taxes.
*/
net: Price_net;
}