do not export internal interface DirectGeometryObject

This commit is contained in:
Arne Schubert
2017-01-30 19:25:53 +01:00
parent 8fda71eada
commit 876977386d

2
geojson/index.d.ts vendored
View File

@@ -22,7 +22,7 @@ declare namespace GeoJSON {
/***
* http://geojson.org/geojson-spec.html#geometry-objects
*/
export interface DirectGeometryObject extends GeoJsonObject {
interface DirectGeometryObject extends GeoJsonObject {
coordinates: Position[][][] | Position[][] | Position[] | Position;
}
/**