UNPKG

@webilix/helper-library

Version:

JavaScript/TypeScript programming helper library.

14 lines (12 loc) 246 B
export interface IGeoCoordinates { latitude: number; longitude: number; } export interface IGeoRouteLength { length: number; parts: { from: IGeoCoordinates; to: IGeoCoordinates; length: number; }[]; }