package flash.display {
	
	
	/**
	 * @externs
	 * The GradientType class provides values for the `type` parameter
	 * in the `beginGradientFill()` and
	 * `lineGradientStyle()` methods of the flash.display.Graphics
	 * class.
	 */
	final public class GradientType {
		
		/**
		 * Value used to specify a linear gradient fill.
		 */
		public static const LINEAR:String = "linear";
		
		/**
		 * Value used to specify a radial gradient fill.
		 */
		public static const RADIAL:String = "radial";
		
	}
	
	
}