Files
rustfs-console/types/app-config.d.ts
T
nakrovati 94fcbd9e57 Fix PageHeader collision with Sidebar, update dependencies, and clean up code (#44)
* fix: PageHeader overlaps Sidebar on small screens

* refactor: move appName and appDescription to defineNuxtConfig

* chore: replace clipboard with vueuse useClipboard

* chore(deps): remove unused deps

* chore: bump deps

Add type conversion `... as Shape` to AutoForm and AutoFormFiledObject for compatibility with vue-tsc v3.

Add `import ‘vue-sonner/style.css’` for compatibility with vue-sonner v2.

Move @aws-sdk/types to dependencies.

Format code.
2026-01-25 09:23:27 +08:00

11 lines
171 B
TypeScript

export interface NavItem {
label: string
isAdminOnly?: boolean
to?: string
type?: string
icon?: string
target?: string
key?: string
children?: NavItem[]
}