ghostfolio/apps/api/src/app/admin/interfaces/admin-data.interface.ts

15 lines
321 B
TypeScript
Raw Normal View History

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