diff --git a/d3/plugins/d3.superformula.d.ts b/d3/plugins/d3.superformula.d.ts index ce649446bf..6f5c59b07f 100644 --- a/d3/plugins/d3.superformula.d.ts +++ b/d3/plugins/d3.superformula.d.ts @@ -10,7 +10,7 @@ declare module D3 { interface SuperformulaType { - (any): any;//hans + (any: any): any;//hans m: number; n1: number; n2: number; @@ -22,7 +22,7 @@ declare module D3 { interface Superformula { (): any; - type(any): any; + type(any: any): any; param(name: string, value: number): Superformula; size(x: number): Superformula; segments(x: number): Superformula; @@ -35,4 +35,4 @@ declare module D3 { superformulaPath: SuperformulaPath; superformulaTypes: SuperformulaType[]; } -} \ No newline at end of file +}