mirror of https://github.com/ghostfolio/ghostfolio
Browse Source
* Add endpoint for account balances * Update changelog --------- Co-authored-by: Pavol Kolcun <pavol.kolcun@student.tuke.sk> Co-authored-by: Thomas <4159106+dtslvr@users.noreply.github.com>pull/2493/head^2
Pavol Kolcun
1 year ago
committed by
GitHub
5 changed files with 55 additions and 1 deletions
@ -0,0 +1,5 @@ |
|||
import { AccountBalance } from '@prisma/client'; |
|||
|
|||
export interface AccountBalancesResponse { |
|||
balances: Pick<AccountBalance, 'date' | 'id' | 'value'>[]; |
|||
} |
Loading…
Reference in new issue