---
symbol: PromptChoiceInput
module: "@tsed/cli-prompts"
type: type
meta:
 - name: keywords
   description: api typescript node.js documentation PromptChoiceInput type
---
# PromptChoiceInput - @tsed/cli-prompts

## Usage

```typescript
import { PromptChoiceInput } from "@tsed/cli-prompts/src/interfaces/PromptQuestion";
```

> See [/packages/cli-prompts/src/interfaces/PromptQuestion.ts](https://github.com/tsedio/tsed-cli/blob/v7.5.1/packages/cli-prompts/src/interfaces/PromptQuestion.ts#L0-L0).

## Overview

```ts
type PromptChoiceInput<Value = any> = PromptChoice<Value> | Value;
```

<!-- Description -->

## Description

Choice definition accepted by prompts. A plain value will be coerced to a `PromptChoice`.
