@inovitas/infra3dapi 1.7.0 → 1.7.2

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.
package/infra3dapi.d.ts CHANGED
@@ -288,16 +288,19 @@ interface MultiPolygon extends GeoJsonObject {
288
288
  coordinates: Position[][][];
289
289
  }
290
290
 
291
- interface GeometryCollection<G extends Geometry = Geometry>
292
- extends GeoJsonObject {
291
+ interface GeometryCollection<
292
+ G extends Geometry = Geometry,
293
+ > extends GeoJsonObject {
293
294
  type: "GeometryCollection";
294
295
  geometries: G[];
295
296
  }
296
297
 
297
298
  type GeoJsonProperties = { [name: string]: any } | null;
298
299
 
299
- interface Feature<G extends Geometry | null = Geometry, P = GeoJsonProperties>
300
- extends GeoJsonObject {
300
+ interface Feature<
301
+ G extends Geometry | null = Geometry,
302
+ P = GeoJsonProperties,
303
+ > extends GeoJsonObject {
301
304
  type: "Feature";
302
305
  geometry: G;
303
306
  id?: string | number | undefined;