declare global { type ChampionsResponse = { data: Ref> } type ChampionResponse = { data: Ref } type Champion = { name: string alias: string squarePortraitPath: string } type ChampionFull = { name: string alias: string squarePortraitPath: string title: string } type ItemResponse = { data: Ref> } type Item = { id: number } type PerksResponse = { data: Ref> } type Perk = { id: number name: string iconPath: string } type PerkStylesResponse = { data: Ref<{styles: Array}> } type PerkStyle = { id: number name: string iconPath: string slots: Array<{perks:Array}> } } export {}