mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 11:18:54 +08:00
20 lines
479 B
TypeScript
20 lines
479 B
TypeScript
export * from '@@/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;
|
|
|