@togtokh.dev/monpay
Version:
monpay is a library for payment gateway.
30 lines (29 loc) • 622 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const auth_1 = require("./auth");
const invoice_1 = require("./invoice");
const branch_1 = require("./branch");
const config = {
id: "",
client_id: "",
client_secret: "",
username: "",
password: "",
};
let token = "";
let BranchToken = "";
let host = "";
let hosts = {
staging: "https://z-wallet.monpay.mn",
prod: "https://wallet.monpay.mn",
};
exports.default = {
token,
BranchToken,
config,
hosts,
host,
auth: auth_1.default,
invoice: invoice_1.default,
branch: branch_1.default,
};