feat: favorites — type, mock data, and buttons on player/shop detail pages

This commit is contained in:
zetaloop
2026-02-20 18:35:14 +08:00
parent 1938f9041d
commit 91d1694bcd
5 changed files with 63 additions and 2 deletions
+8
View File
@@ -192,3 +192,11 @@ export interface WalletTransaction {
description: string
createdAt: string
}
export interface Favorite {
id: string
userId: string
targetType: "player" | "shop"
targetId: string
createdAt: string
}