diff options
| author | Fridon <[email protected]> | 2022-06-23 00:01:12 +0400 |
|---|---|---|
| committer | Fridon <[email protected]> | 2022-06-23 00:01:12 +0400 |
| commit | 7d72153d68ea4c682266f0301aa45b4e3a9e45a9 (patch) | |
| tree | ba2b4b8937d0c7785a468fae18880762a5e6b484 /src/models/FetchedCountry.model.ts | |
| parent | be829dad070205555c514ff497fcf2eae355a6e2 (diff) | |
| download | countryfetch-7d72153d68ea4c682266f0301aa45b4e3a9e45a9.tar.xz countryfetch-7d72153d68ea4c682266f0301aa45b4e3a9e45a9.zip | |
big refactor + raw option
Diffstat (limited to 'src/models/FetchedCountry.model.ts')
| -rw-r--r-- | src/models/FetchedCountry.model.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/models/FetchedCountry.model.ts b/src/models/FetchedCountry.model.ts new file mode 100644 index 0000000..be636ff --- /dev/null +++ b/src/models/FetchedCountry.model.ts @@ -0,0 +1,9 @@ +export interface FetchedCountry { + country: string; + flag: string; + languages: string; + capital: string; + region: string; + population: number; + currencies: string; +} |
