import { NzTreeNodeOptions } from "ng-zorro-antd/tree"; export declare class EmopTreeDataType { /** * 树结构数据 */ data: NzTreeNodeOptions[]; /** * 是否允许多选 */ checkable?: boolean; /** * 是否异步加载 */ async?: boolean; /** * 右键菜单 */ contextMenu?: { [key: string]: { alias: string; fn: Function; }[]; }; }