UNPKG

@zuiwoxing/posisi

Version:

一款基于typescript 前端控制组件,包括(IOC,AOP,Feign,Logger,Util等)

22 lines (21 loc) 434 B
/** * *@author :<a href="mailto:zuiwoxing@qq.com">liudejian</a> *@version :Ver 1.0 *@date :2020-05-03 21:04:12 */ export declare class CommonTree { id?: number; key: string; pid?: number; label?: string; url?: string; icon?: string; checked: boolean; disabled: boolean; order: number; level: number; nodeType?: number; children: Array<CommonTree>; params?: Map<string, any>; }