gradient.d.ts
22 lines
| 531 B
| video/mp2t
|
TypeScriptLexer
cin
|
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; | ||||
} | ||||