import { IAttributes } from "./IAttributes"; import { IBase } from "./IBase"; export interface IHTMLElement extends IBase { active?: boolean; attributes?: IAttributes; dsType?: string; elements?: IHTMLElement[]; groupId?: string; order?: string; parentId?: string; section?: string; tag?: string; visible?: boolean; }