• File: constants.js
  • Full Path: /home/chassiw/www/wp-content/plugins/woocommerce/packages/woocommerce-blocks/assets/js/data/cart/constants.js
  • File size: 279 bytes
  • MIME-type: text/plain
  • Charset: utf-8
/**
 * External dependencies
 */
import { __ } from '@wordpress/i18n';

export const STORE_KEY = 'wc/store/cart';
export const CART_API_ERROR = {
	code: 'cart_api_error',
	message: __(
		'Unable to get cart data from the API.',
		'woocommerce'
	),
	data: {
		status: 500,
	},
};