ghostfolio/libs/common/src/lib/interfaces/accounts.interface.ts
Thomas Kaul 3032126508
Feature/add footer row to accounts table (#471)
* Add footer row to accounts table with total balance and value

* Update changelog
2021-11-14 17:04:52 +01:00

9 lines
198 B
TypeScript

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