mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-26 01:14:19 +08:00
27 lines
561 B
TypeScript
27 lines
561 B
TypeScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import { PayPalAccount } from './types';
|
|
|
|
const germany: PayPalAccount = {
|
|
email: process.env.PAYPAL_PERSONAL_EMAIL_DE,
|
|
password: process.env.PAYPAL_PERSONAL_PASS_DE,
|
|
};
|
|
|
|
const usa: PayPalAccount = {
|
|
email: process.env.PAYPAL_PERSONAL_EMAIL_US,
|
|
password: process.env.PAYPAL_PERSONAL_PASS_US,
|
|
};
|
|
|
|
const mexico: PayPalAccount = {
|
|
email: process.env.PAYPAL_PERSONAL_EMAIL_MX,
|
|
password: process.env.PAYPAL_PERSONAL_PASS_MX,
|
|
};
|
|
|
|
export const payPalAccounts: {
|
|
[ key: string ]: PayPalAccount;
|
|
} = {
|
|
germany,
|
|
usa,
|
|
mexico,
|
|
};
|