mirror of
https://github.com/rustfs/console.git
synced 2026-08-28 19:47:21 +08:00
10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
export interface NavItem {
|
|
label: string
|
|
to?: string
|
|
type?: string
|
|
icon?: string
|
|
target?: string
|
|
key?: string
|
|
children?: NavItem[]
|
|
}
|