UNPKG

toefungi-elo-calculator

Version:

A package to do all necessary computations to determine ELO rankings

9 lines 202 B
/** * A type to define the probabilities of a win */ interface Probabilities { player: number; opponent: number; } export { Probabilities }; //# sourceMappingURL=Probabilities.d.ts.map