From 3f7cd99f273af00723dddc153b22d8252cabb15e Mon Sep 17 00:00:00 2001 From: Mehmet Can Farsak <32980057+mehmetcanfarsak@users.noreply.github.com> Date: Mon, 25 Mar 2024 03:35:02 +0300 Subject: [PATCH] Export countries and CountryInterface --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index bc61782..f322b86 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,7 @@ import { countries, CountryInterface } from "./countries"; +export { countries, CountryInterface }; + export const getCountryFlagEmojiFromCountryCode = ( countryCode: string ): string | null => {