Files
rustfs-console/types/app-config.d.ts
T
junxiang Mu c019276fcb add kms
Signed-off-by: junxiang Mu <1948535941@qq.com>
2025-09-22 14:31:07 +08:00

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;
}