oak-pay-business/es/utils/payClazz/WechatPay/WechatPay.js

20 lines
485 B
JavaScript

export default 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.");
}
}