mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-07 01:39:07 +00:00
Merge pull request #1974 from enternet/patch-4
Compability with --noImplicitAny option.
This commit is contained in:
6
d3/plugins/d3.superformula.d.ts
vendored
6
d3/plugins/d3.superformula.d.ts
vendored
@@ -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[];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user