@liuhlightning/wx-pay
Version:
communicate to wx pay
16 lines • 406 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.refundTransaction = refundTransaction;
/**
* 申请退款
*
* https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_9.shtml
*/
function refundTransaction(data) {
return this.request({
url: "/v3/refund/domestic/refunds",
method: "POST",
data,
});
}
//# sourceMappingURL=refund.js.map