Represents a part of a lineup that contains a list of role cards.

0.9.0 - Added hidden property, used to hide sections instead of deleting them.

0.4.0

interface LineupSection {
    name: string;
    roleCards: LineupRoleCard[];
    hidden?: boolean;
}

Properties

name: string

The name of the lineup section.

roleCards: LineupRoleCard[]
hidden?: boolean

Whether the section is hidden in presentation mode.