##// END OF EJS Templates
updated _WidgetBase typings, added support for the generic type parameter to the constructor
updated _WidgetBase typings, added support for the generic type parameter to the constructor

File last commit:

r0:ab570232df7d default
r1:d55cc09feba1 default
Show More
gradutils.d.ts
15 lines | 307 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 declare namespace dojox {
namespace gfx {
namespace gradutils {
interface GradUtils {
getColor(fill: Fill, point: Point): dojo._base.Color;
reverse(fill: Fill): Fill;
}
}
}
}
declare module 'dojox/gfx/gradutils' {
const gradutils: dojox.gfx.gradutils.GradUtils;
export = gradutils;
}