kevinanielsen/flags-game

View on GitHub
types/Country.ts

Summary

Maintainability
A
0 mins
Test Coverage
type TCountry = {
  country: string[];
  countryCode: string;
  flagSvg: string;
  flagPng: string;
};

export default TCountry;