20 lines
485 B
JavaScript
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.");
|
|
}
|
|
}
|