shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
15 lines • 532 B
TypeScript
import IAttribute from './IAttribute';
import IBuyerIdentity from './IBuyerIdentity';
import ILineItem from './ILineItem';
import IShippingAddress from './IShippingAddress';
export interface ICreateCheckoutProps {
email?: string;
lineItems: ILineItem[];
shippingAddress?: IShippingAddress;
note?: string;
customAttributes: IAttribute[];
allowPartialAddreses?: boolean;
buyerIdentity?: IBuyerIdentity;
}
export default ICreateCheckoutProps;
//# sourceMappingURL=ICheckoutCreateProps.d.ts.map