28 lines
442 B
TypeScript
28 lines
442 B
TypeScript
/**
|
|
* Match Collector Library
|
|
* Exports all shared types for use by other projects (e.g., frontend)
|
|
*/
|
|
|
|
// Export all types
|
|
export type {
|
|
ItemTag,
|
|
GoldAdvantageTag,
|
|
PlatformCounts,
|
|
ItemTree,
|
|
Rune,
|
|
ItemCountEntry,
|
|
FirstBackItemSetEntry,
|
|
ItemSet,
|
|
FirstBackGroup,
|
|
Build,
|
|
Builds,
|
|
MatchupData,
|
|
SummonerSpellData,
|
|
LaneData,
|
|
ChampionData,
|
|
ChampionSummary,
|
|
Champion,
|
|
BackEvent,
|
|
FirstBackData
|
|
} from './types'
|