6 lines
138 B
TypeScript
6 lines
138 B
TypeScript
|
import { InvestmentItem } from './investment-item.interface';
|
||
|
|
||
|
export interface PortfolioInvestments {
|
||
|
investments: InvestmentItem[];
|
||
|
}
|