6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
|
export interface PortfolioPerformance {
|
||
|
currentGrossPerformance: number;
|
||
|
currentGrossPerformancePercent: number;
|
||
|
currentValue: number;
|
||
|
}
|