build: tsconfig shared/

This commit is contained in:
eneller
2026-03-05 23:39:42 +01:00
parent 0dd4b6590d
commit 4f206d9ad9
5 changed files with 24 additions and 3 deletions

View File

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