Skip to content

Commit d6d46f5

Browse files
committed
refactor(_nav.ts): NavData interface semicolons
1 parent 243cc66 commit d6d46f5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/app/_nav.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
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,
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;
1212
}
1313

1414
export const navItems: NavData[] = [

0 commit comments

Comments
 (0)