import { ITournamentFacility } from '@natrave/tournaments-service-types'; import { Facility } from '../../facilities'; import { TournamentMatch } from '../tournament-matches'; import { Tournament } from '../tournaments'; export declare class TournamentFacility implements ITournamentFacility { id: number; facilityId: number; tournamentId: number; createdAt: Date; updatedAt: Date; tournament: Tournament; facility: Facility; matches: TournamentMatch[]; } //# sourceMappingURL=tournament-facility.entity.d.ts.map