oak-general-business/lib/features/weiXinJsSdk.native.js

24 lines
635 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.WeiXinJsSdk = void 0;
const oak_frontend_base_1 = require("oak-frontend-base");
class WeiXinJsSdk extends oak_frontend_base_1.Feature {
cache;
storage;
constructor(cache, storage) {
super();
this.cache = cache;
this.storage = storage;
}
wxConfig() {
console.warn('native无需该操作');
}
async initWeiXinJsSDK() {
console.warn('native无需该操作');
}
async loadWeiXinJsSDK() {
console.warn('native无需该操作');
}
}
exports.WeiXinJsSdk = WeiXinJsSdk;