export interface Need { name: string, id: number, filterAttributes: string[], location: string; type: GoalType; maxGoal: number; current: number; urgent: boolean; } export enum GoalType { MONETARY, PHYSICAL }