fansunited-sdk-esm 1.25.0 → 1.26.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import FootballCountryModel from "../Country/FootballCountryModel";
|
|
2
2
|
import CompetitionBasicModel from "../Competition/CompetitionBasicModel";
|
|
3
3
|
import PlayerSquadModel from "../Player/PlayerSquadModel";
|
|
4
|
+
import TeamColors from "./TeamColors";
|
|
4
5
|
export default class TeamFullModel {
|
|
5
6
|
id: string;
|
|
6
7
|
country: FootballCountryModel;
|
|
@@ -12,5 +13,6 @@ export default class TeamFullModel {
|
|
|
12
13
|
national: boolean;
|
|
13
14
|
fullName: string;
|
|
14
15
|
shortName: string;
|
|
16
|
+
colors: TeamColors;
|
|
15
17
|
squad: PlayerSquadModel[];
|
|
16
18
|
}
|