Files
fakemoney/shared/interfaces/transaction.ts
2026-03-05 23:31:56 +01:00

7 lines
126 B
TypeScript

export interface Transaction {
id: string;
partner: string;
amount: number;
date: Date;
type: 'Sent' | 'Received';
}