Utils.d.ts 417 B

12345678
  1. declare function latLngDecimalToDegrees(decimal: number): string;
  2. declare function latLngDegreesToDecimal(degreesStr: string): number;
  3. declare function isObject(arg: any): boolean;
  4. declare function isUndefined(arg: any): boolean;
  5. declare function isString(arg: any): boolean;
  6. declare function hasLine(obj: any): boolean;
  7. declare function isSafeString(arg: any): boolean;
  8. declare function hasPoint(obj: any): boolean;