import type { Ballot, VoteCandidate } from "../vote"; export type CandidateScores = Map; export type VotingMethodFunction = (candidates: VoteCandidate[], votes: Ballot[]) => CandidateScores;