15 lines
319 B
TypeScript
15 lines
319 B
TypeScript
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
|
|
|
export interface PortfolioDetails {
|
|
accounts: {
|
|
[id: string]: {
|
|
balance: number;
|
|
currency: string;
|
|
current: number;
|
|
name: string;
|
|
original: number;
|
|
};
|
|
};
|
|
holdings: { [symbol: string]: PortfolioPosition };
|
|
}
|