mirror of https://github.com/ghostfolio/ghostfolio
Thomas Kaul
3 years ago
committed by
GitHub
10 changed files with 101 additions and 9 deletions
Before Width: | Height: | Size: 22 KiB After Width: | Height: | Size: 289 KiB |
@ -1,10 +1,16 @@ |
|||||
import { PortfolioPosition } from '@ghostfolio/common/interfaces'; |
import { PortfolioPosition } from '@ghostfolio/common/interfaces'; |
||||
|
|
||||
export interface PortfolioPublicDetails { |
export interface PortfolioPublicDetails { |
||||
|
hasDetails: boolean; |
||||
holdings: { |
holdings: { |
||||
[symbol: string]: Pick< |
[symbol: string]: Pick< |
||||
PortfolioPosition, |
PortfolioPosition, |
||||
'allocationCurrent' | 'countries' | 'name' | 'sectors' | 'value' |
| 'allocationCurrent' |
||||
|
| 'countries' |
||||
|
| 'currency' |
||||
|
| 'name' |
||||
|
| 'sectors' |
||||
|
| 'value' |
||||
>; |
>; |
||||
}; |
}; |
||||
} |
} |
||||
|
Loading…
Reference in new issue