mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Add footer row to accounts table with total balance and value * Update changelogpull/472/head
committed by
GitHub
13 changed files with 123 additions and 34 deletions
@ -0,0 +1,8 @@ |
|||
import { AccountWithValue } from '@ghostfolio/common/types'; |
|||
|
|||
export interface Accounts { |
|||
accounts: AccountWithValue[]; |
|||
totalBalance: number; |
|||
totalValue: number; |
|||
transactionCount: number; |
|||
} |
Loading…
Reference in new issue