-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathindex.d.ts
More file actions
21 lines (19 loc) · 1.12 KB
/
Copy pathindex.d.ts
File metadata and controls
21 lines (19 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { GeoProjection } from "d3-geo";
interface GeoCompositeProjection extends GeoProjection {
getCompositionBorders: () => string;
drawCompositionBorders: (context: CanvasRenderingContext2D | Path2D) => void;
}
export function geoAlbersUsa(): GeoCompositeProjection;
export function geoAlbersUsaTerritories(): GeoCompositeProjection;
export function geoConicConformalSpain(): GeoCompositeProjection;
export function geoConicConformalPortugal(): GeoCompositeProjection;
export function geoMercatorEcuador(): GeoCompositeProjection;
export function geoTransverseMercatorChile(): GeoCompositeProjection;
export function geoConicEquidistantJapan(): GeoCompositeProjection;
export function geoConicConformalFrance(): GeoCompositeProjection;
export function geoConicConformalEurope(): GeoCompositeProjection;
export function geoConicConformalNetherlands(): GeoCompositeProjection;
export function geoMercatorMalaysia(): GeoCompositeProjection;
export function geoMercatorEquatorialGuinea(): GeoCompositeProjection;
export function geoAlbersUk(): GeoCompositeProjection;
export function geoTransverseMercatorDenmark(): GeoCompositeProjection;