@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 353 B
TypeScript
/** @description Latitude and longitude */
export declare class LatLong {
/** @description The latitude of the point. Represented as signed degrees. http://www.geomidpoint.com/latlon.html */
lat: number;
/** @description The longitude of the point. Represented as signed degrees http://www.geomidpoint.com/latlon.html */
long: number;
}