feat: basic api

This commit is contained in:
eneller
2026-03-05 23:31:56 +01:00
parent cef3474c3d
commit 0dd4b6590d
7 changed files with 83 additions and 10 deletions

View File

@@ -0,0 +1,7 @@
export interface Transaction {
id: string;
partner: string;
amount: number;
date: Date;
type: 'Sent' | 'Received';
}