@webilix/helper-library
Version:
JavaScript/TypeScript programming helper library.
11 lines • 452 B
TypeScript
import { IGeoCoordinates, IGeoRouteLength } from '../shared';
declare function coordinates(): Promise<IGeoCoordinates>;
declare function distance(from: IGeoCoordinates, to: IGeoCoordinates): number;
declare function routeLength(route: IGeoCoordinates[]): IGeoRouteLength;
export declare const GEO: {
coordinates: typeof coordinates;
distance: typeof distance;
routeLength: typeof routeLength;
};
export {};
//# sourceMappingURL=geo.d.ts.map