23 lines
576 B
JavaScript
23 lines
576 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
class WechatPay {
|
|
channel;
|
|
constructor(channel, appId, config) {
|
|
// todo
|
|
this.channel = channel;
|
|
}
|
|
prepay(pay, data, context) {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
getState(pay) {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
close(pay) {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
decodeNotification(params, body) {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
}
|
|
exports.default = WechatPay;
|