# InputType

- Module: [Aspire.Hosting](/reference/api/typescript/aspire.hosting.md)
- Version: `13.4.0`
- Kind: `enum`
- Source: [GitHub](https://github.com/microsoft/aspire)

Specifies the type of input for an `InteractionInput`.

## Definition

```typescript
enum InputType {
  Text = 0,
  SecretText = 1,
  Choice = 2,
  Boolean = 3,
  Number = 4,
}
```

## Values

- `Text` = `0`
- `SecretText` = `1`
- `Choice` = `2`
- `Boolean` = `3`
- `Number` = `4`
