usimple-saleor-sdk
Version:
This package contains all queries and mutations that are used in our sample storefront. It can be used for semi-custom or fully-custom (with ability to extend existing queries) storefront solutions.
14 lines (13 loc) • 499 B
TypeScript
import { ApolloClientManager } from "../data/ApolloClientManager";
import { LocalStorageHandler } from "../helpers/LocalStorageHandler";
import { AuthJobs } from "./Auth";
import { CheckoutJobs } from "./Checkout";
export interface IJobs {
auth: AuthJobs;
checkout: CheckoutJobs;
}
export declare class Jobs implements IJobs {
auth: AuthJobs;
checkout: CheckoutJobs;
constructor(localStorageHandler: LocalStorageHandler, apolloClientManager: ApolloClientManager);
}