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";