import api from './api' import type { InvestmentHolding, InvestmentPerformance } from '@/types' export const investmentsApi = { getHoldings: (accountId: string) => api.get(`/investments/${accountId}/holdings`), getPerformance: (accountId: string) => api.get(`/investments/${accountId}/performance`), }