@turf/buffer 7.0.0-alpha.116 → 7.0.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.
@@ -20,11 +20,11 @@ declare function buffer(
20
20
  | MultiPolygon,
21
21
  radius?: number,
22
22
  options?: Options
23
- ): Feature<Polygon | MultiPolygon>;
23
+ ): Feature<Polygon | MultiPolygon> | undefined;
24
24
  declare function buffer(
25
25
  feature: FeatureCollection<GeometryObject> | GeometryCollection,
26
26
  radius?: number,
27
27
  options?: Options
28
- ): FeatureCollection<Polygon | MultiPolygon>;
28
+ ): FeatureCollection<Polygon | MultiPolygon> | undefined;
29
29
 
30
30
  export { buffer, buffer as default };
@@ -20,11 +20,11 @@ declare function buffer(
20
20
  | MultiPolygon,
21
21
  radius?: number,
22
22
  options?: Options
23
- ): Feature<Polygon | MultiPolygon>;
23
+ ): Feature<Polygon | MultiPolygon> | undefined;
24
24
  declare function buffer(
25
25
  feature: FeatureCollection<GeometryObject> | GeometryCollection,
26
26
  radius?: number,
27
27
  options?: Options
28
- ): FeatureCollection<Polygon | MultiPolygon>;
28
+ ): FeatureCollection<Polygon | MultiPolygon> | undefined;
29
29
 
30
30
  export { buffer, buffer as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turf/buffer",
3
- "version": "7.0.0-alpha.116+ce335a037",
3
+ "version": "7.0.0",
4
4
  "description": "turf buffer module",
5
5
  "author": "Turf Authors",
6
6
  "contributors": [
@@ -60,7 +60,7 @@
60
60
  "test:types": "tsc --esModuleInterop --module node16 --moduleResolution node16 --noEmit --strict types.ts"
61
61
  },
62
62
  "devDependencies": {
63
- "@turf/truncate": "^7.0.0-alpha.116+ce335a037",
63
+ "@turf/truncate": "^7.0.0",
64
64
  "@types/benchmark": "^2.1.5",
65
65
  "@types/tape": "^4.2.32",
66
66
  "benchmark": "^2.1.4",
@@ -72,13 +72,13 @@
72
72
  "write-json-file": "^5.0.0"
73
73
  },
74
74
  "dependencies": {
75
- "@turf/bbox": "^7.0.0-alpha.116+ce335a037",
76
- "@turf/center": "^7.0.0-alpha.116+ce335a037",
77
- "@turf/helpers": "^7.0.0-alpha.116+ce335a037",
75
+ "@turf/bbox": "^7.0.0",
76
+ "@turf/center": "^7.0.0",
77
+ "@turf/helpers": "^7.0.0",
78
78
  "@turf/jsts": "^2.7.1",
79
- "@turf/meta": "^7.0.0-alpha.116+ce335a037",
80
- "@turf/projection": "^7.0.0-alpha.116+ce335a037",
79
+ "@turf/meta": "^7.0.0",
80
+ "@turf/projection": "^7.0.0",
81
81
  "d3-geo": "1.7.1"
82
82
  },
83
- "gitHead": "ce335a03715dfef473fe4ca2f379fe43bae275bc"
83
+ "gitHead": "3d3a7917025fbabe191dbddbc89754b86f9c7739"
84
84
  }