package openfl.display {
	
	
	/**
	 * @externs
	 * The StageScaleMode class provides values for the
	 * `Stage.scaleMode` property.
	 */
	final public class StageScaleMode {
		
		public static const EXACT_FIT:String = "exactFit";
		public static const NO_BORDER:String = "noBorder";
		public static const NO_SCALE:String = "noScale";
		public static const SHOW_ALL:String = "showAll";
		
	}
	
	
}