package flash.text {
	
	
	/**
	 * @externs
	 * The TextFieldType class is an enumeration of constant values used in
	 * setting the `type` property of the TextField class.
	 */
	final public class TextFieldType {
		
		/**
		 * Used to specify a `dynamic` TextField.
		 */
		public static const DYNAMIC:String = "dynamic";
		
		/**
		 * Used to specify an `input` TextField.
		 */
		public static const INPUT:String = "input";
		
	}
	
	
}