Type alias Season

Season: WithId<{
    name: string;
    description: string;
    icon: string;
    startDate: Date | null;
    endDate: Date | null;
    isSpecial: boolean;
    isVisible: boolean;
}>

This is a type of a single object within the collection seasons. A single object describes a single race season.

Generated using TypeDoc