UNPKG

shopify-storefront

Version:
16 lines 544 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; cache?: number; } export declare class ShopifyClient { readonly checkout: CheckoutClient; readonly products: ProductsClient; readonly shop: ShopClient; constructor(settings: ShopifyClientSettings); } export default ShopifyClient; //# sourceMappingURL=client.d.ts.map