Это интерфейс тоже
вот так он реализуется export class ModelTableLeagueProps implements ModelTableProps { private leagueData: LeagueData; constructor(ld: LeagueData) { this.leagueData = ld; } leagueId: number = this.leagueData.leagueId currentSeason: number = this.leagueData.currentSeason seasons: Array<number> = this.leagueData.seasons currentRound: number = this.leagueData.currentRound rounds: Array<number> = this.leagueData.rounds }
Обсуждают сегодня