# BoolInteractionResult

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

The result of a boolean interaction prompt.

## Definition

```typescript
type BoolInteractionResult = {
  Canceled?: boolean;
  Value?: boolean;
}
```

## Fields

- `Canceled`: `boolean` `optional`
- `Value`: `boolean` `optional`
