mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-10-15 03:32:11 +08:00
22 lines
443 B
TypeScript
22 lines
443 B
TypeScript
import { FrameworkLifeCycles, MicroApp } from 'qiankun';
|
|
|
|
interface AppOption {
|
|
name: string;
|
|
entry: string;
|
|
props: Record<string, any>;
|
|
}
|
|
|
|
|
|
declare module "@fesjs/fes" {
|
|
interface PluginBuildConfig {
|
|
qiankun: {
|
|
main: {
|
|
apps: AppOption[];
|
|
lifeCycles?: FrameworkLifeCycles<MicroApp>;
|
|
[key: string]: any;
|
|
};
|
|
micro: {}
|
|
};
|
|
}
|
|
}
|