web_lib

Common web application libraries
git clone https://radroots.dev/git/web_lib.git
Log | Files | Refs | LICENSE

commit 3db13ad0ce2d273b9f1f6a1f1d87d6d941c21992
parent bad79af3f3f239832d673b248c43343b78e19e34
Author: triesap <137732411+triesap@users.noreply.github.com>
Date:   Sat,  2 Nov 2024 10:32:07 +0000

geocoder: edit imports

Diffstat:
Mgeocoder/src/geocoder.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/geocoder/src/geocoder.ts b/geocoder/src/geocoder.ts @@ -1,4 +1,4 @@ -import { err_msg, ResultObj, type ErrorMessage, type GeolocationCoordinatesPoint, type ResultsList } from "@radroots/utils"; +import { err_msg, type ErrorMessage, type GeolocationCoordinatesPoint, type ResultObj, type ResultsList } from "@radroots/utils"; import type { Database } from "sql.js"; import type { GeocoderErrorMessage, GeocoderReverseResult, IGeocoder, IGeocoderCountryCenter, IGeocoderCountryListResult, IGeocoderReverse } from "./types"; import { parse_geocode_country_center_result, parse_geocode_country_list_result, parse_geocode_reverse_result } from "./utils";