export {}; /** * @class * @name GeoLoc * @public * @description * This function represents a GeoLoc object which is the GPS coordinates.
*/ declare class GeoLoc { datum: string; latitude: string; longitude: string; altitude: string; static create(datum: string, latitude: string, longitude: string, altitude: string): GeoLoc; } export { GeoLoc };