UNPKG

shopify-storefront

Version:
15 lines 523 B
import CheckoutClient from './checkout/checkout-client'; import ProductsClient from './products/products-client'; import ShopClient from './shop/shop-client'; interface ShopifyClientSettings { storeDomain: string; accessToken: string; } export declare class ShopifyClient { readonly checkout: CheckoutClient; readonly products: ProductsClient; readonly shop: ShopClient; constructor(settings: ShopifyClientSettings); } export default ShopifyClient; //# sourceMappingURL=client.d.ts.map