mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
23 lines
431 B
TypeScript
23 lines
431 B
TypeScript
export type DashboardBill = {
|
|
id: string;
|
|
name: string;
|
|
amount: number;
|
|
dueDate: string | null;
|
|
boletoPaymentDate: string | null;
|
|
isSettled: boolean;
|
|
accountId: string | null;
|
|
transactionType: string;
|
|
};
|
|
|
|
export type BillPaymentAccountOption = {
|
|
value: string;
|
|
label: string;
|
|
logo: string | null;
|
|
};
|
|
|
|
export type DashboardBillsSnapshot = {
|
|
bills: DashboardBill[];
|
|
totalPendingAmount: number;
|
|
pendingCount: number;
|
|
};
|