import { ICurrency } from './Currency'; import { IAccountType } from './Account'; export interface ICompleteAccount { iban: string | null; number: string | null; currency: ICurrency; type: IAccountType; id: string; isFavourite: boolean | null; name: string; balance: number; }