UNPKG

efi-easy-pix

Version:

A simple Node.js module for integrating with Efipay's PIX API

17 lines (16 loc) 382 B
/** * Options for creating a QR Code */ class QRCodeOptions { /** * @param {string} content - The PIX QR Code content (copy and paste code) * @param {string} base64 - Base64 encoded QR Code image */ constructor(content, base64) { this.content = content; this.base64 = base64; } } module.exports = { QRCodeOptions };