Interface IGroup

interface IGroup {
    color: string;
    name: string;
    parent?: Readonly<IGroupParent>;
}

Hierarchy (view full)

Properties

Properties

color: string
name: string
parent?: Readonly<IGroupParent>