mirror of https://github.com/ghostfolio/ghostfolio
1 changed files with 16 additions and 0 deletions
@ -0,0 +1,16 @@ |
|||
import { Role } from '@prisma/client'; |
|||
|
|||
export interface AdminUsersResponse { |
|||
count: number; |
|||
users: { |
|||
accountCount: number; |
|||
activityCount: number; |
|||
country: string; |
|||
createdAt: Date; |
|||
dailyApiRequests: number; |
|||
engagement: number; |
|||
id: string; |
|||
lastActivity: Date; |
|||
role: Role; |
|||
}[]; |
|||
} |
|||
Loading…
Reference in new issue