##// END OF EJS Templates
added FilteringSelect default parameters
added FilteringSelect default parameters

File last commit:

r0:ab570232df7d default
r6:a045279dcf9b v1.0.0 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;
}