@turf/helpers 6.4.0 → 6.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -80,7 +80,7 @@ export declare function feature<G = Geometry, P = Properties>(geom: G, propertie
80
80
  * var geometry = turf.geometry(type, coordinates);
81
81
  * // => geometry
82
82
  */
83
- export declare function geometry(type: "Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon", coordinates: any[], _options?: {}): Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon;
83
+ export declare function geometry(type: "Point" | "LineString" | "Polygon" | "MultiPoint" | "MultiLineString" | "MultiPolygon", coordinates: any[], _options?: Record<string, never>): Point | LineString | Polygon | MultiPoint | MultiLineString | MultiPolygon;
84
84
  /**
85
85
  * Creates a {@link Point} {@link Feature} from a Position.
86
86
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/helpers",
3
- "version": "6.4.0",
3
+ "version": "6.5.0",
4
4
  "description": "turf helpers module",
5
5
  "author": "Turf Authors",
6
6
  "contributors": [
@@ -18,6 +18,7 @@
18
18
  "type": "git",
19
19
  "url": "git://github.com/Turfjs/turf.git"
20
20
  },
21
+ "funding": "https://opencollective.com/turf",
21
22
  "publishConfig": {
22
23
  "access": "public"
23
24
  },
@@ -60,5 +61,5 @@
60
61
  "tslint": "*",
61
62
  "typescript": "*"
62
63
  },
63
- "gitHead": "1e62773cfc88c627cca8effcb5c14cfb65a905ac"
64
+ "gitHead": "5375941072b90d489389db22b43bfe809d5e451e"
64
65
  }