@iota/area-codes
Version:
IOTA Area Codes (IAC) JavaScript
34 lines (33 loc) • 636 B
TypeScript
/**
* The area defined by an IOTA Area Code.
*/
export declare interface IacCodeArea {
/**
* The latitude of the center in degrees.
*/
latitude: number;
/**
* The longitude of the center in degrees.
*/
longitude: number;
/**
* The code precision.
*/
codePrecision: number;
/**
* The low latitude.
*/
latitudeLow: number;
/**
* The high latitude.
*/
latitudeHigh: number;
/**
* The low longitude.
*/
longitudeLow: number;
/**
* The high longitude.
*/
longitudeHigh: number;
}