mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
26 lines
396 B
JavaScript
26 lines
396 B
JavaScript
/**
|
|
* Configuration for UI components.
|
|
*
|
|
* @file
|
|
*/
|
|
|
|
/**
|
|
* Onboarding options for StepBusiness
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const BUSINESS_TYPES = {
|
|
CASUAL_SELLER: 'casual_seller',
|
|
BUSINESS: 'business',
|
|
};
|
|
|
|
/**
|
|
* Onboarding options for StepProducts
|
|
*
|
|
* @type {Object}
|
|
*/
|
|
export const PRODUCT_TYPES = {
|
|
VIRTUAL: 'virtual',
|
|
PHYSICAL: 'physical',
|
|
SUBSCRIPTIONS: 'subscriptions',
|
|
};
|