UNPKG

221 BTypeScriptView Raw
1interface Coordinate {
2 latitude: number;
3 longitude: number;
4}
5/** Calculates distance in km between two coordinates */
6export declare const distance: (pointA: Coordinate, pointB: Coordinate) => number;
7export {};