Feat/dashboard more chart (#266)

This commit is contained in:
Joel
2023-05-31 11:21:30 +08:00
committed by GitHub
parent ae94b067b3
commit 5239b2c7ab
6 changed files with 99 additions and 13 deletions

View File

@@ -83,6 +83,10 @@ export type AppDailyConversationsResponse = {
data: Array<{ date: string; conversation_count: number }>
}
export type AppStatisticsResponse = {
data: Array<{ date: string }>
}
export type AppDailyEndUsersResponse = {
data: Array<{ date: string; terminal_count: number }>
}