Skip to content

Commit

Permalink
fix(vx-geo): fix declaration conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Williams committed Nov 11, 2019
1 parent 40f8643 commit 9c1ea94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vx-geo/src/projections/Projection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ import {
geoPath,
GeoPath,
GeoProjection,
GeoPermissibleObjects,
GeoPermissibleObjects as GeoPermissibleObjectType,
} from 'd3-geo';
// eslint-disable-next-line import/no-unresolved
import { LineString, Polygon, MultiLineString } from 'geojson';

import Graticule, { GraticuleProps } from '../graticule/Graticule';

export type GeoPermissibleObjects = GeoPermissibleObjects;
export type GeoPermissibleObjects = GeoPermissibleObjectType;

// TODO: Implement all projections of d3-geo
type ProjectionPreset =
Expand Down

0 comments on commit 9c1ea94

Please sign in to comment.