1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
export interface Need { name: string, id: number, filterAttributes: string[], location: string; type: GoalType; maxGoal: number; current: number; urgent: boolean; } export enum GoalType { MONETARY, PHYSICAL }