* Upgrade http-status-codes to version 2.2.0 * Make the data provider warning more discreet * Update changelog
9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import { HistoricalDataItem } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position-detail.interface';
|
|
|
|
export interface PortfolioChart {
|
|
hasError: boolean;
|
|
isAllTimeHigh: boolean;
|
|
isAllTimeLow: boolean;
|
|
chart: HistoricalDataItem[];
|
|
}
|