[d3-geo] URGENT PATCH (Broken Definition) geojson dependency to 1.0.6 (#21808)

* Pin `geojson` dependency to 1.0.6
* The latest version of the `geojson` definitions breaks  **d3-geo**. Pin to the last working version for now until more thorough change impact assessment is complete.

* Add `private: true` to package.json

* Remove `package.json` stub. Replace `CoordinateReferenceSystem` with literal.
This commit is contained in:
Tom Wanzek
2017-11-28 13:21:27 -05:00
committed by Andy
parent c63dd9d46c
commit e9430decb9

View File

@@ -36,7 +36,10 @@ export type GeoGeometryObjects = GeoJSON.GeometryObject | GeoSphere;
export interface ExtendedGeometryCollection<GeometryType extends GeoGeometryObjects> {
type: string;
bbox?: number[];
crs?: GeoJSON.CoordinateReferenceSystem;
crs?: {
type: string;
properties: any;
};
geometries: GeometryType[];
}