mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
21 lines
589 B
TypeScript
21 lines
589 B
TypeScript
// @ts-ignore
|
|
import type { PluginRuntimeConfig, PluginBuildConfig } from '@@/configType';
|
|
|
|
// @ts-ignore
|
|
export * from '@@/core/coreExports';
|
|
// @ts-ignore
|
|
export * from '@@/core/pluginExports';
|
|
|
|
interface RouteMeta {
|
|
name?: string;
|
|
title?: string;
|
|
layout?: boolean | { sidebar?: boolean; header?: boolean; logo?: boolean };
|
|
}
|
|
|
|
export declare function defineRouteMeta(routeMeta: RouteMeta): RouteMeta;
|
|
|
|
export function defineBuildConfig(config: PluginBuildConfig ): PluginBuildConfig;
|
|
|
|
export function defineRuntimeConfig(config: PluginRuntimeConfig): PluginRuntimeConfig;
|
|
|