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.
6 lines (5 loc) • 344 B
TypeScript
import { ApolloErrorWithUserInput } from "../react/types";
export declare class QueuedJobsHandler<ErrorTypes> {
protected onErrorListener: ((error: ApolloErrorWithUserInput | any, type: ErrorTypes) => any) | undefined;
attachErrorListener(onErrorListener: (error: ApolloErrorWithUserInput | any, type: ErrorTypes) => any): void;
}