mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-07 10:12:27 +08:00
Initial commit
This commit is contained in:
15
frontend/src/types/activity.ts
Normal file
15
frontend/src/types/activity.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export interface ActivityHeatmapDay {
|
||||
date: string
|
||||
requests: number
|
||||
total_tokens: number
|
||||
total_cost: number
|
||||
actual_total_cost?: number
|
||||
}
|
||||
|
||||
export interface ActivityHeatmap {
|
||||
start_date: string
|
||||
end_date: string
|
||||
total_days: number
|
||||
max_requests: number
|
||||
days: ActivityHeatmapDay[]
|
||||
}
|
||||
Reference in New Issue
Block a user