mirror of
https://github.com/ershisan99/www.git
synced 2026-01-05 12:35:28 +00:00
fix caching
This commit is contained in:
@@ -57,11 +57,16 @@ export type Data = {
|
||||
winrate: number
|
||||
}
|
||||
|
||||
export type LeaderboardEntry = {
|
||||
export type LeaderboardEntryInternal = {
|
||||
id: string
|
||||
data: Data
|
||||
name: string
|
||||
}
|
||||
export type LeaderboardResponse = {
|
||||
alltime: LeaderboardEntry[]
|
||||
alltime: LeaderboardEntryInternal[]
|
||||
}
|
||||
|
||||
export type LeaderboardEntry = Data & {
|
||||
id: string
|
||||
name: string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user