Type alias Award

Award: WithId<{
    name: string;
    description: string;
    img: string;
    children: string[] | null;
    category: string;
    requirements: AwardRequirement[];
    isStackable: boolean;
    isEnabled: boolean;
    isLegacy: boolean;
}>

This is a type of a single object within the collection "awards". A single object describes a single award.

Generated using TypeDoc