##// END OF EJS Templates
Added tag v1.0.5 for changeset f6ff0b17b520
Added tag v1.0.5 for changeset f6ff0b17b520

File last commit:

r0:ab570232df7d default
r17:e9e316b757e4 default
Show More
fx.d.ts
17 lines | 492 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 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;
}