starkbank
Version:
SDK to facilitate Node integrations with Stark Bank
15 lines (13 loc) • 422 B
JavaScript
const invoice = require('./invoice.js');
const rule = require('./rule/rule.js')
exports.log = require('./log');
exports.create = invoice.create;
exports.query = invoice.query;
exports.get = invoice.get;
exports.update = invoice.update;
exports.qrcode = invoice.qrcode;
exports.pdf = invoice.pdf;
exports.payment = invoice.payment;
exports.page = invoice.page;
exports.Invoice = invoice.Invoice;
exports.Rule = rule.Rule;