9 lines
137 B
TypeScript
9 lines
137 B
TypeScript
|
import Big from 'big.js';
|
||
|
|
||
|
export interface TimelinePeriod {
|
||
|
date: string;
|
||
|
grossPerformance: Big;
|
||
|
investment: Big;
|
||
|
value: Big;
|
||
|
}
|