Type alias BaseFeatured

BaseFeatured: WithId<{
    date: Date;
    type: FeaturedType;
    isApproved: boolean;
    isVisible: boolean;
    isSticky: boolean;
    memberId: string;
    description: string | null;
    gameId: number | null;
    gameTitle: string | null;
    gameLink: string | null;
}>

Fields which are common for all types of featured objects.

Generated using TypeDoc