parent
e7fb31d1a6
commit
1397cd62a8
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