mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-06-30 02:35:08 +08:00
22 lines
567 B
TypeScript
22 lines
567 B
TypeScript
// @ts-ignore
|
|
import '@@/configType';
|
|
|
|
export * from '@fesjs/runtime';
|
|
|
|
export interface RouteMeta {
|
|
name?: string;
|
|
title?: string;
|
|
layout?: boolean | { sidebar?: boolean; header?: boolean; logo?: boolean };
|
|
}
|
|
|
|
export interface PluginRuntimeConfig {}
|
|
|
|
export interface PluginBuildConfig {}
|
|
|
|
export declare function defineRouteMeta(routeMeta: RouteMeta): RouteMeta;
|
|
|
|
export declare function defineBuildConfig(config: PluginBuildConfig ): PluginBuildConfig;
|
|
|
|
export declare function defineRuntimeConfig(config: PluginRuntimeConfig): PluginRuntimeConfig;
|
|
|