@spree/storefront-api-v2-sdk
Version:
Node module to easily integrate your JavaScript or TypeScript application with Spree API V2. You can create an entirely custom Storefront in JS/TS with this package including one page checkout, Single Page Apps, PWAs and so on
9 lines (8 loc) • 364 B
TypeScript
import Client, { IClientConfig } from './Client';
import * as errors from './errors';
import Result from './helpers/Result';
import Http from './Http';
import * as routes from './routes';
import * as endpoints from './endpoints';
declare const makeClient: (config?: IClientConfig) => Client;
export { Client, Http, Result, errors, makeClient, endpoints, routes };