aboutsummaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'src/models')
-rw-r--r--src/models/FetchedCountry.model.ts1
-rw-r--r--src/models/country.model.ts1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/models/FetchedCountry.model.ts b/src/models/FetchedCountry.model.ts
index af80281..a53482e 100644
--- a/src/models/FetchedCountry.model.ts
+++ b/src/models/FetchedCountry.model.ts
@@ -10,4 +10,5 @@ export interface FetchedCountry {
population: string;
currencies: string;
timezones: string;
+ tld: string;
}
diff --git a/src/models/country.model.ts b/src/models/country.model.ts
index 7866187..61e0dfc 100644
--- a/src/models/country.model.ts
+++ b/src/models/country.model.ts
@@ -34,4 +34,5 @@ export interface Country {
capitalInfo: {
latlng: number[];
};
+ tld: string[];
}