@shipengine/connect-carrier-api
Version:
This is the typescript/javascript definitions for carrier api
8 lines (7 loc) • 339 B
text/typescript
/** @description Latitude and longitude */
export 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;
}