选中项数据类型

interface ISelectedItemData {
    bounding?: ElementBoundingType;
    codeId?: string;
    display?: string;
    element?: HTMLElement;
    filename?: string;
    id?: string;
    module?: string;
    name?: string;
    parents?: ISelectedItemData[];
}

Properties

codeId?: string

节点的 codeId

display?: string

元素的CSS Display 值

element?: HTMLElement
filename?: string

所属文件路径

id?: string

节点的 data-dnd 值

module?: string

使用 filename 取代

name?: string

组件名

parents?: ISelectedItemData[]