ghostfolio/libs/common/src/lib/interfaces/admin-data.interface.ts

16 lines
343 B
TypeScript
Raw Normal View History

2021-04-13 21:53:58 +02:00
export interface AdminData {
2021-04-18 20:12:58 +02:00
exchangeRates: { label1: string; label2: string; value: number }[];
lastDataGathering: Date | 'IN_PROGRESS';
transactionCount: number;
userCount: number;
users: {
2021-04-18 20:21:39 +02:00
alias: string;
createdAt: Date;
Analytics: {
activityCount: number;
updatedAt: Date;
2021-04-13 21:53:58 +02:00
};
2021-04-18 20:21:39 +02:00
id: string;
2021-04-13 21:53:58 +02:00
}[];
}