2024-11-11 10:04:00 +08:00
|
|
|
import type { AdvancedListItem } from "@/types/common"
|
2024-09-21 02:25:23 +08:00
|
|
|
|
|
|
|
|
export interface SteamUser extends AdvancedListItem {
|
2025-03-23 21:55:17 +08:00
|
|
|
steam_id64: BigInt
|
|
|
|
|
steam_id32: number
|
|
|
|
|
account_name: string
|
|
|
|
|
persona_name: string
|
2024-09-21 02:25:23 +08:00
|
|
|
recent: number
|
|
|
|
|
avatar: string
|
|
|
|
|
}
|