| 2 | import {RencentDataAnalysisTypes} from "@/main/views/teammate/teammateTypes"; |
| 3 | |
| 4 | export interface SummonerAnaInfo { |
| 5 | name: string; |
| 6 | summonerId: string; |
| 7 | queueId: number; |
| 8 | isThumbUp: boolean; |
| 9 | showType: boolean; |
| 10 | imgUrl: string; |
| 11 | rankList: string[]; |
| 12 | matchList: SimpleMatchTypes[]; |
| 13 | matchAnalysis: RencentDataAnalysisTypes; |
| 14 | openDetailDrawer: (gameId:number,summonerId:number) => void; |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected