18 lines
291 B
TypeScript
18 lines
291 B
TypeScript
|
|
declare const ux: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
};
|
||
|
|
declare const skylineUx: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
};
|
||
|
|
export { ux, skylineUx };
|