InputFieldType
The InputFieldType enum represents the various types of input fields in the game.
Definition
enum InputFieldType {
Email = 'email',
Number = 'number',
Password = 'password',
Search = 'search',
Text = 'text',
Url = 'url',
}
Enum Values
Email: An email input field.Number: A number input field.Password: A password input field.Search: A search input field.Text: A text input field.Url: A URL input field.