mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
13 lines
424 B
JavaScript
13 lines
424 B
JavaScript
/**
|
||
* @copy 该文件代码大部分出自 umi,有需要请参考:
|
||
* https://github.com/umijs/umi/tree/master/packages/core
|
||
*/
|
||
|
||
import Config from './config';
|
||
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 };
|