UNPKG

@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) 303 B
import { CartOccEndpoints } from '@spartacus/cart/base/occ'; import { OccConfig } from '@spartacus/core'; interface CartOccConfig extends OccConfig { backend: { occ: { endpoints: CartOccEndpoints; }; }; } export declare const occCartConfig: CartOccConfig; export {};