import { CountriesResponse } from './models/countries-response.interface'; async function getCountries(): Promise<CountriesResponse> { const response = await fetch(...); if (response.ok) { return response.json(); } throw response; } export const countriesService = { getCountries };