PromptChoiceInput
@tsed/cli-prompts
Usage
typescript
import { PromptChoiceInput } from "@tsed/cli-prompts/src/interfaces/PromptQuestion";Overview
ts
type PromptChoiceInput<Value = any> = PromptChoice<Value> | Value;Description
Choice definition accepted by prompts. A plain value will be coerced to a PromptChoice.