ghostfolio/libs/common/src/lib/interfaces/portfolio-investments.interface.ts
Thomas Kaul a65424aafa
Feature/add total amount chart to investment timeline (#1344)
* Add total amount chart

* Update changelog
2022-10-15 17:45:34 +02:00

6 lines
138 B
TypeScript

import { InvestmentItem } from './investment-item.interface';
export interface PortfolioInvestments {
investments: InvestmentItem[];
}