0.1.6 • Published 11 months ago

extra-prompts v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

extra-prompts

Install

npm install --save extra-prompts
# or
yarn add extra-prompts

API

text

function text(message: string): Promise<string>

password

function password(message: string): Promise<string>

invisible

function invisible(message: string): Promise<string>

confirm

function confirm(message: string, defaultValue: boolean): Promise<boolean>

select

interface IOption<T> {
  label: string
  value: T
}

function select<T>(message: string, options: IOption<T>[]): Promise<T>

waitForInput

function waitForInput(
  message: string
, predicate?: (key: string) => boolean
): Promise<string>
0.1.6

11 months ago

0.1.4

1 year ago

0.1.5

1 year ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.3

2 years ago

0.1.0

2 years ago