调整文件位置

This commit is contained in:
Wang Kejun 2022-05-24 17:48:04 +08:00
parent ed1f939121
commit 50e3da3bd6
6 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
import { AmapInstance } from './Amap';
import { AmapInstance } from './service/amap/Amap';
class AmapSDK {
webKeyMap: Record<string, AmapInstance>;

View File

@ -1,4 +1,4 @@
import { WechatMpInstance } from './WechatMp';
import { WechatMpInstance } from './service/wechat/WechatMp';
class WechatSDK {
mpMap: Record<string, WechatMpInstance>;

View File

@ -1,5 +1,5 @@
import WechatSDK from './WechatSDK';
import AmapSDK from './AmapSDK';
export * from './Amap';
export * from './service/amap/Amap';
export { WechatSDK, AmapSDK };