/** * The format of the provided geometry. */ export type GeometryTypeEnum = "WKT" | "GeoJSON"; export const GeometryTypeEnum = { Wkt: "WKT" as GeometryTypeEnum, GeoJson: "GeoJSON" as GeometryTypeEnum, };