UNPKG

@shopgate/pwa-common-commerce

Version:

Commerce library for the Shopgate Connect PWA.

10 lines (9 loc) 294 B
import { main$ } from '@shopgate/pwa-common/streams/main'; import { SUCCESS_CHECKOUT } from "../constants"; /** * Gets triggered when the checkout has been completed. * @type {Observable} */ export const checkoutSucceeded$ = main$.filter(({ action }) => action.type === SUCCESS_CHECKOUT);