##// END OF EJS Templates
`dojo.store.api` replaced `dojo.promise.Promise<T>` with `PromiseLike<T>` type
`dojo.store.api` replaced `dojo.promise.Promise<T>` with `PromiseLike<T>` type

File last commit:

r0:ab570232df7d default
r12:1e87acba35f3 v1.0.3 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;
}