##// END OF EJS Templates
corrected _Widget::set() signature
corrected _Widget::set() signature

File last commit:

r0:ab570232df7d default
r14:03f3149f6507 v1.0.4 default
Show More
fx.d.ts
17 lines | 492 B | video/mp2t | TypeScriptLexer
declare namespace dojox {
namespace gfx {
namespace fx {
interface Fx {
animateFill(options: dojo._base.AnimationArguments): dojo._base.Animation;
animateFont(options: dojo._base.AnimationArguments): dojo._base.Animation;
animateStroke(options: dojo._base.AnimationArguments): dojo._base.Animation;
animateTransform(options: dojo._base.AnimationArguments): dojo._base.Animation;
}
}
}
}
declare module 'dojox/gfx/fx' {
const fx: dojox.gfx.fx.Fx;
export = fx;
}