ghostfolio/libs/common/src/lib/interfaces/accounts.interface.ts
Thomas Kaul 3de7d3f60e
Bugfix/improve account calculations (#737)
* Improve account calculations

* Update changelog
2022-03-04 21:31:31 +01:00

9 lines
226 B
TypeScript

import { AccountWithValue } from '@ghostfolio/common/types';
export interface Accounts {
accounts: AccountWithValue[];
totalBalanceInBaseCurrency: number;
totalValueInBaseCurrency: number;
transactionCount: number;
}