18 lines
303 B
TypeScript
18 lines
303 B
TypeScript
|
|
declare const list: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
}[];
|
||
|
|
declare const skylineList: {
|
||
|
|
name: string;
|
||
|
|
icon: string;
|
||
|
|
childArr: {
|
||
|
|
name: string;
|
||
|
|
label: string;
|
||
|
|
}[];
|
||
|
|
}[];
|
||
|
|
export { list, skylineList };
|