/**
 * A type to define the probabilities of a win
 */
interface Probabilities {
  player: number,
  opponent: number
}

export { Probabilities }
