mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
* fix: 路由生成支持全数字 * fix: 路由生成支持全数字 * fix: 优化 layout ts * chore: remove 403 404 page route config
21 lines
487 B
TypeScript
21 lines
487 B
TypeScript
// @ts-ignore
|
|
import '@@/configType';
|
|
|
|
export * from '@fesjs/runtime';
|
|
|
|
export interface RouteMeta {
|
|
name?: string;
|
|
title?: string;
|
|
}
|
|
|
|
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;
|
|
|