import type { Account } from "./types"; /** * Calcule le solde réel d'un compte en incluant le solde initial */ export function getAccountBalance(account: Account): number { return (account.initialBalance || 0) + account.balance; }