Compability with --noImplicitAny option.

The module will be compatible with --noImplicitAny option of tsc compiler.
This commit is contained in:
enternet
2014-04-03 12:41:24 +03:00
parent a4de992641
commit 4370a43172
+3 -3
View File
@@ -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[];
}
}
}