mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-05-09 12:09:00 +08:00
22 lines
488 B
JavaScript
22 lines
488 B
JavaScript
/**
|
||
* @copy 该文件代码大部分出自 umi,有需要请参考:
|
||
* https://github.com/umijs/umi/tree/master/packages/core
|
||
*/
|
||
|
||
|
||
import Config from './config';
|
||
import Logger from './logger';
|
||
import Service from './service';
|
||
import PluginAPI from './service/pluginAPI';
|
||
import { PluginType } from './service/enums';
|
||
import { isPluginOrPreset } from './service/utils/pluginUtils';
|
||
|
||
export {
|
||
Config,
|
||
Service,
|
||
PluginAPI,
|
||
isPluginOrPreset,
|
||
PluginType,
|
||
Logger
|
||
};
|