We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286cb25 commit f956944Copy full SHA for f956944
src/app/_nav.ts
@@ -1,4 +1,17 @@
1
-export const navItems = [
+export interface NavData {
2
+ name?: string,
3
+ url?: string,
4
+ icon?: string,
5
+ badge?: any,
6
+ title?: boolean,
7
+ children?: any,
8
+ variant?: string,
9
+ attributes?: object,
10
+ divider?: boolean,
11
+ class?: string,
12
+}
13
+
14
+export const navItems: NavData[] = [
15
{
16
name: 'Dashboard',
17
url: '/dashboard',
0 commit comments