2022-11-10 17:48:34 +08:00
|
|
|
export * from '@@/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 {}
|
|
|
|
|
2022-12-07 10:20:39 +08:00
|
|
|
export interface PluginBuildConfig {
|
|
|
|
builder?: string,
|
|
|
|
}
|
2022-06-22 19:24:49 +08:00
|
|
|
|
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
|
|
|
|