UNPKG

expense-manager-react

Version:

A comprehensive expense tracking application built with React, TypeScript, and Supabase

11 lines (10 loc) 244 B
export interface Expense { id: string; user_id: string; date: Date; category: string; description: string; amount: number; created_at: Date; } export type NewExpense = Omit<Expense, 'id' | 'user_id' | 'created_at'>;