import { Player } from './Player'; import { Match } from './Match'; import { Options } from './Options'; export type Tournament = { lastMatchNumber: number; players: Player[]; matches: Match[]; options: Options; ended: boolean; currentRound: number; etc: any; inPlayoffs?: boolean; }; //# sourceMappingURL=Tournament.d.ts.map