awayjs-display
Version:
AwayJS displaylist classes
22 lines (21 loc) • 547 B
TypeScript
/**
* The TextFieldType class is an enumeration of constant values used in setting the
* <code>type</code> property of the TextField class.
*
* @see away.entities.TextField#type
*/
declare class TextFieldType {
/**
* Used to specify a <code>dynamic</code> TextField.
*/
static DYNAMIC: string;
/**
* Used to specify an <code>input</code> TextField.
*/
static INPUT: string;
/**
* Used to specify an <code>static</code> TextField.
*/
static STATIC: string;
}
export default TextFieldType;