##// END OF EJS Templates
Added tag v1.0.1 for changeset b71d8639b457
Added tag v1.0.1 for changeset b71d8639b457

File last commit:

r0:ab570232df7d default
r9:26f5ab96b729 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;
}