kindness-fund-website/lib/types.ts

10 lines
241 B
TypeScript

export interface Act {
id: string
title: string
description: string
impact: string
category: "Community" | "Environment" | "Education" | "Health" | "Other"
createdAt: Date
allocation: number // The amount of "flow" allocated
}