PromptPasswordQuestion
@tsed/cli-prompts
Usage
typescript
import { PromptPasswordQuestion } from "@tsed/cli-prompts";Overview
ts
interface PromptPasswordQuestion extends PromptBaseQuestion<string>, Omit<PasswordOptions, "message"> {
type: "password";
}Description
Hidden text prompt (e.g., passwords or tokens).
type
ts
type: "password";