From 03a720179c4f1defca3fae3a81c91bc79e3a242f Mon Sep 17 00:00:00 2001 From: gnezim Date: Fri, 17 Apr 2026 03:18:35 +0300 Subject: [PATCH] Expose dictionaries module barrel --- src/shared/dictionaries/index.ts | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/shared/dictionaries/index.ts diff --git a/src/shared/dictionaries/index.ts b/src/shared/dictionaries/index.ts new file mode 100644 index 00000000..156dda17 --- /dev/null +++ b/src/shared/dictionaries/index.ts @@ -0,0 +1,23 @@ +export { useDictionaries } from "./useDictionaries.js"; +export { + transformDictionaries, + getCityByCode, + getAirportByCode, + getCityCodeByAirportCode, + getCityOrAirport, + findCityByCoord, +} from "./transform.js"; +export { fetchDictionaries } from "./api.js"; +export type { + IAirport, + ICity, + ICountry, + IRegion, + IDictionaries, + IDictionariesState, + IRawAirport, + IRawCity, + IRawCountry, + IRawRegion, + IRawDictionaries, +} from "./types.js";