awayjs-display
Version:
AwayJS displaylist classes
18 lines (17 loc) • 469 B
TypeScript
/**
* The GradientType class provides values for the <code>type</code> parameter
* in the <code>beginGradientFill()</code> and
* <code>lineGradientStyle()</code> methods of the flash.display.Graphics
* class.
*/
declare class GradientType {
/**
* Value used to specify a linear gradient fill.
*/
static LINEAR: string;
/**
* Value used to specify a radial gradient fill.
*/
static RADIAL: string;
}
export default GradientType;