Refactor value to valueInBaseCurrency (#2160)

This commit is contained in:
Thomas Kaul
2023-07-18 21:29:08 +02:00
committed by GitHub
parent 9c0f46b587
commit 455a2d2e92
7 changed files with 72 additions and 47 deletions

View File

@@ -30,6 +30,6 @@ export interface PortfolioPosition {
symbol: string;
type?: string;
url?: string;
value?: number;
valueInBaseCurrency?: number;
valueInPercentage?: number;
}

View File

@@ -17,7 +17,7 @@ export interface PortfolioPublicDetails {
| 'sectors'
| 'symbol'
| 'url'
| 'value'
| 'valueInBaseCurrency'
| 'valueInPercentage'
>;
};