@valantic/spartacus-mock
Version:
This project offers you the possibility to mock the OCC Endpoints of your Composable Storefront (Spartacus). It uses the Mock Service Worker to mock the API calls.
12 lines (11 loc) • 327 B
TypeScript
import { CheckoutOccEndpoints } from '@spartacus/checkout/base/occ';
import { OccConfig } from '@spartacus/core';
interface CheckoutOccConfig extends OccConfig {
backend: {
occ: {
endpoints: CheckoutOccEndpoints;
};
};
}
export declare const occCheckoutConfig: CheckoutOccConfig;
export {};