2022-03-28 21:03:13 +08:00
|
|
|
// @ts-ignore
|
2022-06-22 19:24:49 +08:00
|
|
|
import '@@/configType';
|
2022-03-27 20:10:28 +08:00
|
|
|
|
2022-06-22 19:24:49 +08:00
|
|
|
export * from '@fesjs/runtime';
|
2022-03-09 10:27:11 +08:00
|
|
|
|
2022-06-22 19:24:49 +08:00
|
|
|
export interface RouteMeta {
|
2022-03-09 10:27:11 +08:00
|
|
|
name?: string;
|
|
|
|
title?: string;
|
2022-03-27 20:10:28 +08:00
|
|
|
}
|
|
|
|
|
2022-06-22 19:24:49 +08:00
|
|
|
export interface PluginRuntimeConfig {}
|
|
|
|
|
|
|
|
export interface PluginBuildConfig {}
|
|
|
|
|
2022-03-27 20:10:28 +08:00
|
|
|
export declare function defineRouteMeta(routeMeta: RouteMeta): RouteMeta;
|
|
|
|
|
2022-06-22 19:24:49 +08:00
|
|
|
export declare function defineBuildConfig(config: PluginBuildConfig ): PluginBuildConfig;
|
2022-03-27 20:10:28 +08:00
|
|
|
|
2022-06-22 19:24:49 +08:00
|
|
|
export declare function defineRuntimeConfig(config: PluginRuntimeConfig): PluginRuntimeConfig;
|
2022-03-28 17:07:36 +08:00
|
|
|
|