shopify-storefront
Version:
Wrapper for the Shopify's Storefront API.
9 lines • 369 B
TypeScript
import { GraphQLClient } from '../../graphql';
import ICreateCheckoutProps from './interfaces/ICheckoutCreateProps';
declare class CheckoutClient {
private readonly graphql;
constructor(graphql: GraphQLClient);
createCheckout(props: ICreateCheckoutProps): Promise<void>;
}
export default CheckoutClient;
//# sourceMappingURL=checkout-client.d.ts.map