Interface IGroupParent

interface IGroupParent {
    color: string;
    name: string;
    parent?: Readonly<IGroupParent>;
    subGroups: (Readonly<IGroupParent> | Readonly<IGroup>)[];
}

Hierarchy (view full)

Properties

color: string
name: string
parent?: Readonly<IGroupParent>
subGroups: (Readonly<IGroupParent> | Readonly<IGroup>)[]