UNPKG

universal-geocoder

Version:

Universal geocoding abstraction server-side and client-side with multiple built-in providers

16 lines 601 B
export declare type PartialSome<O, P extends keyof O, Q = Omit<O, P>, R = { [K in P]?: O[P]; }> = Q & R; export declare type FlatCoordinates = [number, number]; export declare type FlatBoundingBox = [number, number, number, number]; export declare type Coordinates = { readonly latitude: number | string; readonly longitude: number | string; }; export declare type BoundingBox = { readonly latitudeSW: number | string; readonly longitudeSW: number | string; readonly latitudeNE: number | string; readonly longitudeNE: number | string; }; //# sourceMappingURL=types.d.ts.map