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