ghostfolio/libs/common/src/lib/interfaces/accounts.interface.ts

9 lines
198 B
TypeScript
Raw Normal View History

import { AccountWithValue } from '@ghostfolio/common/types';
export interface Accounts {
accounts: AccountWithValue[];
totalBalance: number;
totalValue: number;
transactionCount: number;
}