mirror of
https://github.com/rustfs/console.git
synced 2026-09-01 15:17:45 +08:00
c019276fcb
Signed-off-by: junxiang Mu <1948535941@qq.com>
17 lines
266 B
TypeScript
17 lines
266 B
TypeScript
export interface NavItem {
|
|
label: string;
|
|
to?: string;
|
|
type?: string;
|
|
icon?: string;
|
|
target?: string;
|
|
key?: string;
|
|
children?: NavItem[];
|
|
}
|
|
|
|
export interface AppConfig {
|
|
navs: NavItem[];
|
|
name: string;
|
|
description: string;
|
|
[key: string]: any;
|
|
}
|