UNPKG

tsgeo

Version:

TsGeo provides abstractions to geographical coordinates (including support for different ellipsoids) and allows you to calculate geographical distances between coordinates with high precision.

16 lines (15 loc) 358 B
/** * Polygon Formatter Interface * * @author clemdesign <contact@clemdesign.fr> * @license https://opensource.org/licenses/MIT * @link */ import { Polygon } from "../../Polygon"; export interface FormatterInterface { /** * @param {Polygon} polygon * @returns {string} */ format(polygon: Polygon): string; }