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