UNPKG

@awayjs/scene

Version:
21 lines 567 B
/** * 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 */ export 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; } //# sourceMappingURL=TextFieldType.d.ts.map