Files
buildpath/match_collector/src/lib.ts
Valentin Haudiquet e1ab81854a
All checks were successful
pipeline / lint-and-format (push) Successful in 4m22s
pipeline / build-and-push-images (push) Successful in 2m11s
refactor: make match-collector export its types, and consume them in frontend
2026-04-30 00:06:53 +02:00

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'