24 lines
624 B
JavaScript
24 lines
624 B
JavaScript
import { Feature } from 'oak-frontend-base/es/types/Feature';
|
|
export class WechatSdk extends Feature {
|
|
cache;
|
|
storage;
|
|
constructor(cache, storage) {
|
|
super();
|
|
this.cache = cache;
|
|
this.storage = storage;
|
|
}
|
|
wxConfig() {
|
|
console.error('native无需该操作');
|
|
}
|
|
async initWeiXinJsSDK() {
|
|
console.error('native无需该操作');
|
|
}
|
|
async loadWeiXinJsSDK() {
|
|
console.error('native无需该操作');
|
|
}
|
|
async subscribeMpMessage(messageTypes, haveToAccept, tip) {
|
|
console.error('native无需该操作');
|
|
return true;
|
|
}
|
|
}
|