feat(frontend): add enrichment fields to Portfolio type

This commit is contained in:
Sergey Krylov 2026-06-14 14:12:20 +03:00
parent a8b3b55896
commit 7b3b77f35e

View File

@ -142,6 +142,10 @@ export interface Portfolio {
currency: string;
createdAt: string;
updatedAt: string;
totalValue: number;
positionCount: number;
shareCount: number;
bondCount: number;
}
export interface PositionWithPrice {