shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
15 lines • 523 B
TypeScript
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