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