Skip to content

PromptInputQuestion

@tsed/cli-prompts

Usage

typescript
import { PromptInputQuestion } from "@tsed/cli-prompts";

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

Overview

ts
interface PromptInputQuestion extends PromptBaseQuestion<string>, Omit<TextOptions, "message"> {
    type: "input";
}

Description

Plain text prompt.

type

ts
type: "input";

Released under the MIT License.