2021-08-21 15:03:55 +02:00
|
|
|
import { PortfolioPosition } from '@ghostfolio/common/interfaces';
|
|
|
|
|
|
|
|
export interface PortfolioDetails {
|
|
|
|
accounts: {
|
2021-12-02 21:53:38 +01:00
|
|
|
[name: string]: {
|
|
|
|
balance: number;
|
|
|
|
currency: string;
|
|
|
|
current: number;
|
|
|
|
original: number;
|
|
|
|
};
|
2021-08-21 15:03:55 +02:00
|
|
|
};
|
|
|
|
holdings: { [symbol: string]: PortfolioPosition };
|
|
|
|
}
|