# StructTreeNode ## Content # Type Alias: StructTreeNode ```ts type StructTreeNode = object; ``` Structure tree node. The root node will have a role "Root". ## Properties ### children ```ts children: (StructTreeNode | StructTreeContent)[]; ``` *** ### role ```ts role: "Root" | string; ```