| 7 | } |
| 8 | |
| 9 | export interface GameTypeConfig { |
| 10 | advancedLearningQuests: boolean; |
| 11 | allowTrades: boolean; |
| 12 | banMode: string; |
| 13 | banTimerDuration: number; |
| 14 | battleBoost: boolean; |
| 15 | crossTeamChampionPool: boolean; |
| 16 | deathMatch: boolean; |
| 17 | doNotRemove: boolean; |
| 18 | duplicatePick: boolean; |
| 19 | exclusivePick: boolean; |
| 20 | id: number; |
| 21 | learningQuests: boolean; |
| 22 | mainPickTimerDuration: number; |
| 23 | maxAllowableBans: number; |
| 24 | name: string; |
| 25 | onboardCoopBeginner: boolean; |
| 26 | pickMode: string; |
| 27 | postPickTimerDuration: number; |
| 28 | reroll: boolean; |
| 29 | teamChampionPool: boolean; |
| 30 | } |
| 31 | |
| 32 | export interface QueueReward { |
| 33 | isChampionPointsEnabled: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected