Skip to content

PromptChoiceInput

@tsed/cli-prompts

Usage

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

See /packages/cli-prompts/src/interfaces/PromptQuestion.ts.

Overview

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

Description

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

Released under the MIT License.