Files
openmonetis/src/features/dashboard/bills/bills-queries.ts
2026-05-31 15:18:43 -03:00

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;
};