epn-ui
Version:
Дизайн система кабинета ВМ
25 lines (24 loc) • 439 B
TypeScript
export declare const items: ({
key: string;
title: string;
children: {
key: string;
title: string;
}[];
} | {
key: string;
title: string;
children?: undefined;
})[];
export declare const customItems: ({
id: string;
value: string;
subs?: undefined;
} | {
id: string;
value: string;
subs: {
id: string;
value: string;
}[];
})[];