metafide-surge
Version:
Metafide Surge Game Computation
18 lines (16 loc) • 309 B
text/typescript
// Export types
export type {
RangeGame,
SpotGame,
RangePlayer,
SpotPlayer,
ComputedData,
AllocationPercentages,
} from './types';
// Export functions
export {
calculateSpotPotDistribution,
calculateRangePotDistribution,
computeRangeWinnings,
computeSpotWinnings,
} from './computation';