/** The signed-in user's profile as rendered by the Profile page and the * sidebar -- nulls mean "not set". */ export interface ProfileDTO { firstName: string | null; lastName: string | null; avatar: string | null; }