UNPKG

braintree

Version:

A library for server-side integrating with Braintree.

18 lines (14 loc) 234 B
"use strict"; /** * @module local_payment_type */ /** * Enum for Local Payment types. * @readonly * @enum {string} */ const LocalPaymentType = { CRYPTO: "CRYPTO", MBWAY: "MBWAY", }; module.exports = { LocalPaymentType };