| 28 | title: string; |
| 29 | description: string; |
| 30 | originalPrice: string; |
| 31 | startDate: string; |
| 32 | endDate: string; |
| 33 | url: string; |
| 34 | imageUrl: string; |
| 35 | } |
| 36 | |
| 37 | // 解析限免游戏数据 |
| 38 | function parseFreeGames(data: any): { current: EpicGame[]; upcoming: EpicGame[] } { |
| 39 | const current: EpicGame[] = []; |
| 40 | const upcoming: EpicGame[] = []; |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected