interface AccountEntries {
    list_entries_line: AccountEntryLine[];
    thisAccount: { id: number; label: string; number: string };
    total_credit: number;
    total_debit: number;
}

Properties

list_entries_line: AccountEntryLine[]
thisAccount: { id: number; label: string; number: string }
total_credit: number
total_debit: number