import { TournamentTeamStatus } from '@natrave/tournaments-service-types'; import { Team } from '../../teams'; import { TournamentGroup } from '../tournament-groups'; import { TournamentMatchCard } from '../tournament-match-cards'; import { TournamentMatchGoal } from '../tournament-match-goals'; import { TournamentMatch } from '../tournament-matches'; import { TournamentPenaltyShootout } from '../tournament-penalty-shootouts'; import { TournamentPlayer } from '../tournament-players'; import { Tournament } from '../tournaments'; export declare class TournamentTeam { id: number; teamId: number | null; tournamentId: number; groupId?: number | null; status: TournamentTeamStatus; createdAt: Date; updatedAt: Date; team?: Team | null; tournament: Tournament; tournamentGroup?: TournamentGroup | null; players: TournamentPlayer[]; homeMatches: TournamentMatch[]; awayMatches: TournamentMatch[]; forfeitedMatches: TournamentMatch[]; goals: TournamentMatchGoal[]; cards: TournamentMatchCard[]; wonShootouts: TournamentPenaltyShootout[]; } //# sourceMappingURL=tournament-team.entity.d.ts.map