openfl
Version:
A fast, productive library for 2D cross-platform development.
24 lines (17 loc) • 413 B
TypeScript
declare namespace openfl.text {
/**
* The TextFieldType class is an enumeration of constant values used in
* setting the `type` property of the TextField class.
*/
export enum TextFieldType {
/**
* Used to specify a `dynamic` TextField.
*/
DYNAMIC = "dynamic",
/**
* Used to specify an `input` TextField.
*/
INPUT = "input"
}
}
export default openfl.text.TextFieldType;