##// END OF EJS Templates
Maintenance release...
Maintenance release * `NodeList-fx` added overloads to all methods to distinguish returned values of different types (`Animation | this`). * Added missing signatures to `NodeList` constructor * Improved `dijit.form._FormWidgetMixin` * Added module declarations `dijit/form/_FormWidgetMixin`, `dijit/form/_FormValueMixin`, `dijit/_HasDropDown`

File last commit:

r0:ab570232df7d default
r8:b71d8639b457 v1.0.1 default
Show More
gradient.d.ts
22 lines | 531 B | video/mp2t | TypeScriptLexer
cin
Initial commit, project structure.
r0 declare namespace dojox {
namespace gfx {
namespace gradient {
interface GradientModule {
project(
matrix: dojox.gfx.matrix.Matrix2D,
gradient: LinearGradient,
topLeft: Point,
bottomRight: Point,
transformTopLeft: Point,
transformBottomRight: Point
): LinearGradient;
rescale(stops: GradientOffsetColor[], from: number, to: number): GradientOffsetColor[];
}
}
}
}
declare module 'dojox/gfx/gradient' {
const gradient: dojox.gfx.gradient.GradientModule;
export = gradient;
}