import { Match } from './match';
export interface RoundRobinPool {
    matches: Match[][];
}
