Update Expense interface to use new card and show_value fields

This commit is contained in:
qowevisa 2024-11-24 11:35:15 +02:00
parent 98765a3d2d
commit 089cdf067e

View File

@ -37,6 +37,8 @@ export interface Expense {
value: number; value: number;
comment: string; comment: string;
date: string; date: string;
card: Card;
show_value: string;
} }
export interface Income { export interface Income {