package flash.display {
	
	
	/**
	 * @externs
	 * The StageDisplayState class provides values for the
	 * `Stage.displayState` property.
	 */
	final public class StageDisplayState {
		
		/**
		 * Specifies that the Stage is in full-screen mode.
		 */
		public static const FULL_SCREEN:String = "fullScreen";
		
		/**
		 * Specifies that the Stage is in full-screen mode with keyboard interactivity enabled.
		 */
		public static const FULL_SCREEN_INTERACTIVE:String = "fullScreenInteractive";
		
		/**
		 * Specifies that the Stage is in normal mode.
		 */
		public static const NORMAL:String = "normal";
		
		
	}
	
	
}