9 lines
226 B
TypeScript
9 lines
226 B
TypeScript
import { AccountWithValue } from '@ghostfolio/common/types';
|
|
|
|
export interface Accounts {
|
|
accounts: AccountWithValue[];
|
|
totalBalanceInBaseCurrency: number;
|
|
totalValueInBaseCurrency: number;
|
|
transactionCount: number;
|
|
}
|