mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
17 lines
343 B
TypeScript
17 lines
343 B
TypeScript
export type InstallmentExpense = {
|
|
id: string;
|
|
name: string;
|
|
amount: number;
|
|
paymentMethod: string;
|
|
currentInstallment: number | null;
|
|
installmentCount: number | null;
|
|
dueDate: Date | null;
|
|
purchaseDate: Date;
|
|
period: string;
|
|
isSettled: boolean | null;
|
|
};
|
|
|
|
export type InstallmentExpensesData = {
|
|
expenses: InstallmentExpense[];
|
|
};
|