Type alias Patron

Patron: WithId<{
    memberId: string;
    tier: PatronTier;
    username: string | null;
    avatar: string | null;
    patronId: string | null;
}>

This is a type of a single object within the collection "patrons". A single object describes a single patron.

Generated using TypeDoc