From a1c23bddc395feac6d99e163bf858692d3886a4b Mon Sep 17 00:00:00 2001 From: Asger Feldthaus Date: Mon, 31 Mar 2014 16:07:42 +0200 Subject: [PATCH] d3.d.ts: fixed raw signatures for conic projections --- d3/d3.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/d3/d3.d.ts b/d3/d3.d.ts index 1fcf3917d9..520b7f799f 100644 --- a/d3/d3.d.ts +++ b/d3/d3.d.ts @@ -2960,21 +2960,21 @@ declare module D3 { */ conicConformal: { (): Projection; - raw: RawProjection; + raw(phi1:number, phi2:number): RawProjection; } /** * the conic equidistant projection. */ conicEquidistant: { (): Projection; - raw: RawProjection; + raw(phi1:number, phi2:number): RawProjection; } /** * the conic equal-area (a.k.a. Albers) projection. */ conicEqualArea: { (): Projection; - raw: RawProjection; + raw(phi1:number, phi2:number): RawProjection; } /** * the equirectangular (plate carreƩ) projection.