cross-magic
Version:
跨平台公共模块
32 lines (28 loc) • 919 B
text/typescript
import Application from './core/app/application'
import EventDispatcher from './core/base/event/eventDispatcher'
import ApplicationConfig from './core/app/applicationConfig'
import UiConfig from './core/mgrs/ui/uiConfig'
import UiMgr from './core/mgrs/ui/uiMgr'
import EnvConfig from './core/mgrs/env/envConfig'
import EnvMgr from './core/mgrs/env/envMgr'
import NativeConfig from './core/mgrs/native/nativeConfig'
import NativeMgr from './core/mgrs/native/nativeMgr'
import NetworkConfig from './core/mgrs/network/networkConfig'
import NetworkMgr from './core/mgrs/network/networkMgr'
import StorageConfig from './core/mgrs/storage/storageConfig'
import StorageMgr from './core/mgrs/storage/storageMgr'
export default Application
export {
EventDispatcher,
ApplicationConfig,
UiConfig,
UiMgr,
EnvConfig,
EnvMgr,
NativeConfig,
NativeMgr,
NetworkConfig,
NetworkMgr,
StorageConfig,
StorageMgr
}