18 lines
295 B
TypeScript
18 lines
295 B
TypeScript
|
|
declare const nav: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
};
|
||
|
|
declare const skylineNav: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
};
|
||
|
|
export { nav, skylineNav };
|